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