cannam@154
|
1 #! /bin/sh
|
cannam@154
|
2 # Common wrapper for a few potentially missing GNU programs.
|
cannam@154
|
3
|
cannam@154
|
4 scriptversion=2013-10-28.13; # UTC
|
cannam@154
|
5
|
cannam@154
|
6 # Copyright (C) 1996-2014 Free Software Foundation, Inc.
|
cannam@154
|
7 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
cannam@154
|
8
|
cannam@154
|
9 # This program is free software; you can redistribute it and/or modify
|
cannam@154
|
10 # it under the terms of the GNU General Public License as published by
|
cannam@154
|
11 # the Free Software Foundation; either version 2, or (at your option)
|
cannam@154
|
12 # any later version.
|
cannam@154
|
13
|
cannam@154
|
14 # This program is distributed in the hope that it will be useful,
|
cannam@154
|
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
cannam@154
|
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
cannam@154
|
17 # GNU General Public License for more details.
|
cannam@154
|
18
|
cannam@154
|
19 # You should have received a copy of the GNU General Public License
|
cannam@154
|
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
|
cannam@154
|
21
|
cannam@154
|
22 # As a special exception to the GNU General Public License, if you
|
cannam@154
|
23 # distribute this file as part of a program that contains a
|
cannam@154
|
24 # configuration script generated by Autoconf, you may include it under
|
cannam@154
|
25 # the same distribution terms that you use for the rest of that program.
|
cannam@154
|
26
|
cannam@154
|
27 if test $# -eq 0; then
|
cannam@154
|
28 echo 1>&2 "Try '$0 --help' for more information"
|
cannam@154
|
29 exit 1
|
cannam@154
|
30 fi
|
cannam@154
|
31
|
cannam@154
|
32 case $1 in
|
cannam@154
|
33
|
cannam@154
|
34 --is-lightweight)
|
cannam@154
|
35 # Used by our autoconf macros to check whether the available missing
|
cannam@154
|
36 # script is modern enough.
|
cannam@154
|
37 exit 0
|
cannam@154
|
38 ;;
|
cannam@154
|
39
|
cannam@154
|
40 --run)
|
cannam@154
|
41 # Back-compat with the calling convention used by older automake.
|
cannam@154
|
42 shift
|
cannam@154
|
43 ;;
|
cannam@154
|
44
|
cannam@154
|
45 -h|--h|--he|--hel|--help)
|
cannam@154
|
46 echo "\
|
cannam@154
|
47 $0 [OPTION]... PROGRAM [ARGUMENT]...
|
cannam@154
|
48
|
cannam@154
|
49 Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
|
cannam@154
|
50 to PROGRAM being missing or too old.
|
cannam@154
|
51
|
cannam@154
|
52 Options:
|
cannam@154
|
53 -h, --help display this help and exit
|
cannam@154
|
54 -v, --version output version information and exit
|
cannam@154
|
55
|
cannam@154
|
56 Supported PROGRAM values:
|
cannam@154
|
57 aclocal autoconf autoheader autom4te automake makeinfo
|
cannam@154
|
58 bison yacc flex lex help2man
|
cannam@154
|
59
|
cannam@154
|
60 Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
|
cannam@154
|
61 'g' are ignored when checking the name.
|
cannam@154
|
62
|
cannam@154
|
63 Send bug reports to <bug-automake@gnu.org>."
|
cannam@154
|
64 exit $?
|
cannam@154
|
65 ;;
|
cannam@154
|
66
|
cannam@154
|
67 -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
cannam@154
|
68 echo "missing $scriptversion (GNU Automake)"
|
cannam@154
|
69 exit $?
|
cannam@154
|
70 ;;
|
cannam@154
|
71
|
cannam@154
|
72 -*)
|
cannam@154
|
73 echo 1>&2 "$0: unknown '$1' option"
|
cannam@154
|
74 echo 1>&2 "Try '$0 --help' for more information"
|
cannam@154
|
75 exit 1
|
cannam@154
|
76 ;;
|
cannam@154
|
77
|
cannam@154
|
78 esac
|
cannam@154
|
79
|
cannam@154
|
80 # Run the given program, remember its exit status.
|
cannam@154
|
81 "$@"; st=$?
|
cannam@154
|
82
|
cannam@154
|
83 # If it succeeded, we are done.
|
cannam@154
|
84 test $st -eq 0 && exit 0
|
cannam@154
|
85
|
cannam@154
|
86 # Also exit now if we it failed (or wasn't found), and '--version' was
|
cannam@154
|
87 # passed; such an option is passed most likely to detect whether the
|
cannam@154
|
88 # program is present and works.
|
cannam@154
|
89 case $2 in --version|--help) exit $st;; esac
|
cannam@154
|
90
|
cannam@154
|
91 # Exit code 63 means version mismatch. This often happens when the user
|
cannam@154
|
92 # tries to use an ancient version of a tool on a file that requires a
|
cannam@154
|
93 # minimum version.
|
cannam@154
|
94 if test $st -eq 63; then
|
cannam@154
|
95 msg="probably too old"
|
cannam@154
|
96 elif test $st -eq 127; then
|
cannam@154
|
97 # Program was missing.
|
cannam@154
|
98 msg="missing on your system"
|
cannam@154
|
99 else
|
cannam@154
|
100 # Program was found and executed, but failed. Give up.
|
cannam@154
|
101 exit $st
|
cannam@154
|
102 fi
|
cannam@154
|
103
|
cannam@154
|
104 perl_URL=http://www.perl.org/
|
cannam@154
|
105 flex_URL=http://flex.sourceforge.net/
|
cannam@154
|
106 gnu_software_URL=http://www.gnu.org/software
|
cannam@154
|
107
|
cannam@154
|
108 program_details ()
|
cannam@154
|
109 {
|
cannam@154
|
110 case $1 in
|
cannam@154
|
111 aclocal|automake)
|
cannam@154
|
112 echo "The '$1' program is part of the GNU Automake package:"
|
cannam@154
|
113 echo "<$gnu_software_URL/automake>"
|
cannam@154
|
114 echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
|
cannam@154
|
115 echo "<$gnu_software_URL/autoconf>"
|
cannam@154
|
116 echo "<$gnu_software_URL/m4/>"
|
cannam@154
|
117 echo "<$perl_URL>"
|
cannam@154
|
118 ;;
|
cannam@154
|
119 autoconf|autom4te|autoheader)
|
cannam@154
|
120 echo "The '$1' program is part of the GNU Autoconf package:"
|
cannam@154
|
121 echo "<$gnu_software_URL/autoconf/>"
|
cannam@154
|
122 echo "It also requires GNU m4 and Perl in order to run:"
|
cannam@154
|
123 echo "<$gnu_software_URL/m4/>"
|
cannam@154
|
124 echo "<$perl_URL>"
|
cannam@154
|
125 ;;
|
cannam@154
|
126 esac
|
cannam@154
|
127 }
|
cannam@154
|
128
|
cannam@154
|
129 give_advice ()
|
cannam@154
|
130 {
|
cannam@154
|
131 # Normalize program name to check for.
|
cannam@154
|
132 normalized_program=`echo "$1" | sed '
|
cannam@154
|
133 s/^gnu-//; t
|
cannam@154
|
134 s/^gnu//; t
|
cannam@154
|
135 s/^g//; t'`
|
cannam@154
|
136
|
cannam@154
|
137 printf '%s\n' "'$1' is $msg."
|
cannam@154
|
138
|
cannam@154
|
139 configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
|
cannam@154
|
140 case $normalized_program in
|
cannam@154
|
141 autoconf*)
|
cannam@154
|
142 echo "You should only need it if you modified 'configure.ac',"
|
cannam@154
|
143 echo "or m4 files included by it."
|
cannam@154
|
144 program_details 'autoconf'
|
cannam@154
|
145 ;;
|
cannam@154
|
146 autoheader*)
|
cannam@154
|
147 echo "You should only need it if you modified 'acconfig.h' or"
|
cannam@154
|
148 echo "$configure_deps."
|
cannam@154
|
149 program_details 'autoheader'
|
cannam@154
|
150 ;;
|
cannam@154
|
151 automake*)
|
cannam@154
|
152 echo "You should only need it if you modified 'Makefile.am' or"
|
cannam@154
|
153 echo "$configure_deps."
|
cannam@154
|
154 program_details 'automake'
|
cannam@154
|
155 ;;
|
cannam@154
|
156 aclocal*)
|
cannam@154
|
157 echo "You should only need it if you modified 'acinclude.m4' or"
|
cannam@154
|
158 echo "$configure_deps."
|
cannam@154
|
159 program_details 'aclocal'
|
cannam@154
|
160 ;;
|
cannam@154
|
161 autom4te*)
|
cannam@154
|
162 echo "You might have modified some maintainer files that require"
|
cannam@154
|
163 echo "the 'autom4te' program to be rebuilt."
|
cannam@154
|
164 program_details 'autom4te'
|
cannam@154
|
165 ;;
|
cannam@154
|
166 bison*|yacc*)
|
cannam@154
|
167 echo "You should only need it if you modified a '.y' file."
|
cannam@154
|
168 echo "You may want to install the GNU Bison package:"
|
cannam@154
|
169 echo "<$gnu_software_URL/bison/>"
|
cannam@154
|
170 ;;
|
cannam@154
|
171 lex*|flex*)
|
cannam@154
|
172 echo "You should only need it if you modified a '.l' file."
|
cannam@154
|
173 echo "You may want to install the Fast Lexical Analyzer package:"
|
cannam@154
|
174 echo "<$flex_URL>"
|
cannam@154
|
175 ;;
|
cannam@154
|
176 help2man*)
|
cannam@154
|
177 echo "You should only need it if you modified a dependency" \
|
cannam@154
|
178 "of a man page."
|
cannam@154
|
179 echo "You may want to install the GNU Help2man package:"
|
cannam@154
|
180 echo "<$gnu_software_URL/help2man/>"
|
cannam@154
|
181 ;;
|
cannam@154
|
182 makeinfo*)
|
cannam@154
|
183 echo "You should only need it if you modified a '.texi' file, or"
|
cannam@154
|
184 echo "any other file indirectly affecting the aspect of the manual."
|
cannam@154
|
185 echo "You might want to install the Texinfo package:"
|
cannam@154
|
186 echo "<$gnu_software_URL/texinfo/>"
|
cannam@154
|
187 echo "The spurious makeinfo call might also be the consequence of"
|
cannam@154
|
188 echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
|
cannam@154
|
189 echo "want to install GNU make:"
|
cannam@154
|
190 echo "<$gnu_software_URL/make/>"
|
cannam@154
|
191 ;;
|
cannam@154
|
192 *)
|
cannam@154
|
193 echo "You might have modified some files without having the proper"
|
cannam@154
|
194 echo "tools for further handling them. Check the 'README' file, it"
|
cannam@154
|
195 echo "often tells you about the needed prerequisites for installing"
|
cannam@154
|
196 echo "this package. You may also peek at any GNU archive site, in"
|
cannam@154
|
197 echo "case some other package contains this missing '$1' program."
|
cannam@154
|
198 ;;
|
cannam@154
|
199 esac
|
cannam@154
|
200 }
|
cannam@154
|
201
|
cannam@154
|
202 give_advice "$1" | sed -e '1s/^/WARNING: /' \
|
cannam@154
|
203 -e '2,$s/^/ /' >&2
|
cannam@154
|
204
|
cannam@154
|
205 # Propagate the correct exit status (expected to be 127 for a program
|
cannam@154
|
206 # not found, 63 for a program that failed due to version mismatch).
|
cannam@154
|
207 exit $st
|
cannam@154
|
208
|
cannam@154
|
209 # Local variables:
|
cannam@154
|
210 # eval: (add-hook 'write-file-hooks 'time-stamp)
|
cannam@154
|
211 # time-stamp-start: "scriptversion="
|
cannam@154
|
212 # time-stamp-format: "%:y-%02m-%02d.%02H"
|
cannam@154
|
213 # time-stamp-time-zone: "UTC"
|
cannam@154
|
214 # time-stamp-end: "; # UTC"
|
cannam@154
|
215 # End:
|