~ubuntu-branches/ubuntu/dapper/fetchmail/dapper-security

« back to all changes in this revision

Viewing changes to install-sh

  • Committer: Bazaar Package Importer
  • Author(s): Nathaniel McCallum
  • Date: 2004-09-03 14:53:58 UTC
  • Revision ID: james.westby@ubuntu.com-20040903145358-dluq0c58tfe3cpcm
Tags: 6.2.5-8ubuntu2
Added versioned depend on lsb-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
#
3
3
# install - install a program, script, or datafile
4
 
# This comes from X11R5 (mit/util/scripts/install.sh).
5
 
#
6
 
# Copyright 1991 by the Massachusetts Institute of Technology
7
 
#
8
 
# Permission to use, copy, modify, distribute, and sell this software and its
9
 
# documentation for any purpose is hereby granted without fee, provided that
10
 
# the above copyright notice appear in all copies and that both that
11
 
# copyright notice and this permission notice appear in supporting
12
 
# documentation, and that the name of M.I.T. not be used in advertising or
13
 
# publicity pertaining to distribution of the software without specific,
14
 
# written prior permission.  M.I.T. makes no representations about the
15
 
# suitability of this software for any purpose.  It is provided "as is"
16
 
# without express or implied warranty.
 
4
#
 
5
# This originates from X11R5 (mit/util/scripts/install.sh), which was
 
6
# later released in X11R6 (xc/config/util/install.sh) with the
 
7
# following copyright and license.
 
8
#
 
9
# Copyright (C) 1994 X Consortium
 
10
#
 
11
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
12
# of this software and associated documentation files (the "Software"), to
 
13
# deal in the Software without restriction, including without limitation the
 
14
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
15
# sell copies of the Software, and to permit persons to whom the Software is
 
16
# furnished to do so, subject to the following conditions:
 
17
#
 
18
# The above copyright notice and this permission notice shall be included in
 
19
# all copies or substantial portions of the Software.
 
20
#
 
21
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
22
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
23
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
24
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
25
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
 
26
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
27
#
 
28
# Except as contained in this notice, the name of the X Consortium shall not
 
29
# be used in advertising or otherwise to promote the sale, use or other deal-
 
30
# ings in this Software without prior written authorization from the X Consor-
 
31
# tium.
 
32
#
 
33
#
 
34
# FSF changes to this file are in the public domain.
17
35
#
18
36
# Calling this script install-sh is preferred over install.sh, to prevent
19
37
# `make' implicit rules from creating a file called install from it
56
74
 
57
75
while [ x"$1" != x ]; do
58
76
    case $1 in
59
 
        -c) instcmd=$cpprog
 
77
        -c) instcmd="$cpprog"
60
78
            shift
61
79
            continue;;
62
80
 
79
97
            shift
80
98
            continue;;
81
99
 
82
 
        -s) stripcmd=$stripprog
 
100
        -s) stripcmd="$stripprog"
83
101
            shift
84
102
            continue;;
85
103
 
106
124
 
107
125
if [ x"$src" = x ]
108
126
then
109
 
        echo "$0: no input file specified" >&2
 
127
        echo "install:  no input file specified"
110
128
        exit 1
111
129
else
112
130
        :
115
133
if [ x"$dir_arg" != x ]; then
116
134
        dst=$src
117
135
        src=""
118
 
 
119
 
        if [ -d "$dst" ]; then
 
136
        
 
137
        if [ -d $dst ]; then
120
138
                instcmd=:
121
139
                chmodcmd=""
122
140
        else
125
143
else
126
144
 
127
145
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
128
 
# might cause directories to be created, which would be especially bad
 
146
# might cause directories to be created, which would be especially bad 
129
147
# if $src (and thus $dsttmp) contains '*'.
130
148
 
131
149
        if [ -f "$src" ] || [ -d "$src" ]
132
150
        then
133
151
                :
134
152
        else
135
 
                echo "$0: $src does not exist" >&2
 
153
                echo "install:  $src does not exist"
136
154
                exit 1
137
155
        fi
138
 
 
 
156
        
139
157
        if [ x"$dst" = x ]
140
158
        then
141
 
                echo "$0: no destination specified" >&2
 
159
                echo "install:  no destination specified"
142
160
                exit 1
143
161
        else
144
162
                :
147
165
# If destination is a directory, append the input filename; if your system
148
166
# does not like double slashes in filenames, you may need to add some logic
149
167
 
150
 
        if [ -d "$dst" ]
 
168
        if [ -d $dst ]
151
169
        then
152
 
                dst=$dst/`basename "$src"`
 
170
                dst="$dst"/`basename $src`
153
171
        else
154
172
                :
155
173
        fi
156
174
fi
157
175
 
158
176
## this sed command emulates the dirname command
159
 
dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
 
177
dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
160
178
 
161
179
# Make sure that the destination directory exists.
162
180
#  this part is taken from Noah Friedman's mkinstalldirs script
165
183
if [ ! -d "$dstdir" ]; then
166
184
defaultIFS='
167
185
        '
168
 
IFS="${IFS-$defaultIFS}"
 
186
IFS="${IFS-${defaultIFS}}"
169
187
 
170
 
oIFS=$IFS
 
188
oIFS="${IFS}"
171
189
# Some sh's can't handle IFS=/ for some reason.
172
190
IFS='%'
173
 
set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
174
 
IFS=$oIFS
 
191
set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
 
192
IFS="${oIFS}"
175
193
 
176
194
pathcomp=''
177
195
 
178
196
while [ $# -ne 0 ] ; do
179
 
        pathcomp=$pathcomp$1
 
197
        pathcomp="${pathcomp}${1}"
180
198
        shift
181
199
 
182
 
        if [ ! -d "$pathcomp" ] ;
 
200
        if [ ! -d "${pathcomp}" ] ;
183
201
        then
184
 
                $mkdirprog "$pathcomp"
 
202
                $mkdirprog "${pathcomp}"
185
203
        else
186
204
                :
187
205
        fi
188
206
 
189
 
        pathcomp=$pathcomp/
 
207
        pathcomp="${pathcomp}/"
190
208
done
191
209
fi
192
210
 
193
211
if [ x"$dir_arg" != x ]
194
212
then
195
 
        $doit $instcmd "$dst" &&
 
213
        $doit $instcmd $dst &&
196
214
 
197
 
        if [ x"$chowncmd" != x ]; then $doit $chowncmd "$dst"; else : ; fi &&
198
 
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dst"; else : ; fi &&
199
 
        if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dst"; else : ; fi &&
200
 
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dst"; else : ; fi
 
215
        if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else : ; fi &&
 
216
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else : ; fi &&
 
217
        if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else : ; fi &&
 
218
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else : ; fi
201
219
else
202
220
 
203
221
# If we're going to rename the final executable, determine the name now.
204
222
 
205
 
        if [ x"$transformarg" = x ]
 
223
        if [ x"$transformarg" = x ] 
206
224
        then
207
 
                dstfile=`basename "$dst"`
 
225
                dstfile=`basename $dst`
208
226
        else
209
 
                dstfile=`basename "$dst" $transformbasename |
 
227
                dstfile=`basename $dst $transformbasename | 
210
228
                        sed $transformarg`$transformbasename
211
229
        fi
212
230
 
213
231
# don't allow the sed command to completely eliminate the filename
214
232
 
215
 
        if [ x"$dstfile" = x ]
 
233
        if [ x"$dstfile" = x ] 
216
234
        then
217
 
                dstfile=`basename "$dst"`
 
235
                dstfile=`basename $dst`
218
236
        else
219
237
                :
220
238
        fi
221
239
 
222
 
# Make a couple of temp file names in the proper directory.
 
240
# Make a temp file name in the proper directory.
223
241
 
224
242
        dsttmp=$dstdir/#inst.$$#
225
 
        rmtmp=$dstdir/#rm.$$#
226
 
 
227
 
# Trap to clean up temp files at exit.
228
 
 
229
 
        trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0
230
 
        trap '(exit $?); exit' 1 2 13 15
231
243
 
232
244
# Move or copy the file name to the temp name
233
245
 
234
 
        $doit $instcmd "$src" "$dsttmp" &&
 
246
        $doit $instcmd $src $dsttmp &&
 
247
 
 
248
        trap "rm -f ${dsttmp}" 0 &&
235
249
 
236
250
# and set any options; do chmod last to preserve setuid bits
237
251
 
239
253
# ignore errors from any of these, just make sure not to ignore
240
254
# errors from the above "$doit $instcmd $src $dsttmp" command.
241
255
 
242
 
        if [ x"$chowncmd" != x ]; then $doit $chowncmd "$dsttmp"; else :;fi &&
243
 
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dsttmp"; else :;fi &&
244
 
        if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dsttmp"; else :;fi &&
245
 
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dsttmp"; else :;fi &&
246
 
 
247
 
# Now remove or move aside any old file at destination location.  We try this
248
 
# two ways since rm can't unlink itself on some systems and the destination
249
 
# file might be busy for other reasons.  In this case, the final cleanup
250
 
# might fail but the new file should still install successfully.
251
 
 
252
 
{
253
 
        if [ -f "$dstdir/$dstfile" ]
254
 
        then
255
 
                $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null ||
256
 
                $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null ||
257
 
                {
258
 
                  echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
259
 
                  (exit 1); exit
260
 
                }
261
 
        else
262
 
                :
263
 
        fi
264
 
} &&
 
256
        if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else :;fi &&
 
257
        if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else :;fi &&
 
258
        if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else :;fi &&
 
259
        if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else :;fi &&
265
260
 
266
261
# Now rename the file to the real destination.
267
262
 
268
 
        $doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
 
263
        $doit $rmcmd -f $dstdir/$dstfile &&
 
264
        $doit $mvcmd $dsttmp $dstdir/$dstfile 
269
265
 
270
266
fi &&
271
267
 
272
 
# The final little trick to "correctly" pass the exit status to the exit trap.
273
268
 
274
 
{
275
 
        (exit 0); exit
276
 
}
 
269
exit 0