OSDN Git Service

21b733a3edf7f9db4db0471a938ec5c92dd1c8b4
[eos/base.git] / util / src / TclTk / tcl8.6.12 / pkgs / tdbcmysql1.1.3 / tclconfig / install-sh
1 #!/bin/sh
2 # install - install a program, script, or datafile
3
4 scriptversion=2020-07-26.22; # UTC
5
6 # This originates from X11R5 (mit/util/scripts/install.sh), which was
7 # later released in X11R6 (xc/config/util/install.sh) with the
8 # following copyright and license.
9 #
10 # Copyright (C) 1994 X Consortium
11 #
12 # Permission is hereby granted, free of charge, to any person obtaining a copy
13 # of this software and associated documentation files (the "Software"), to
14 # deal in the Software without restriction, including without limitation the
15 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
16 # sell copies of the Software, and to permit persons to whom the Software is
17 # furnished to do so, subject to the following conditions:
18 #
19 # The above copyright notice and this permission notice shall be included in
20 # all copies or substantial portions of the Software.
21 #
22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
25 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
26 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
27 # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #
29 # Except as contained in this notice, the name of the X Consortium shall not
30 # be used in advertising or otherwise to promote the sale, use or other deal-
31 # ings in this Software without prior written authorization from the X Consor-
32 # tium.
33 #
34 #
35 # FSF changes to this file are in the public domain.
36 #
37 # Calling this script install-sh is preferred over install.sh, to prevent
38 # 'make' implicit rules from creating a file called install from it
39 # when there is no Makefile.
40 #
41 # This script is compatible with the BSD install script, but was written
42 # from scratch.
43
44 tab='   '
45 nl='
46 '
47 IFS=" $tab$nl"
48
49 # Set DOITPROG to "echo" to test this script.
50
51 doit=${DOITPROG-}
52 doit_exec=${doit:-exec}
53
54 # Put in absolute file names if you don't have them in your path;
55 # or use environment vars.
56
57 chgrpprog=${CHGRPPROG-chgrp}
58 chmodprog=${CHMODPROG-chmod}
59 chownprog=${CHOWNPROG-chown}
60 cmpprog=${CMPPROG-cmp}
61 cpprog=${CPPROG-cp}
62 mkdirprog=${MKDIRPROG-mkdir}
63 mvprog=${MVPROG-mv}
64 rmprog=${RMPROG-rm}
65 stripprog=${STRIPPROG-strip}
66
67 posix_mkdir=
68
69 # Desired mode of installed file.
70 mode=0755
71
72 # Create dirs (including intermediate dirs) using mode 755.
73 # This is like GNU 'install' as of coreutils 8.32 (2020).
74 mkdir_umask=22
75
76 chgrpcmd=
77 chmodcmd=$chmodprog
78 chowncmd=
79 mvcmd=$mvprog
80 rmcmd="$rmprog -f"
81 stripcmd=
82
83 src=
84 dst=
85 dir_arg=
86 dst_arg=
87
88 copy_on_change=false
89 is_target_a_directory=possibly
90
91 usage="\
92 Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
93    or: $0 [OPTION]... SRCFILES... DIRECTORY
94    or: $0 [OPTION]... -t DIRECTORY SRCFILES...
95    or: $0 [OPTION]... -d DIRECTORIES...
96
97 In the 1st form, copy SRCFILE to DSTFILE.
98 In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
99 In the 4th, create DIRECTORIES.
100
101 Options:
102      --help     display this help and exit.
103      --version  display version info and exit.
104
105   -c            (ignored)
106   -C            install only if different (preserve the last data modification time)
107   -d            create directories instead of installing files.
108   -g GROUP      $chgrpprog installed files to GROUP.
109   -m MODE       $chmodprog installed files to MODE.
110   -o USER       $chownprog installed files to USER.
111   -s            $stripprog installed files.
112   -S OPTION     $stripprog installed files using OPTION.
113   -t DIRECTORY  install into DIRECTORY.
114   -T            report an error if DSTFILE is a directory.
115
116 Environment variables override the default commands:
117   CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
118   RMPROG STRIPPROG
119 "
120
121 while test $# -ne 0; do
122   case $1 in
123     -c) ;;
124
125     -C) copy_on_change=true;;
126
127     -d) dir_arg=true;;
128
129     -g) chgrpcmd="$chgrpprog $2"
130         shift;;
131
132     --help) echo "$usage"; exit $?;;
133
134     -m) mode=$2
135         case $mode in
136           *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
137             echo "$0: invalid mode: $mode" >&2
138             exit 1;;
139         esac
140         shift;;
141
142     -o) chowncmd="$chownprog $2"
143         shift;;
144
145     -s) stripcmd=$stripprog;;
146
147     -S) stripcmd="$stripprog $2"
148         shift;;
149
150     -t)
151         is_target_a_directory=always
152         dst_arg=$2
153         # Protect names problematic for 'test' and other utilities.
154         case $dst_arg in
155           -* | [=\(\)!]) dst_arg=./$dst_arg;;
156         esac
157         shift;;
158
159     -T) is_target_a_directory=never;;
160
161     --version) echo "$0 $scriptversion"; exit $?;;
162
163     --) shift
164         break;;
165
166     -*) echo "$0: invalid option: $1" >&2
167         exit 1;;
168
169     *)  break;;
170   esac
171   shift
172 done
173
174 # We allow the use of options -d and -T together, by making -d
175 # take the precedence; this is for compatibility with GNU install.
176
177 if test -n "$dir_arg"; then
178   if test -n "$dst_arg"; then
179     echo "$0: target directory not allowed when installing a directory." >&2
180     exit 1
181   fi
182 fi
183
184 if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
185   # When -d is used, all remaining arguments are directories to create.
186   # When -t is used, the destination is already specified.
187   # Otherwise, the last argument is the destination.  Remove it from $@.
188   for arg
189   do
190     if test -n "$dst_arg"; then
191       # $@ is not empty: it contains at least $arg.
192       set fnord "$@" "$dst_arg"
193       shift # fnord
194     fi
195     shift # arg
196     dst_arg=$arg
197     # Protect names problematic for 'test' and other utilities.
198     case $dst_arg in
199       -* | [=\(\)!]) dst_arg=./$dst_arg;;
200     esac
201   done
202 fi
203
204 if test $# -eq 0; then
205   if test -z "$dir_arg"; then
206     echo "$0: no input file specified." >&2
207     exit 1
208   fi
209   # It's OK to call 'install-sh -d' without argument.
210   # This can happen when creating conditional directories.
211   exit 0
212 fi
213
214 if test -z "$dir_arg"; then
215   if test $# -gt 1 || test "$is_target_a_directory" = always; then
216     if test ! -d "$dst_arg"; then
217       echo "$0: $dst_arg: Is not a directory." >&2
218       exit 1
219     fi
220   fi
221 fi
222
223 if test -z "$dir_arg"; then
224   do_exit='(exit $ret); exit $ret'
225   trap "ret=129; $do_exit" 1
226   trap "ret=130; $do_exit" 2
227   trap "ret=141; $do_exit" 13
228   trap "ret=143; $do_exit" 15
229
230   # Set umask so as not to create temps with too-generous modes.
231   # However, 'strip' requires both read and write access to temps.
232   case $mode in
233     # Optimize common cases.
234     *644) cp_umask=133;;
235     *755) cp_umask=22;;
236
237     *[0-7])
238       if test -z "$stripcmd"; then
239         u_plus_rw=
240       else
241         u_plus_rw='% 200'
242       fi
243       cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
244     *)
245       if test -z "$stripcmd"; then
246         u_plus_rw=
247       else
248         u_plus_rw=,u+rw
249       fi
250       cp_umask=$mode$u_plus_rw;;
251   esac
252 fi
253
254 for src
255 do
256   # Protect names problematic for 'test' and other utilities.
257   case $src in
258     -* | [=\(\)!]) src=./$src;;
259   esac
260
261   if test -n "$dir_arg"; then
262     dst=$src
263     dstdir=$dst
264     test -d "$dstdir"
265     dstdir_status=$?
266   else
267
268     # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
269     # might cause directories to be created, which would be especially bad
270     # if $src (and thus $dsttmp) contains '*'.
271     if test ! -f "$src" && test ! -d "$src"; then
272       echo "$0: $src does not exist." >&2
273       exit 1
274     fi
275
276     if test -z "$dst_arg"; then
277       echo "$0: no destination specified." >&2
278       exit 1
279     fi
280     dst=$dst_arg
281
282     # If destination is a directory, append the input filename.
283     if test -d "$dst"; then
284       if test "$is_target_a_directory" = never; then
285         echo "$0: $dst_arg: Is a directory" >&2
286         exit 1
287       fi
288       dstdir=$dst
289       dstbase=`basename "$src"`
290       case $dst in
291         */) dst=$dst$dstbase;;
292         *)  dst=$dst/$dstbase;;
293       esac
294       dstdir_status=0
295     else
296       dstdir=`dirname "$dst"`
297       test -d "$dstdir"
298       dstdir_status=$?
299     fi
300   fi
301
302   case $dstdir in
303     */) dstdirslash=$dstdir;;
304     *)  dstdirslash=$dstdir/;;
305   esac
306
307   obsolete_mkdir_used=false
308
309   if test $dstdir_status != 0; then
310     case $posix_mkdir in
311       '')
312         # With -d, create the new directory with the user-specified mode.
313         # Otherwise, rely on $mkdir_umask.
314         if test -n "$dir_arg"; then
315           mkdir_mode=-m$mode
316         else
317           mkdir_mode=
318         fi
319
320         posix_mkdir=false
321         # The $RANDOM variable is not portable (e.g., dash).  Use it
322         # here however when possible just to lower collision chance.
323         tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
324
325         trap '
326           ret=$?
327           rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null
328           exit $ret
329         ' 0
330
331         # Because "mkdir -p" follows existing symlinks and we likely work
332         # directly in world-writeable /tmp, make sure that the '$tmpdir'
333         # directory is successfully created first before we actually test
334         # 'mkdir -p'.
335         if (umask $mkdir_umask &&
336             $mkdirprog $mkdir_mode "$tmpdir" &&
337             exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
338         then
339           if test -z "$dir_arg" || {
340                # Check for POSIX incompatibilities with -m.
341                # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
342                # other-writable bit of parent directory when it shouldn't.
343                # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
344                test_tmpdir="$tmpdir/a"
345                ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
346                case $ls_ld_tmpdir in
347                  d????-?r-*) different_mode=700;;
348                  d????-?--*) different_mode=755;;
349                  *) false;;
350                esac &&
351                $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
352                  ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
353                  test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
354                }
355              }
356           then posix_mkdir=:
357           fi
358           rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
359         else
360           # Remove any dirs left behind by ancient mkdir implementations.
361           rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
362         fi
363         trap '' 0;;
364     esac
365
366     if
367       $posix_mkdir && (
368         umask $mkdir_umask &&
369         $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
370       )
371     then :
372     else
373
374       # mkdir does not conform to POSIX,
375       # or it failed possibly due to a race condition.  Create the
376       # directory the slow way, step by step, checking for races as we go.
377
378       case $dstdir in
379         /*) prefix='/';;
380         [-=\(\)!]*) prefix='./';;
381         *)  prefix='';;
382       esac
383
384       oIFS=$IFS
385       IFS=/
386       set -f
387       set fnord $dstdir
388       shift
389       set +f
390       IFS=$oIFS
391
392       prefixes=
393
394       for d
395       do
396         test X"$d" = X && continue
397
398         prefix=$prefix$d
399         if test -d "$prefix"; then
400           prefixes=
401         else
402           if $posix_mkdir; then
403             (umask $mkdir_umask &&
404              $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
405             # Don't fail if two instances are running concurrently.
406             test -d "$prefix" || exit 1
407           else
408             case $prefix in
409               *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
410               *) qprefix=$prefix;;
411             esac
412             prefixes="$prefixes '$qprefix'"
413           fi
414         fi
415         prefix=$prefix/
416       done
417
418       if test -n "$prefixes"; then
419         # Don't fail if two instances are running concurrently.
420         (umask $mkdir_umask &&
421          eval "\$doit_exec \$mkdirprog $prefixes") ||
422           test -d "$dstdir" || exit 1
423         obsolete_mkdir_used=true
424       fi
425     fi
426   fi
427
428   if test -n "$dir_arg"; then
429     { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
430     { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
431     { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
432       test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
433   else
434
435     # Make a couple of temp file names in the proper directory.
436     dsttmp=${dstdirslash}_inst.$$_
437     rmtmp=${dstdirslash}_rm.$$_
438
439     # Trap to clean up those temp files at exit.
440     trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
441
442     # Copy the file name to the temp name.
443     (umask $cp_umask &&
444      { test -z "$stripcmd" || {
445          # Create $dsttmp read-write so that cp doesn't create it read-only,
446          # which would cause strip to fail.
447          if test -z "$doit"; then
448            : >"$dsttmp" # No need to fork-exec 'touch'.
449          else
450            $doit touch "$dsttmp"
451          fi
452        }
453      } &&
454      $doit_exec $cpprog "$src" "$dsttmp") &&
455
456     # and set any options; do chmod last to preserve setuid bits.
457     #
458     # If any of these fail, we abort the whole thing.  If we want to
459     # ignore errors from any of these, just make sure not to ignore
460     # errors from the above "$doit $cpprog $src $dsttmp" command.
461     #
462     { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
463     { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
464     { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
465     { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
466
467     # If -C, don't bother to copy if it wouldn't change the file.
468     if $copy_on_change &&
469        old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
470        new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
471        set -f &&
472        set X $old && old=:$2:$4:$5:$6 &&
473        set X $new && new=:$2:$4:$5:$6 &&
474        set +f &&
475        test "$old" = "$new" &&
476        $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
477     then
478       rm -f "$dsttmp"
479     else
480       # Rename the file to the real destination.
481       $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
482
483       # The rename failed, perhaps because mv can't rename something else
484       # to itself, or perhaps because mv is so ancient that it does not
485       # support -f.
486       {
487         # Now remove or move aside any old file at destination location.
488         # We try this two ways since rm can't unlink itself on some
489         # systems and the destination file might be busy for other
490         # reasons.  In this case, the final cleanup might fail but the new
491         # file should still install successfully.
492         {
493           test ! -f "$dst" ||
494           $doit $rmcmd -f "$dst" 2>/dev/null ||
495           { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
496             { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
497           } ||
498           { echo "$0: cannot unlink or rename $dst" >&2
499             (exit 1); exit 1
500           }
501         } &&
502
503         # Now rename the file to the real destination.
504         $doit $mvcmd "$dsttmp" "$dst"
505       }
506     fi || exit 1
507
508     trap '' 0
509   fi
510 done
511
512 # Local variables:
513 # eval: (add-hook 'before-save-hook 'time-stamp)
514 # time-stamp-start: "scriptversion="
515 # time-stamp-format: "%:y-%02m-%02d.%02H"
516 # time-stamp-time-zone: "UTC0"
517 # time-stamp-end: "; # UTC"
518 # End: