PageRenderTime 78ms CodeModel.GetById 37ms RepoModel.GetById 4ms app.codeStats 0ms

/missing

http://github.com/earl/gforth-mirror
Shell | 364 lines | 312 code | 22 blank | 30 comment | 29 complexity | 93dfa4bb001c75f128e1cdc03d2ea7b6 MD5 | raw file
Possible License(s): LGPL-2.1, GPL-3.0, CC-BY-SA-3.0, LGPL-3.0
  1. #! /bin/sh
  2. # Common stub for a few missing GNU programs while installing.
  3. scriptversion=2006-05-10.23
  4. # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,2007 Free Software Foundation, Inc.
  5. # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 3, or (at your option)
  9. # any later version.
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see http://www.gnu.org/licenses/.
  16. # As a special exception to the GNU General Public License, if you
  17. # distribute this file as part of a program that contains a
  18. # configuration script generated by Autoconf, you may include it under
  19. # the same distribution terms that you use for the rest of that program.
  20. if test $# -eq 0; then
  21. echo 1>&2 "Try \`$0 --help' for more information"
  22. exit 1
  23. fi
  24. run=:
  25. sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
  26. sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
  27. # In the cases where this matters, `missing' is being run in the
  28. # srcdir already.
  29. if test -f configure.ac; then
  30. configure_ac=configure.ac
  31. else
  32. configure_ac=configure.in
  33. fi
  34. msg="missing on your system"
  35. case $1 in
  36. --run)
  37. # Try to run requested program, and just exit if it succeeds.
  38. run=
  39. shift
  40. "$@" && exit 0
  41. # Exit code 63 means version mismatch. This often happens
  42. # when the user try to use an ancient version of a tool on
  43. # a file that requires a minimum version. In this case we
  44. # we should proceed has if the program had been absent, or
  45. # if --run hadn't been passed.
  46. if test $? = 63; then
  47. run=:
  48. msg="probably too old"
  49. fi
  50. ;;
  51. -h|--h|--he|--hel|--help)
  52. echo "\
  53. $0 [OPTION]... PROGRAM [ARGUMENT]...
  54. Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
  55. error status if there is no known handling for PROGRAM.
  56. Options:
  57. -h, --help display this help and exit
  58. -v, --version output version information and exit
  59. --run try to run the given command, and emulate it if it fails
  60. Supported PROGRAM values:
  61. aclocal touch file \`aclocal.m4'
  62. autoconf touch file \`configure'
  63. autoheader touch file \`config.h.in'
  64. autom4te touch the output file, or create a stub one
  65. automake touch all \`Makefile.in' files
  66. bison create \`y.tab.[ch]', if possible, from existing .[ch]
  67. flex create \`lex.yy.c', if possible, from existing .c
  68. help2man touch the output file
  69. lex create \`lex.yy.c', if possible, from existing .c
  70. makeinfo touch the output file
  71. tar try tar, gnutar, gtar, then tar without non-portable flags
  72. yacc create \`y.tab.[ch]', if possible, from existing .[ch]
  73. Send bug reports to <bug-automake@gnu.org>."
  74. exit $?
  75. ;;
  76. -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
  77. echo "missing $scriptversion (GNU Automake)"
  78. exit $?
  79. ;;
  80. -*)
  81. echo 1>&2 "$0: Unknown \`$1' option"
  82. echo 1>&2 "Try \`$0 --help' for more information"
  83. exit 1
  84. ;;
  85. esac
  86. # Now exit if we have it, but it failed. Also exit now if we
  87. # don't have it and --version was passed (most likely to detect
  88. # the program).
  89. case $1 in
  90. lex|yacc)
  91. # Not GNU programs, they don't have --version.
  92. ;;
  93. tar)
  94. if test -n "$run"; then
  95. echo 1>&2 "ERROR: \`tar' requires --run"
  96. exit 1
  97. elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
  98. exit 1
  99. fi
  100. ;;
  101. *)
  102. if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
  103. # We have it, but it failed.
  104. exit 1
  105. elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
  106. # Could not run --version or --help. This is probably someone
  107. # running `$TOOL --version' or `$TOOL --help' to check whether
  108. # $TOOL exists and not knowing $TOOL uses missing.
  109. exit 1
  110. fi
  111. ;;
  112. esac
  113. # If it does not exist, or fails to run (possibly an outdated version),
  114. # try to emulate it.
  115. case $1 in
  116. aclocal*)
  117. echo 1>&2 "\
  118. WARNING: \`$1' is $msg. You should only need it if
  119. you modified \`acinclude.m4' or \`${configure_ac}'. You might want
  120. to install the \`Automake' and \`Perl' packages. Grab them from
  121. any GNU archive site."
  122. touch aclocal.m4
  123. ;;
  124. autoconf)
  125. echo 1>&2 "\
  126. WARNING: \`$1' is $msg. You should only need it if
  127. you modified \`${configure_ac}'. You might want to install the
  128. \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
  129. archive site."
  130. touch configure
  131. ;;
  132. autoheader)
  133. echo 1>&2 "\
  134. WARNING: \`$1' is $msg. You should only need it if
  135. you modified \`acconfig.h' or \`${configure_ac}'. You might want
  136. to install the \`Autoconf' and \`GNU m4' packages. Grab them
  137. from any GNU archive site."
  138. files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
  139. test -z "$files" && files="config.h"
  140. touch_files=
  141. for f in $files; do
  142. case $f in
  143. *:*) touch_files="$touch_files "`echo "$f" |
  144. sed -e 's/^[^:]*://' -e 's/:.*//'`;;
  145. *) touch_files="$touch_files $f.in";;
  146. esac
  147. done
  148. touch $touch_files
  149. ;;
  150. automake*)
  151. echo 1>&2 "\
  152. WARNING: \`$1' is $msg. You should only need it if
  153. you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
  154. You might want to install the \`Automake' and \`Perl' packages.
  155. Grab them from any GNU archive site."
  156. find . -type f -name Makefile.am -print |
  157. sed 's/\.am$/.in/' |
  158. while read f; do touch "$f"; done
  159. ;;
  160. autom4te)
  161. echo 1>&2 "\
  162. WARNING: \`$1' is needed, but is $msg.
  163. You might have modified some files without having the
  164. proper tools for further handling them.
  165. You can get \`$1' as part of \`Autoconf' from any GNU
  166. archive site."
  167. file=`echo "$*" | sed -n "$sed_output"`
  168. test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
  169. if test -f "$file"; then
  170. touch $file
  171. else
  172. test -z "$file" || exec >$file
  173. echo "#! /bin/sh"
  174. echo "# Created by GNU Automake missing as a replacement of"
  175. echo "# $ $@"
  176. echo "exit 0"
  177. chmod +x $file
  178. exit 1
  179. fi
  180. ;;
  181. bison|yacc)
  182. echo 1>&2 "\
  183. WARNING: \`$1' $msg. You should only need it if
  184. you modified a \`.y' file. You may need the \`Bison' package
  185. in order for those modifications to take effect. You can get
  186. \`Bison' from any GNU archive site."
  187. rm -f y.tab.c y.tab.h
  188. if test $# -ne 1; then
  189. eval LASTARG="\${$#}"
  190. case $LASTARG in
  191. *.y)
  192. SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
  193. if test -f "$SRCFILE"; then
  194. cp "$SRCFILE" y.tab.c
  195. fi
  196. SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
  197. if test -f "$SRCFILE"; then
  198. cp "$SRCFILE" y.tab.h
  199. fi
  200. ;;
  201. esac
  202. fi
  203. if test ! -f y.tab.h; then
  204. echo >y.tab.h
  205. fi
  206. if test ! -f y.tab.c; then
  207. echo 'main() { return 0; }' >y.tab.c
  208. fi
  209. ;;
  210. lex|flex)
  211. echo 1>&2 "\
  212. WARNING: \`$1' is $msg. You should only need it if
  213. you modified a \`.l' file. You may need the \`Flex' package
  214. in order for those modifications to take effect. You can get
  215. \`Flex' from any GNU archive site."
  216. rm -f lex.yy.c
  217. if test $# -ne 1; then
  218. eval LASTARG="\${$#}"
  219. case $LASTARG in
  220. *.l)
  221. SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
  222. if test -f "$SRCFILE"; then
  223. cp "$SRCFILE" lex.yy.c
  224. fi
  225. ;;
  226. esac
  227. fi
  228. if test ! -f lex.yy.c; then
  229. echo 'main() { return 0; }' >lex.yy.c
  230. fi
  231. ;;
  232. help2man)
  233. echo 1>&2 "\
  234. WARNING: \`$1' is $msg. You should only need it if
  235. you modified a dependency of a manual page. You may need the
  236. \`Help2man' package in order for those modifications to take
  237. effect. You can get \`Help2man' from any GNU archive site."
  238. file=`echo "$*" | sed -n "$sed_output"`
  239. test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
  240. if test -f "$file"; then
  241. touch $file
  242. else
  243. test -z "$file" || exec >$file
  244. echo ".ab help2man is required to generate this page"
  245. exit 1
  246. fi
  247. ;;
  248. makeinfo)
  249. echo 1>&2 "\
  250. WARNING: \`$1' is $msg. You should only need it if
  251. you modified a \`.texi' or \`.texinfo' file, or any other file
  252. indirectly affecting the aspect of the manual. The spurious
  253. call might also be the consequence of using a buggy \`make' (AIX,
  254. DU, IRIX). You might want to install the \`Texinfo' package or
  255. the \`GNU make' package. Grab either from any GNU archive site."
  256. # The file to touch is that specified with -o ...
  257. file=`echo "$*" | sed -n "$sed_output"`
  258. test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"`
  259. if test -z "$file"; then
  260. # ... or it is the one specified with @setfilename ...
  261. infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
  262. file=`sed -n '
  263. /^@setfilename/{
  264. s/.* \([^ ]*\) *$/\1/
  265. p
  266. q
  267. }' $infile`
  268. # ... or it is derived from the source name (dir/f.texi becomes f.info)
  269. test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
  270. fi
  271. # If the file does not exist, the user really needs makeinfo;
  272. # let's fail without touching anything.
  273. test -f $file || exit 1
  274. touch $file
  275. ;;
  276. tar)
  277. shift
  278. # We have already tried tar in the generic part.
  279. # Look for gnutar/gtar before invocation to avoid ugly error
  280. # messages.
  281. if (gnutar --version > /dev/null 2>&1); then
  282. gnutar "$@" && exit 0
  283. fi
  284. if (gtar --version > /dev/null 2>&1); then
  285. gtar "$@" && exit 0
  286. fi
  287. firstarg="$1"
  288. if shift; then
  289. case $firstarg in
  290. *o*)
  291. firstarg=`echo "$firstarg" | sed s/o//`
  292. tar "$firstarg" "$@" && exit 0
  293. ;;
  294. esac
  295. case $firstarg in
  296. *h*)
  297. firstarg=`echo "$firstarg" | sed s/h//`
  298. tar "$firstarg" "$@" && exit 0
  299. ;;
  300. esac
  301. fi
  302. echo 1>&2 "\
  303. WARNING: I can't seem to be able to run \`tar' with the given arguments.
  304. You may want to install GNU tar or Free paxutils, or check the
  305. command line arguments."
  306. exit 1
  307. ;;
  308. *)
  309. echo 1>&2 "\
  310. WARNING: \`$1' is needed, and is $msg.
  311. You might have modified some files without having the
  312. proper tools for further handling them. Check the \`README' file,
  313. it often tells you about the needed prerequisites for installing
  314. this package. You may also peek at any GNU archive site, in case
  315. some other package would contain this missing \`$1' program."
  316. exit 1
  317. ;;
  318. esac
  319. exit 0
  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: