3 # bootstrap (GNU M4) version 2007-09-24
4 # Written by Gary V. Vaughan <gary@gnu.org>
6 # Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
8 # This file is part of GNU M4.
10 # GNU M4 is free software: you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
15 # GNU M4 is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 # Usage: $progname [options]
25 # -f --force bootstrap even when sources are not from CVS
26 # -v --version print version information
27 # -h,-? --help print short or long help message
29 # You can also set the following variables to help $progname
30 # locate the right tools:
31 # AUTORECONF, GNULIB_TOOL, M4, RM, SED
33 # This script bootstraps a git or CVS checkout of GNU M4 by correctly
34 # calling out to parts of the GNU Build Platform. Currently this
35 # requires GNU Autoconf 2.60, GNU Automake 1.9.6, and bleeding edge
36 # git or CVS snapshots of GNU Gnulib.
38 # Report bugs to <bug-m4@gnu.org>
40 : ${AUTORECONF=autoreconf}
41 : ${GNULIB_TOOL=gnulib-tool}
45 # Ensure file names are sorted consistently across platforms.
54 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
55 # is ksh but when the shell is invoked as "sh" and the current value of
56 # the _XPG environment variable is not equal to 1 (one), the special
57 # positional parameter $0, within a function call, is the name of the
61 # The name of this program:
62 progname
=`echo "$progpath" | $SED "$basename"`
65 # Detect whether this is a CVS checkout or a tarball
69 # Echo program name prefixed message.
72 echo $progname: ${1+"$@"}
77 # Echo program name prefixed message to standard error.
80 echo $progname: ${1+"$@"} >&2
83 # func_fatal_error arg...
84 # Echo program name prefixed message to standard error, and exit.
92 # Echo program name prefixed message in verbose mode only.
95 $opt_verbose && func_error
${1+"$@"}
98 # func_missing_arg argname
99 # Echo program name prefixed message to standard error and set global
103 func_error
"missing argument for $1"
107 # func_fatal_help arg...
108 # Echo program name prefixed message to standard error, followed by
109 # a help hint, and exit.
113 func_fatal_error
"Try \`$progname --help' for more information."
116 # func_missing_arg argname
117 # Echo program name prefixed message to standard error and set global
121 func_error
"missing argument for $1"
126 # Echo short help message to standard output and exit.
129 $SED '/^# Usage:/,/# -h/ {
131 s/\$progname/'$progname'/;
135 echo "run \`$progname --help | more' for full usage"
140 # Echo long help message to standard output and exit.
143 $SED '/^# Usage:/,/# Report bugs to/ {
145 s/\$progname/'$progname'/;
152 # Echo version message to standard output and exit.
155 $SED '/^# '$PROGRAM' (GNU /,/# warranty; / {
157 s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/;
164 # Copy $1 to $2 if it is newer.
167 if test -f "$2" && cmp -s "$1" "$2" ; then
168 func_verbose
"$2 is up-to-date"
170 func_echo
"copying $1 -> $2"
175 # Parse options once, thoroughly. This comes as soon as possible in
176 # the script to make things like `bootstrap --version' happen quickly.
179 my_sed_single_opt
='1s/^\(..\).*$/\1/;q'
180 my_sed_single_rest
='1s/^..\(.*\)$/\1/;q'
181 my_sed_long_opt
='1s/^\(--[^=]*\)=.*/\1/;q'
182 my_sed_long_arg
='1s/^--[^=]*=//'
184 # this just eases exit handling
185 while test $# -gt 0; do
189 # Separate optargs to short options:
190 -f|
--force) CVS_only_file
= ;;
191 -\?|
-h) func_usage
;;
193 --version) func_version
;;
195 -*) func_fatal_help
"unrecognized option \`$opt'" ;;
196 *) set -- "$opt" ${1+"$@"}; break ;;
200 # Bail if the options were screwed
201 $exit_cmd $EXIT_FAILURE
203 if test -n "$CVS_only_file" && test ! -r "$CVS_only_file"; then
204 func_fatal_error
"Bootstrapping from a non-CVS distribution is risky."
208 ## ---------------- ##
209 ## Version control. ##
210 ## ---------------- ##
212 # gnulib-tool updates m4/.{git,cvs}ignore and lib/.{git,cvs}ignore, and
213 # keeping generated files under version control does not make sense.
214 # Since lib is entirely ignored, we only need to prepopulate the m4 ignore
215 # files with generated files not tracked by gnulib-tool.
216 if test -f $config_macro_dir/.gitignore
; then
219 func_echo
"creating initial $config_macro_dir/.cvsignore"
220 cat > $config_macro_dir/.cvsignore
<<\EOF
221 # files created by gnulib, but that gnulib doesn't track
226 # gnulib-tool edits below here
228 func_echo
"creating initial $config_macro_dir/.gitignore"
229 cp $config_macro_dir/.cvsignore
$config_macro_dir/.gitignore
232 ## ---------------------------- ##
233 ## Find the gnulib module tree. ##
234 ## ---------------------------- ##
237 /* ) gnulibdir
=$GNULIB_TOOL ;; # absolute
238 */* ) gnulibdir
=`pwd`/$GNULIB_TOOL ;; # relative
239 * ) gnulibdir
=`which "$GNULIB_TOOL"` ;; # PATH search
243 while test -h "$gnulibdir"; do
245 # Resolve symbolic link.
246 sedexpr1
='s, -> ,#%%#,'
247 sedexpr2
='s,^.*#%%#\(.*\)$,\1,p'
248 linkval
=`ls -l "$gnulibdir" | $SED "$sedexpr1" | $SED -n "$sedexpr2"`
249 test -n "$linkval" ||
break
252 /* ) gnulibdir
="$linkval" ;;
253 * ) gnulibdir
=`echo "$gnulibdir" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
258 gnulibdir
=`echo "$gnulibdir" | $SED "$dirname"`
260 ## ---------------------- ##
261 ## Import Gnulib modules. ##
262 ## ---------------------- ##
264 func_echo
"running: $GNULIB_TOOL --update"
265 $GNULIB_TOOL --update || func_fatal_error
"gnulib-tool failed"
271 func_echo
"running: $AUTORECONF --force --verbose --install"
272 $AUTORECONF --force --verbose --install || func_fatal_error
"autoreconf failed"
274 ## ---------------------------------------- ##
275 ## Gnulib is more up-to-date than automake. ##
276 ## ---------------------------------------- ##
278 func_update
"$gnulibdir"/build-aux
/config.guess config.guess
279 func_update
"$gnulibdir"/build-aux
/config.sub config.sub
280 func_update
"$gnulibdir"/build-aux
/depcomp depcomp
281 func_update
"$gnulibdir"/build-aux
/install-sh install-sh
282 func_update
"$gnulibdir"/build-aux
/mdate-sh
doc
/mdate-sh
283 func_update
"$gnulibdir"/build-aux
/missing missing
284 func_update
"$gnulibdir"/build-aux
/texinfo.tex
doc
/texinfo.tex
285 func_update
"$gnulibdir"/doc
/COPYINGv3 COPYING
286 func_update
"$gnulibdir"/doc
/INSTALL INSTALL
291 # eval: (add-hook 'write-file-hooks 'time-stamp)
292 # time-stamp-start: "# bootstrap (GNU M4) version "
293 # time-stamp-format: "%:y-%02m-%02d"
294 # time-stamp-end: "$"