Chris@41: #!/bin/sh Chris@41: # install - install a program, script, or datafile Chris@41: Chris@41: scriptversion=2009-04-28.21; # UTC Chris@41: Chris@41: # This originates from X11R5 (mit/util/scripts/install.sh), which was Chris@41: # later released in X11R6 (xc/config/util/install.sh) with the Chris@41: # following copyright and license. Chris@41: # Chris@41: # Copyright (C) 1994 X Consortium Chris@41: # Chris@41: # Permission is hereby granted, free of charge, to any person obtaining a copy Chris@41: # of this software and associated documentation files (the "Software"), to Chris@41: # deal in the Software without restriction, including without limitation the Chris@41: # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or Chris@41: # sell copies of the Software, and to permit persons to whom the Software is Chris@41: # furnished to do so, subject to the following conditions: Chris@41: # Chris@41: # The above copyright notice and this permission notice shall be included in Chris@41: # all copies or substantial portions of the Software. Chris@41: # Chris@41: # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR Chris@41: # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, Chris@41: # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE Chris@41: # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN Chris@41: # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- Chris@41: # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Chris@41: # Chris@41: # Except as contained in this notice, the name of the X Consortium shall not Chris@41: # be used in advertising or otherwise to promote the sale, use or other deal- Chris@41: # ings in this Software without prior written authorization from the X Consor- Chris@41: # tium. Chris@41: # Chris@41: # Chris@41: # FSF changes to this file are in the public domain. Chris@41: # Chris@41: # Calling this script install-sh is preferred over install.sh, to prevent Chris@41: # `make' implicit rules from creating a file called install from it Chris@41: # when there is no Makefile. Chris@41: # Chris@41: # This script is compatible with the BSD install script, but was written Chris@41: # from scratch. Chris@41: Chris@41: nl=' Chris@41: ' Chris@41: IFS=" "" $nl" Chris@41: Chris@41: # set DOITPROG to echo to test this script Chris@41: Chris@41: # Don't use :- since 4.3BSD and earlier shells don't like it. Chris@41: doit=${DOITPROG-} Chris@41: if test -z "$doit"; then Chris@41: doit_exec=exec Chris@41: else Chris@41: doit_exec=$doit Chris@41: fi Chris@41: Chris@41: # Put in absolute file names if you don't have them in your path; Chris@41: # or use environment vars. Chris@41: Chris@41: chgrpprog=${CHGRPPROG-chgrp} Chris@41: chmodprog=${CHMODPROG-chmod} Chris@41: chownprog=${CHOWNPROG-chown} Chris@41: cmpprog=${CMPPROG-cmp} Chris@41: cpprog=${CPPROG-cp} Chris@41: mkdirprog=${MKDIRPROG-mkdir} Chris@41: mvprog=${MVPROG-mv} Chris@41: rmprog=${RMPROG-rm} Chris@41: stripprog=${STRIPPROG-strip} Chris@41: Chris@41: posix_glob='?' Chris@41: initialize_posix_glob=' Chris@41: test "$posix_glob" != "?" || { Chris@41: if (set -f) 2>/dev/null; then Chris@41: posix_glob= Chris@41: else Chris@41: posix_glob=: Chris@41: fi Chris@41: } Chris@41: ' Chris@41: Chris@41: posix_mkdir= Chris@41: Chris@41: # Desired mode of installed file. Chris@41: mode=0755 Chris@41: Chris@41: chgrpcmd= Chris@41: chmodcmd=$chmodprog Chris@41: chowncmd= Chris@41: mvcmd=$mvprog Chris@41: rmcmd="$rmprog -f" Chris@41: stripcmd= Chris@41: Chris@41: src= Chris@41: dst= Chris@41: dir_arg= Chris@41: dst_arg= Chris@41: Chris@41: copy_on_change=false Chris@41: no_target_directory= Chris@41: Chris@41: usage="\ Chris@41: Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE Chris@41: or: $0 [OPTION]... SRCFILES... DIRECTORY Chris@41: or: $0 [OPTION]... -t DIRECTORY SRCFILES... Chris@41: or: $0 [OPTION]... -d DIRECTORIES... Chris@41: Chris@41: In the 1st form, copy SRCFILE to DSTFILE. Chris@41: In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. Chris@41: In the 4th, create DIRECTORIES. Chris@41: Chris@41: Options: Chris@41: --help display this help and exit. Chris@41: --version display version info and exit. Chris@41: Chris@41: -c (ignored) Chris@41: -C install only if different (preserve the last data modification time) Chris@41: -d create directories instead of installing files. Chris@41: -g GROUP $chgrpprog installed files to GROUP. Chris@41: -m MODE $chmodprog installed files to MODE. Chris@41: -o USER $chownprog installed files to USER. Chris@41: -s $stripprog installed files. Chris@41: -t DIRECTORY install into DIRECTORY. Chris@41: -T report an error if DSTFILE is a directory. Chris@41: Chris@41: Environment variables override the default commands: Chris@41: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG Chris@41: RMPROG STRIPPROG Chris@41: " Chris@41: Chris@41: while test $# -ne 0; do Chris@41: case $1 in Chris@41: -c) ;; Chris@41: Chris@41: -C) copy_on_change=true;; Chris@41: Chris@41: -d) dir_arg=true;; Chris@41: Chris@41: -g) chgrpcmd="$chgrpprog $2" Chris@41: shift;; Chris@41: Chris@41: --help) echo "$usage"; exit $?;; Chris@41: Chris@41: -m) mode=$2 Chris@41: case $mode in Chris@41: *' '* | *' '* | *' Chris@41: '* | *'*'* | *'?'* | *'['*) Chris@41: echo "$0: invalid mode: $mode" >&2 Chris@41: exit 1;; Chris@41: esac Chris@41: shift;; Chris@41: Chris@41: -o) chowncmd="$chownprog $2" Chris@41: shift;; Chris@41: Chris@41: -s) stripcmd=$stripprog;; Chris@41: Chris@41: -t) dst_arg=$2 Chris@41: shift;; Chris@41: Chris@41: -T) no_target_directory=true;; Chris@41: Chris@41: --version) echo "$0 $scriptversion"; exit $?;; Chris@41: Chris@41: --) shift Chris@41: break;; Chris@41: Chris@41: -*) echo "$0: invalid option: $1" >&2 Chris@41: exit 1;; Chris@41: Chris@41: *) break;; Chris@41: esac Chris@41: shift Chris@41: done Chris@41: Chris@41: if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then Chris@41: # When -d is used, all remaining arguments are directories to create. Chris@41: # When -t is used, the destination is already specified. Chris@41: # Otherwise, the last argument is the destination. Remove it from $@. Chris@41: for arg Chris@41: do Chris@41: if test -n "$dst_arg"; then Chris@41: # $@ is not empty: it contains at least $arg. Chris@41: set fnord "$@" "$dst_arg" Chris@41: shift # fnord Chris@41: fi Chris@41: shift # arg Chris@41: dst_arg=$arg Chris@41: done Chris@41: fi Chris@41: Chris@41: if test $# -eq 0; then Chris@41: if test -z "$dir_arg"; then Chris@41: echo "$0: no input file specified." >&2 Chris@41: exit 1 Chris@41: fi Chris@41: # It's OK to call `install-sh -d' without argument. Chris@41: # This can happen when creating conditional directories. Chris@41: exit 0 Chris@41: fi Chris@41: Chris@41: if test -z "$dir_arg"; then Chris@41: trap '(exit $?); exit' 1 2 13 15 Chris@41: Chris@41: # Set umask so as not to create temps with too-generous modes. Chris@41: # However, 'strip' requires both read and write access to temps. Chris@41: case $mode in Chris@41: # Optimize common cases. Chris@41: *644) cp_umask=133;; Chris@41: *755) cp_umask=22;; Chris@41: Chris@41: *[0-7]) Chris@41: if test -z "$stripcmd"; then Chris@41: u_plus_rw= Chris@41: else Chris@41: u_plus_rw='% 200' Chris@41: fi Chris@41: cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; Chris@41: *) Chris@41: if test -z "$stripcmd"; then Chris@41: u_plus_rw= Chris@41: else Chris@41: u_plus_rw=,u+rw Chris@41: fi Chris@41: cp_umask=$mode$u_plus_rw;; Chris@41: esac Chris@41: fi Chris@41: Chris@41: for src Chris@41: do Chris@41: # Protect names starting with `-'. Chris@41: case $src in Chris@41: -*) src=./$src;; Chris@41: esac Chris@41: Chris@41: if test -n "$dir_arg"; then Chris@41: dst=$src Chris@41: dstdir=$dst Chris@41: test -d "$dstdir" Chris@41: dstdir_status=$? Chris@41: else Chris@41: Chris@41: # Waiting for this to be detected by the "$cpprog $src $dsttmp" command Chris@41: # might cause directories to be created, which would be especially bad Chris@41: # if $src (and thus $dsttmp) contains '*'. Chris@41: if test ! -f "$src" && test ! -d "$src"; then Chris@41: echo "$0: $src does not exist." >&2 Chris@41: exit 1 Chris@41: fi Chris@41: Chris@41: if test -z "$dst_arg"; then Chris@41: echo "$0: no destination specified." >&2 Chris@41: exit 1 Chris@41: fi Chris@41: Chris@41: dst=$dst_arg Chris@41: # Protect names starting with `-'. Chris@41: case $dst in Chris@41: -*) dst=./$dst;; Chris@41: esac Chris@41: Chris@41: # If destination is a directory, append the input filename; won't work Chris@41: # if double slashes aren't ignored. Chris@41: if test -d "$dst"; then Chris@41: if test -n "$no_target_directory"; then Chris@41: echo "$0: $dst_arg: Is a directory" >&2 Chris@41: exit 1 Chris@41: fi Chris@41: dstdir=$dst Chris@41: dst=$dstdir/`basename "$src"` Chris@41: dstdir_status=0 Chris@41: else Chris@41: # Prefer dirname, but fall back on a substitute if dirname fails. Chris@41: dstdir=` Chris@41: (dirname "$dst") 2>/dev/null || Chris@41: expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ Chris@41: X"$dst" : 'X\(//\)[^/]' \| \ Chris@41: X"$dst" : 'X\(//\)$' \| \ Chris@41: X"$dst" : 'X\(/\)' \| . 2>/dev/null || Chris@41: echo X"$dst" | Chris@41: sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ Chris@41: s//\1/ Chris@41: q Chris@41: } Chris@41: /^X\(\/\/\)[^/].*/{ Chris@41: s//\1/ Chris@41: q Chris@41: } Chris@41: /^X\(\/\/\)$/{ Chris@41: s//\1/ Chris@41: q Chris@41: } Chris@41: /^X\(\/\).*/{ Chris@41: s//\1/ Chris@41: q Chris@41: } Chris@41: s/.*/./; q' Chris@41: ` Chris@41: Chris@41: test -d "$dstdir" Chris@41: dstdir_status=$? Chris@41: fi Chris@41: fi Chris@41: Chris@41: obsolete_mkdir_used=false Chris@41: Chris@41: if test $dstdir_status != 0; then Chris@41: case $posix_mkdir in Chris@41: '') Chris@41: # Create intermediate dirs using mode 755 as modified by the umask. Chris@41: # This is like FreeBSD 'install' as of 1997-10-28. Chris@41: umask=`umask` Chris@41: case $stripcmd.$umask in Chris@41: # Optimize common cases. Chris@41: *[2367][2367]) mkdir_umask=$umask;; Chris@41: .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; Chris@41: Chris@41: *[0-7]) Chris@41: mkdir_umask=`expr $umask + 22 \ Chris@41: - $umask % 100 % 40 + $umask % 20 \ Chris@41: - $umask % 10 % 4 + $umask % 2 Chris@41: `;; Chris@41: *) mkdir_umask=$umask,go-w;; Chris@41: esac Chris@41: Chris@41: # With -d, create the new directory with the user-specified mode. Chris@41: # Otherwise, rely on $mkdir_umask. Chris@41: if test -n "$dir_arg"; then Chris@41: mkdir_mode=-m$mode Chris@41: else Chris@41: mkdir_mode= Chris@41: fi Chris@41: Chris@41: posix_mkdir=false Chris@41: case $umask in Chris@41: *[123567][0-7][0-7]) Chris@41: # POSIX mkdir -p sets u+wx bits regardless of umask, which Chris@41: # is incompatible with FreeBSD 'install' when (umask & 300) != 0. Chris@41: ;; Chris@41: *) Chris@41: tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ Chris@41: trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 Chris@41: Chris@41: if (umask $mkdir_umask && Chris@41: exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 Chris@41: then Chris@41: if test -z "$dir_arg" || { Chris@41: # Check for POSIX incompatibilities with -m. Chris@41: # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or Chris@41: # other-writeable bit of parent directory when it shouldn't. Chris@41: # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. Chris@41: ls_ld_tmpdir=`ls -ld "$tmpdir"` Chris@41: case $ls_ld_tmpdir in Chris@41: d????-?r-*) different_mode=700;; Chris@41: d????-?--*) different_mode=755;; Chris@41: *) false;; Chris@41: esac && Chris@41: $mkdirprog -m$different_mode -p -- "$tmpdir" && { Chris@41: ls_ld_tmpdir_1=`ls -ld "$tmpdir"` Chris@41: test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" Chris@41: } Chris@41: } Chris@41: then posix_mkdir=: Chris@41: fi Chris@41: rmdir "$tmpdir/d" "$tmpdir" Chris@41: else Chris@41: # Remove any dirs left behind by ancient mkdir implementations. Chris@41: rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null Chris@41: fi Chris@41: trap '' 0;; Chris@41: esac;; Chris@41: esac Chris@41: Chris@41: if Chris@41: $posix_mkdir && ( Chris@41: umask $mkdir_umask && Chris@41: $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" Chris@41: ) Chris@41: then : Chris@41: else Chris@41: Chris@41: # The umask is ridiculous, or mkdir does not conform to POSIX, Chris@41: # or it failed possibly due to a race condition. Create the Chris@41: # directory the slow way, step by step, checking for races as we go. Chris@41: Chris@41: case $dstdir in Chris@41: /*) prefix='/';; Chris@41: -*) prefix='./';; Chris@41: *) prefix='';; Chris@41: esac Chris@41: Chris@41: eval "$initialize_posix_glob" Chris@41: Chris@41: oIFS=$IFS Chris@41: IFS=/ Chris@41: $posix_glob set -f Chris@41: set fnord $dstdir Chris@41: shift Chris@41: $posix_glob set +f Chris@41: IFS=$oIFS Chris@41: Chris@41: prefixes= Chris@41: Chris@41: for d Chris@41: do Chris@41: test -z "$d" && continue Chris@41: Chris@41: prefix=$prefix$d Chris@41: if test -d "$prefix"; then Chris@41: prefixes= Chris@41: else Chris@41: if $posix_mkdir; then Chris@41: (umask=$mkdir_umask && Chris@41: $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break Chris@41: # Don't fail if two instances are running concurrently. Chris@41: test -d "$prefix" || exit 1 Chris@41: else Chris@41: case $prefix in Chris@41: *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; Chris@41: *) qprefix=$prefix;; Chris@41: esac Chris@41: prefixes="$prefixes '$qprefix'" Chris@41: fi Chris@41: fi Chris@41: prefix=$prefix/ Chris@41: done Chris@41: Chris@41: if test -n "$prefixes"; then Chris@41: # Don't fail if two instances are running concurrently. Chris@41: (umask $mkdir_umask && Chris@41: eval "\$doit_exec \$mkdirprog $prefixes") || Chris@41: test -d "$dstdir" || exit 1 Chris@41: obsolete_mkdir_used=true Chris@41: fi Chris@41: fi Chris@41: fi Chris@41: Chris@41: if test -n "$dir_arg"; then Chris@41: { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && Chris@41: { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && Chris@41: { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || Chris@41: test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 Chris@41: else Chris@41: Chris@41: # Make a couple of temp file names in the proper directory. Chris@41: dsttmp=$dstdir/_inst.$$_ Chris@41: rmtmp=$dstdir/_rm.$$_ Chris@41: Chris@41: # Trap to clean up those temp files at exit. Chris@41: trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 Chris@41: Chris@41: # Copy the file name to the temp name. Chris@41: (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && Chris@41: Chris@41: # and set any options; do chmod last to preserve setuid bits. Chris@41: # Chris@41: # If any of these fail, we abort the whole thing. If we want to Chris@41: # ignore errors from any of these, just make sure not to ignore Chris@41: # errors from the above "$doit $cpprog $src $dsttmp" command. Chris@41: # Chris@41: { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && Chris@41: { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && Chris@41: { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && Chris@41: { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && Chris@41: Chris@41: # If -C, don't bother to copy if it wouldn't change the file. Chris@41: if $copy_on_change && Chris@41: old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && Chris@41: new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && Chris@41: Chris@41: eval "$initialize_posix_glob" && Chris@41: $posix_glob set -f && Chris@41: set X $old && old=:$2:$4:$5:$6 && Chris@41: set X $new && new=:$2:$4:$5:$6 && Chris@41: $posix_glob set +f && Chris@41: Chris@41: test "$old" = "$new" && Chris@41: $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 Chris@41: then Chris@41: rm -f "$dsttmp" Chris@41: else Chris@41: # Rename the file to the real destination. Chris@41: $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || Chris@41: Chris@41: # The rename failed, perhaps because mv can't rename something else Chris@41: # to itself, or perhaps because mv is so ancient that it does not Chris@41: # support -f. Chris@41: { Chris@41: # Now remove or move aside any old file at destination location. Chris@41: # We try this two ways since rm can't unlink itself on some Chris@41: # systems and the destination file might be busy for other Chris@41: # reasons. In this case, the final cleanup might fail but the new Chris@41: # file should still install successfully. Chris@41: { Chris@41: test ! -f "$dst" || Chris@41: $doit $rmcmd -f "$dst" 2>/dev/null || Chris@41: { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && Chris@41: { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } Chris@41: } || Chris@41: { echo "$0: cannot unlink or rename $dst" >&2 Chris@41: (exit 1); exit 1 Chris@41: } Chris@41: } && Chris@41: Chris@41: # Now rename the file to the real destination. Chris@41: $doit $mvcmd "$dsttmp" "$dst" Chris@41: } Chris@41: fi || exit 1 Chris@41: Chris@41: trap '' 0 Chris@41: fi Chris@41: done Chris@41: Chris@41: # Local variables: Chris@41: # eval: (add-hook 'write-file-hooks 'time-stamp) Chris@41: # time-stamp-start: "scriptversion=" Chris@41: # time-stamp-format: "%:y-%02m-%02d.%02H" Chris@41: # time-stamp-time-zone: "UTC" Chris@41: # time-stamp-end: "; # UTC" Chris@41: # End: