install-sh
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:6k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. #! /bin/sh
  2. #
  3. # %Z%%M% %I% %E% 1999 J. Schilling
  4. #
  5. # install - install a program, script, or datafile
  6. # This comes from X11R5 (mit/util/scripts/install.sh).
  7. #
  8. # Copyright 1991 by the Massachusetts Institute of Technology
  9. #
  10. # Permission to use, copy, modify, distribute, and sell this software and its
  11. # documentation for any purpose is hereby granted without fee, provided that
  12. # the above copyright notice appear in all copies and that both that
  13. # copyright notice and this permission notice appear in supporting
  14. # documentation, and that the name of M.I.T. not be used in advertising or
  15. # publicity pertaining to distribution of the software without specific,
  16. # written prior permission.  M.I.T. makes no representations about the
  17. # suitability of this software for any purpose.  It is provided "as is"
  18. # without express or implied warranty.
  19. #
  20. # Calling this script install-sh is preferred over install.sh, to prevent
  21. # `make' implicit rules from creating a file called install from it
  22. # when there is no Makefile.
  23. #
  24. # This script is compatible with the BSD install script, but was written
  25. # from scratch.  It can only install one file at a time, a restriction
  26. # shared with many OS's install programs.
  27. # set DOITPROG to echo to test this script
  28. # Don't use :- since 4.3BSD and earlier shells don't like it.
  29. doit="${DOITPROG-}"
  30. # put in absolute paths if you don't have them in your path; or use env. vars.
  31. mvprog="${MVPROG-mv}"
  32. cpprog="${CPPROG-cp}"
  33. chmodprog="${CHMODPROG-chmod}"
  34. chownprog="${CHOWNPROG-chown}"
  35. chgrpprog="${CHGRPPROG-chgrp}"
  36. stripprog="${STRIPPROG-strip}"
  37. rmprog="${RMPROG-rm}"
  38. mkdirprog="${MKDIRPROG-mkdir}"
  39. transformbasename=""
  40. transform_arg=""
  41. instcmd="$mvprog"
  42. chmodcmd="$chmodprog 0755"
  43. chowncmd=""
  44. chgrpcmd=""
  45. stripcmd=""
  46. rmcmd="$rmprog -f"
  47. mvcmd="$mvprog"
  48. src=""
  49. dst=""
  50. dir_arg=""
  51. #
  52. # Check if we are root to avoid chown as non root user
  53. #
  54. rootflag=FALSE
  55. dsttmp=/tmp/xx.$$
  56. trap "rm -f ${dsttmp}" 0
  57. echo > ${dsttmp}
  58. ${chownprog} root ${dsttmp} 2> /dev/null && ${chmodcmd} ${dsttmp} 2> /dev/null && rootflag=TRUE
  59. rm -f ${dsttmp}
  60. while [ x"$1" != x ]; do
  61.     case $1 in
  62. -c) instcmd="$cpprog"
  63.     shift
  64.     continue;;
  65. -d) dir_arg=true
  66.     shift
  67.     continue;;
  68. -m) chmodcmd="$chmodprog $2"
  69.     shift
  70.     shift
  71.     continue;;
  72. -o) if [ $rootflag = TRUE ]
  73.     then
  74. chowncmd="$chownprog $2"
  75.     else
  76. echo "install: -o option available only to root -- ignored"
  77.     fi
  78.     shift
  79.     shift
  80.     continue;;
  81. -g) if [ $rootflag = TRUE ]
  82.     then
  83. chgrpcmd="$chgrpprog $2"
  84.     else
  85. echo "install: -g option available only to root -- ignored"
  86.     fi
  87.     shift
  88.     shift
  89.     continue;;
  90. -s) stripcmd="$stripprog"
  91.     shift
  92.     continue;;
  93. -t=*) transformarg=`echo $1 | sed 's/-t=//'`
  94.     shift
  95.     continue;;
  96. -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
  97.     shift
  98.     continue;;
  99. *)  if [ x"$src" = x ]
  100.     then
  101. src=$1
  102.     else
  103. # this colon is to work around a 386BSD /bin/sh bug
  104. :
  105. dst=$1
  106.     fi
  107.     shift
  108.     continue;;
  109.     esac
  110. done
  111. if [ x"$src" = x ]
  112. then
  113. echo "install: no input file specified"
  114. exit 1
  115. else
  116. true
  117. fi
  118. if [ x"$dir_arg" != x ]; then
  119. dst=$src
  120. src=""
  121. if [ -d $dst ]; then
  122. instcmd=:
  123. else
  124. instcmd=mkdir
  125. fi
  126. else
  127. # Waiting for this to be detected by the "$instcmd $src $dsttmp" command
  128. # might cause directories to be created, which would be especially bad 
  129. # if $src (and thus $dsttmp) contains '*'.
  130. if [ -f $src -o -d $src ]
  131. then
  132. true
  133. else
  134. echo "install:  $src does not exist"
  135. exit 1
  136. fi
  137. if [ x"$dst" = x ]
  138. then
  139. echo "install: no destination specified"
  140. exit 1
  141. else
  142. true
  143. fi
  144. # If destination is a directory, append the input filename; if your system
  145. # does not like double slashes in filenames, you may need to add some logic
  146. if [ -d $dst ]
  147. then
  148. dst="$dst"/`basename $src`
  149. else
  150. true
  151. fi
  152. fi
  153. ## this sed command emulates the dirname command
  154. dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
  155. # Make sure that the destination directory exists.
  156. #  this part is taken from Noah Friedman's mkinstalldirs script
  157. # Skip lots of stat calls in the usual case.
  158. if [ ! -d "$dstdir" ]; then
  159. defaultIFS='
  160. '
  161. IFS="${IFS-${defaultIFS}}"
  162. oIFS="${IFS}"
  163. # Some sh's can't handle IFS=/ for some reason.
  164. IFS='%'
  165. set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
  166. IFS="${oIFS}"
  167. pathcomp=''
  168. while [ $# -ne 0 ] ; do
  169. pathcomp="${pathcomp}${1}"
  170. shift
  171. if [ ! -d "${pathcomp}" ] ;
  172.         then
  173. $mkdirprog "${pathcomp}"
  174. else
  175. true
  176. fi
  177. pathcomp="${pathcomp}/"
  178. done
  179. fi
  180. if [ x"$dir_arg" != x ]
  181. then
  182. $doit $instcmd $dst &&
  183. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
  184. if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
  185. if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
  186. if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
  187. else
  188. # If we're going to rename the final executable, determine the name now.
  189. if [ x"$transformarg" = x ] 
  190. then
  191. dstfile=`basename $dst`
  192. else
  193. dstfile=`basename $dst $transformbasename | 
  194. sed $transformarg`$transformbasename
  195. fi
  196. # don't allow the sed command to completely eliminate the filename
  197. if [ x"$dstfile" = x ] 
  198. then
  199. dstfile=`basename $dst`
  200. else
  201. true
  202. fi
  203. # Make a temp file name in the proper directory.
  204. dsttmp=$dstdir/#inst.$$#
  205. # Move or copy the file name to the temp name
  206. $doit $instcmd $src $dsttmp &&
  207. trap "rm -f ${dsttmp}" 0 &&
  208. # and set any options; do chmod last to preserve setuid bits
  209. # If any of these fail, we abort the whole thing.  If we want to
  210. # ignore errors from any of these, just make sure not to ignore
  211. # errors from the above "$doit $instcmd $src $dsttmp" command.
  212. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
  213. if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
  214. if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
  215. if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
  216. # Now rename the file to the real destination.
  217. $doit $rmcmd -f $dstdir/$dstfile &&
  218. $doit $mvcmd $dsttmp $dstdir/$dstfile 
  219. fi &&
  220. exit 0