]> granicus.if.org Git - postgresql/blob - config/install-sh
Attached patch is required ot build with the CRT that comes with Visual
[postgresql] / config / install-sh
1 #!/bin/sh
2 # install - install a program, script, or datafile
3
4 # $PostgreSQL: pgsql/config/install-sh,v 1.4 2006/03/11 04:38:28 momjian Exp $
5
6 scriptversion=2005-02-02.21
7
8 # This originates from X11R5 (mit/util/scripts/install.sh), which was
9 # later released in X11R6 (xc/config/util/install.sh) with the
10 # following copyright and license.
11 #
12 # Copyright (C) 1994 X Consortium
13 #
14 # Permission is hereby granted, free of charge, to any person obtaining a copy
15 # of this software and associated documentation files (the "Software"), to
16 # deal in the Software without restriction, including without limitation the
17 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
18 # sell copies of the Software, and to permit persons to whom the Software is
19 # furnished to do so, subject to the following conditions:
20 #
21 # The above copyright notice and this permission notice shall be included in
22 # all copies or substantial portions of the Software.
23 #
24 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
27 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
28 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
29 # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 #
31 # Except as contained in this notice, the name of the X Consortium shall not
32 # be used in advertising or otherwise to promote the sale, use or other deal-
33 # ings in this Software without prior written authorization from the X Consor-
34 # tium.
35 #
36 #
37 # FSF changes to this file are in the public domain.
38 #
39 # Calling this script install-sh is preferred over install.sh, to prevent
40 # `make' implicit rules from creating a file called install from it
41 # when there is no Makefile.
42 #
43 # This script is compatible with the BSD install script, but was written
44 # from scratch.  It can only install one file at a time, a restriction
45 # shared with many OS's install programs.
46
47 # set DOITPROG to echo to test this script
48
49 # Don't use :- since 4.3BSD and earlier shells don't like it.
50 doit="${DOITPROG-}"
51
52 # put in absolute paths if you don't have them in your path; or use env. vars.
53
54 mvprog="${MVPROG-mv}"
55 cpprog="${CPPROG-cp}"
56 chmodprog="${CHMODPROG-chmod}"
57 chownprog="${CHOWNPROG-chown}"
58 chgrpprog="${CHGRPPROG-chgrp}"
59 stripprog="${STRIPPROG-strip}"
60 rmprog="${RMPROG-rm}"
61 mkdirprog="${MKDIRPROG-mkdir}"
62
63 chmodcmd="$chmodprog 0755"
64 chowncmd=
65 chgrpcmd=
66 stripcmd=
67 rmcmd="$rmprog -f"
68 mvcmd="$mvprog"
69 src=
70 dst=
71 dir_arg=
72 dstarg=
73 no_target_directory=
74
75 usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
76    or: $0 [OPTION]... SRCFILES... DIRECTORY
77    or: $0 [OPTION]... -t DIRECTORY SRCFILES...
78    or: $0 [OPTION]... -d DIRECTORIES...
79
80 In the 1st form, copy SRCFILE to DSTFILE.
81 In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
82 In the 4th, create DIRECTORIES.
83
84 Options:
85 -c         (ignored)
86 -d         create directories instead of installing files.
87 -g GROUP   $chgrpprog installed files to GROUP.
88 -m MODE    $chmodprog installed files to MODE.
89 -o USER    $chownprog installed files to USER.
90 -s         $stripprog installed files.
91 -t DIRECTORY  install into DIRECTORY.
92 -T         report an error if DSTFILE is a directory.
93 --help     display this help and exit.
94 --version  display version info and exit.
95
96 Environment variables override the default commands:
97   CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
98 "
99
100 while test -n "$1"; do
101   case $1 in
102     -c) shift
103         continue;;
104
105     -d) dir_arg=true
106         shift
107         continue;;
108
109     -g) chgrpcmd="$chgrpprog $2"
110         shift
111         shift
112         continue;;
113
114     --help) echo "$usage"; exit $?;;
115
116     -m) chmodcmd="$chmodprog $2"
117         shift
118         shift
119         continue;;
120
121     -o) chowncmd="$chownprog $2"
122         shift
123         shift
124         continue;;
125
126     -s) stripcmd=$stripprog
127         shift
128         continue;;
129
130     -t) dstarg=$2
131         shift
132         shift
133         continue;;
134
135     -T) no_target_directory=true
136         shift
137         continue;;
138
139     --version) echo "$0 $scriptversion"; exit $?;;
140
141     *)  # When -d is used, all remaining arguments are directories to create.
142         # When -t is used, the destination is already specified.
143         test -n "$dir_arg$dstarg" && break
144         # Otherwise, the last argument is the destination.  Remove it from $@.
145         for arg
146         do
147           if test -n "$dstarg"; then
148             # $@ is not empty: it contains at least $arg.
149             set fnord "$@" "$dstarg"
150             shift # fnord
151           fi
152           shift # arg
153           dstarg=$arg
154         done
155         break;;
156   esac
157 done
158
159 if test -z "$1"; then
160   if test -z "$dir_arg"; then
161     echo "$0: no input file specified." >&2
162     exit 1
163   fi
164   # It's OK to call `install-sh -d' without argument.
165   # This can happen when creating conditional directories.
166   exit 0
167 fi
168
169 for src
170 do
171   # Protect names starting with `-'.
172   case $src in
173     -*) src=./$src ;;
174   esac
175
176   if test -n "$dir_arg"; then
177     dst=$src
178     src=
179
180     if test -d "$dst"; then
181       mkdircmd=:
182       chmodcmd=
183     else
184       mkdircmd=$mkdirprog
185     fi
186   else
187     # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
188     # might cause directories to be created, which would be especially bad
189     # if $src (and thus $dsttmp) contains '*'.
190     if test ! -f "$src" && test ! -d "$src"; then
191       echo "$0: $src does not exist." >&2
192       exit 1
193     fi
194
195     if test -z "$dstarg"; then
196       echo "$0: no destination specified." >&2
197       exit 1
198     fi
199
200     dst=$dstarg
201     # Protect names starting with `-'.
202     case $dst in
203       -*) dst=./$dst ;;
204     esac
205
206     # If destination is a directory, append the input filename; won't work
207     # if double slashes aren't ignored.
208     if test -d "$dst"; then
209       if test -n "$no_target_directory"; then
210         echo "$0: $dstarg: Is a directory" >&2
211         exit 1
212       fi
213       dst=$dst/`basename "$src"`
214     fi
215   fi
216
217   # This sed command emulates the dirname command.
218   dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
219
220   # Make sure that the destination directory exists.
221
222   # Skip lots of stat calls in the usual case.
223   if test ! -d "$dstdir"; then
224     defaultIFS='
225          '
226     IFS="${IFS-$defaultIFS}"
227
228     oIFS=$IFS
229     # Some sh's can't handle IFS=/ for some reason.
230     IFS='%'
231     set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
232     shift
233     IFS=$oIFS
234
235     pathcomp=
236
237     while test $# -ne 0 ; do
238       pathcomp=$pathcomp$1
239       shift
240       if test ! -d "$pathcomp"; then
241         $mkdirprog "$pathcomp"
242         # mkdir can fail with a `File exist' error in case several
243         # install-sh are creating the directory concurrently.  This
244         # is OK.
245         test -d "$pathcomp" || exit
246       fi
247       pathcomp=$pathcomp/
248     done
249   fi
250
251   if test -n "$dir_arg"; then
252     $doit $mkdircmd "$dst" \
253       && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
254       && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
255       && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
256       && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
257
258   else
259     dstfile=`basename "$dst"`
260
261     # Make a couple of temp file names in the proper directory.
262     dsttmp=$dstdir/_inst.$$_
263     rmtmp=$dstdir/_rm.$$_
264
265     # Trap to clean up those temp files at exit.
266     trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
267     trap '(exit $?); exit' 1 2 13 15
268
269     # Copy the file name to the temp name.
270     $doit $cpprog "$src" "$dsttmp" &&
271
272     # and set any options; do chmod last to preserve setuid bits.
273     #
274     # If any of these fail, we abort the whole thing.  If we want to
275     # ignore errors from any of these, just make sure not to ignore
276     # errors from the above "$doit $cpprog $src $dsttmp" command.
277     #
278     { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
279       && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
280       && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
281       && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } &&
282
283     # Now rename the file to the real destination.
284     { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \
285       || {
286            # The rename failed, perhaps because mv can't rename something else
287            # to itself, or perhaps because mv is so ancient that it does not
288            # support -f.
289
290            # Now remove or move aside any old file at destination location.
291            # We try this two ways since rm can't unlink itself on some
292            # systems and the destination file might be busy for other
293            # reasons.  In this case, the final cleanup might fail but the new
294            # file should still install successfully.
295            {
296              if test -f "$dstdir/$dstfile"; then
297                $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
298                || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
299                || {
300                  echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
301                  (exit 1); exit 1
302                }
303              else
304                :
305              fi
306            } &&
307
308            # Now rename the file to the real destination.
309            $doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
310          }
311     }
312   fi || { (exit 1); exit 1; }
313 done
314
315 # The final little trick to "correctly" pass the exit status to the exit trap.
316 {
317   (exit 0); exit 0
318 }
319
320 # Local variables:
321 # eval: (add-hook 'write-file-hooks 'time-stamp)
322 # time-stamp-start: "scriptversion="
323 # time-stamp-format: "%:y-%02m-%02d.%02H"
324 # time-stamp-end: "$"
325 # End: