]>
git.saurik.com Git - bison.git/blob - bootstrap
3 # Bootstrap this package from CVS.
5 # Copyright (C) 2003, 2004 Free Software Foundation, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22 # Written by Paul Eggert.
26 # Ensure file names are sorted consistently across platforms;
27 # e.g., m4/ulonglong_gl.m4 should follow m4/ulonglong.m4.
37 echo "$0: usage: $0 [--gnulib-srcdir=DIR] [--cvs-user=USERNAME] [--skip-po]"
40 GNULIB_SRCDIR
=`expr "$option" : '--gnulib-srcdir=\(.*\)'`;;
42 CVS_USER
=`expr "$option" : '--cvs-user=\(.*\)'`;;
46 echo >&2 "$0: $option: unknown option"
51 echo "$0: Bootstrapping CVS $package..."
55 if [ "${2}" != - ]; then
56 CVS_PREFIX
=${CVS_PREFIX}${2}@
62 case ${GNULIB_SRCDIR--} in
64 if [ ! -d gnulib
]; then
65 echo "$0: getting gnulib files..."
68 trap 'rm -fr gnulib; exit 1' 0
70 case ${CVS_AUTH-anoncvs} in
72 CVS_PREFIX
='anoncvs@';;
74 CVS_PREFIX
="$CVS_USER${CVS_USER+@}";;
76 echo "$0: $CVS_AUTH: Unknown CVS access method" >&2
81 '') export CVS_RSH
=ssh;;
84 cvs
-z3 -q -d ${CVS_PREFIX}subversions.gnu.org
:/cvsroot
/gnulib co gnulib
|| exit
91 <$GNULIB_SRCDIR/gnulib
-tool || exit
113 previous_gnulib_modules
=
114 while [ "$gnulib_modules" != "$previous_gnulib_modules" ]; do
115 previous_gnulib_modules
=$gnulib_modules
117 (echo "$gnulib_modules"
118 for gnulib_module in $gnulib_modules; do
119 $GNULIB_SRCDIR/gnulib-tool --extract-dependencies $gnulib_module
125 (for gnulib_module in $gnulib_modules; do
126 $GNULIB_SRCDIR/gnulib-tool --extract-filelist $gnulib_module
130 gnulib_dirs
=`echo "$gnulib_files" | sed 's,/[^/]*$,,' | sort -u`
131 mkdir -p $gnulib_dirs || exit
133 for gnulib_file
in $gnulib_files; do
137 m
4/onceonly_2_57.
m4) dest
=m
4/onceonly.
m4;;
138 # These will be overwritten by autopoint, which still uses
139 # old jm_.* macro names, so we have to keep both copies.
140 # m4/gettext.m4 isn't mentioned here, since it's patched below.
141 m
4/glibc21.
m4 | m
4/inttypes_h.
m4 | m
4/lib
-ld.
m4 | \
142 m
4/lib
-prefix.
m4 | m
4/po.
m4 | m
4/stdint_h.
m4 | m
4/uintmax_t.
m4 | \
144 dest
=`expr $gnulib_file : '\(.*\).m4'`_gl.
m4;;
148 echo "$0: Copying file $GNULIB_SRCDIR/$gnulib_file" &&
149 cp -p $GNULIB_SRCDIR/$gnulib_file $dest || exit
152 echo "$0: patching m4/gettext.m4 so that AM_INTL_SUBDIR is empty ..."
154 /^AC_DEFUN(\[AM_INTL_SUBDIR],/,/^]/c\
155 AC_DEFUN([AM_INTL_SUBDIR], [])
156 ' m
4/gettext.
m4 >m
4/gettext_gl.
m4 || exit
163 echo "$0: getting translations into po (please ignore the robots.txt ERROR 404)..."
165 rm -f dummy
`ls | sed -n '/\.gmo$/p; /\.po/p'` &&
166 wget
-nv -nd -r -l 1 -A .po
-C off \
167 http
://www2.iro.umontreal.ca
/~gnutra
/po
/maint
/$package/ &&
168 ls *.po
| sed 's/\.po$//' >LINGUAS
173 # Generate autoconf and automake snippets.
175 (echo '# This file is generated automatically by "bootstrap".' &&
176 echo 'AC_DEFUN([GNULIB_AUTOCONF_SNIPPET],[' &&
177 $GNULIB_SRCDIR/gnulib
-tool --extract-autoconf-snippet $gnulib_modules &&
179 ) >m
4/gnulib.
m4 || exit
181 (echo '# This file is generated automatically by "bootstrap".' &&
182 $GNULIB_SRCDIR/gnulib
-tool --extract-automake-snippet $gnulib_modules
183 ) >lib
/gnulib.mk
|| exit
186 # Reconfigure, getting other files.
188 echo "$0: autoreconf --verbose --install --force ..."
189 autoreconf
--verbose --install --force || exit
192 # We don't need intl, so remove it.
193 # Remove aclocal.m4 too, so that it gets rebuilt.
194 intl_files_to_remove
='
222 echo $0: rm -fr $intl_files_to_remove ...
223 rm -fr $intl_files_to_remove || exit
225 # Patch what appears to be a bug in gettext 0.14.1;
226 # remove this once the bug is fixed.
227 grep @top_builddir@ po
/Makefile.
in.
in >/dev
/null
|| {
228 echo "$0: prepending 'top_builddir=@top_builddir@' to po/Makefile.in.in ... "
229 old_contents
=`cat po/Makefile.in.in` || exit
230 cat >po
/Makefile.
in.
in <<EOF
231 top_builddir=@top_builddir@
236 # Put bug-reporting address into po/Makevars.
237 echo "$0: sed '/^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-bison@gnu.org/' po/Makevars.template >po/Makevars ..."
238 sed '/^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-bison@gnu.org/' po
/Makevars.template
>po
/Makevars
241 # if src/parse-gram.[ch] are out of date, rebuild them.
242 parse_gram_y
=`find src/parse-gram.y \
243 '(' -newer src/parse-gram.c -o -newer src/parse-gram.h ')' \
245 case $parse_gram_y in
247 echo "$0: warning: bootstrapping with old src/parse-gram.[ch] files."
249 echo "$0: touch -c src/parse-gram.[ch] ... "
250 touch -c src
/parse
-gram.
[ch
] || exit
252 echo "$0: ./configure --disable-nls ..."
253 .
/configure
--disable-nls || exit
255 echo "$0: (cd lib && make) ..."
256 (cd lib
&& make) || exit
258 echo "$0: (cd src && make) ..."
259 (cd src
&& make) || exit
261 echo "$0: rm -f src/parse-gram.c src/parse-gram.h ..."
262 rm -f src
/parse
-gram.c src
/parse
-gram.h
|| exit
264 echo "$0: (cd src && make parse-gram.c parse-gram.h) ..."
265 (cd src
&& make parse
-gram.c parse
-gram.h
) || exit
267 echo "$0: make distclean ..."
268 make distclean
|| exit;;
271 echo "$0: done. Now you can run './configure'."