]>
git.saurik.com Git - bison.git/blob - bootstrap
3 # Bootstrap this package from CVS.
5 # Copyright (C) 2003, 2004, 2005, 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA
22 # Written by Paul Eggert.
26 # Translation Project URL, for the registry of all projects.
27 TP_URL
='http://www.iro.umontreal.ca/translation/registry.cgi?domain='
29 # Ensure file names are sorted consistently across platforms;
30 # e.g., m4/ulonglong_gl.m4 should follow m4/ulonglong.m4.
31 # Also, ensure diagnostics are in English, e.g., "wget --help" below.
41 echo "$0: usage: $0 [--gnulib-srcdir=DIR] [--cvs-user=USERNAME] [--skip-po]"
44 GNULIB_SRCDIR
=`expr "$option" : '--gnulib-srcdir=\(.*\)'`;;
46 CVS_USER
=`expr "$option" : '--cvs-user=\(.*\)'`;;
50 echo >&2 "$0: $option: unknown option"
55 echo "$0: Bootstrapping CVS $package..."
65 case ${GNULIB_SRCDIR--} in
67 if [ ! -d gnulib
]; then
68 echo "$0: getting gnulib files..."
70 case ${CVS_AUTH-pserver} in
72 CVS_PREFIX
=':pserver:anonymous@';;
74 CVS_PREFIX
="$CVS_USER${CVS_USER+@}";;
76 echo "$0: $CVS_AUTH: Unknown CVS access method" >&2
81 '') export CVS_RSH
=ssh;;
84 trap cleanup_gnulib
1 2 13 15
86 cvs
-z3 -q -d ${CVS_PREFIX}cvs.savannah.gnu.org
:/cvsroot
/gnulib co gnulib
||
94 <$GNULIB_SRCDIR/gnulib
-tool || exit
124 previous_gnulib_modules
=
125 while [ "$gnulib_modules" != "$previous_gnulib_modules" ]; do
126 previous_gnulib_modules
=$gnulib_modules
128 (echo "$gnulib_modules"
129 for gnulib_module in $gnulib_modules; do
130 $GNULIB_SRCDIR/gnulib-tool --extract-dependencies $gnulib_module
136 (for gnulib_module in $gnulib_modules; do
137 $GNULIB_SRCDIR/gnulib-tool --extract-filelist $gnulib_module
141 gnulib_dirs
=`echo "$gnulib_files" | sed 's,/[^/]*$,,' | sort -u`
142 mkdir -p $gnulib_dirs || exit
144 for gnulib_file
in $gnulib_files; do
148 m
4/onceonly_2_57.
m4) dest
=m
4/onceonly.
m4;;
149 # These will be overwritten by autopoint, which still uses
150 # old jm_.* macro names, so we have to keep both copies.
151 # m4/gettext.m4 isn't mentioned here, since it's patched below.
152 m
4/glibc21.
m4 | m
4/inttypes_h.
m4 | m
4/lib
-ld.
m4 | \
153 m
4/lib
-prefix.
m4 | m
4/po.
m4 | m
4/stdint_h.
m4 | m
4/uintmax_t.
m4 | \
155 dest
=`expr $gnulib_file : '\(.*\).m4'`_gl.
m4;;
159 echo "$0: Copying file $GNULIB_SRCDIR/$gnulib_file" &&
160 cp -p $GNULIB_SRCDIR/$gnulib_file $dest || exit
163 # This suppresses a bogus diagnostic
164 # "warning: macro `AM_LANGINFO_CODESET' not found in library".
165 echo "$0: patching m4/gettext.m4 so that AM_INTL_SUBDIR is empty ..."
167 /^AC_DEFUN(\[AM_INTL_SUBDIR],/,/^]/c\
168 AC_DEFUN([AM_INTL_SUBDIR], [])
169 ' m
4/gettext.
m4 >m
4/gettext_gl.
m4 || exit
178 echo "$0: getting translations into $subdir for $domain..."
179 (cd $subdir && rm -f dummy
`ls | sed -n '/\.gmo$/p; /\.po/p'`) &&
181 $WGET_COMMAND -O "$subdir/$domain.html" "$TP_URL$domain" &&
183 sed -n 's|.*"http://[^"]*/translation/teams/PO/\([^/"]*\)/'"$domain"'-\([^/"]*\)\.[^."]*\.po".*|\1.\2|p' <"$subdir/$domain.html" |
184 sort -k 1,1 -k 2,2n
-k2,2 -k3,3n
-k3,3 -k4,4n
-k4,4 -k5,5n
-k5.5
|
186 { if (lang && $1 != lang) print lang, ver }
187 { lang = $1; ver = substr($0, index($0, ".") + 1) }
188 END { if (lang) print lang, ver }
189 ' | awk -v domain
="$domain" -v subdir
="$subdir" '
194 printf "$WGET_COMMAND -O %s/%s.po 'http
://www.iro.umontreal.ca
/translation
/teams
/PO
/%s
/%s
-%s.
%s.po
' &&\n", subdir, lang, lang, domain, ver, lang
198 ls "$subdir"/*.po
| sed 's|.*/||; s|\.po$||' >"$subdir/LINGUAS" &&
199 rm "$subdir/$domain.html"
204 case `wget --help` in
206 no_cache
='--no-cache';;
208 no_cache
='--cache=off';;
213 WGET_COMMAND
="wget -nv $no_cache"
216 get_translations po
$package || exit
220 get_translations runtime
-po $package-runtime || exit
225 # Generate autoconf and automake snippets.
227 (echo '# This file is generated automatically by "bootstrap".' &&
228 echo 'AC_DEFUN([GNULIB_AUTOCONF_SNIPPET],[' &&
229 $GNULIB_SRCDIR/gnulib
-tool --extract-autoconf-snippet $gnulib_modules &&
231 ) >m
4/gnulib.
m4 || exit
233 (echo '# This file is generated automatically by "bootstrap".' &&
234 $GNULIB_SRCDIR/gnulib
-tool --extract-automake-snippet $gnulib_modules |
235 sed 's/^[ ]*AM_CPPFLAGS[ ]*+=/# (commented out by bootstrap) &/'
236 ) >lib
/gnulib.mk
|| exit
239 # Reconfigure, getting other files.
241 echo "$0: autoreconf --verbose --install --force ..."
242 autoreconf
--verbose --install --force || exit
245 # We don't need intl, so remove it.
246 # Remove aclocal.m4 too, so that it gets rebuilt.
247 intl_files_to_remove
='
276 echo $0: rm -fr $intl_files_to_remove ...
277 rm -fr $intl_files_to_remove || exit
279 # Undo changes to gnulib files that autoreconf made.
280 for gnulib_file
in $gnulib_files; do
281 test ! -f $gnulib_file || cmp -s $gnulib_file $GNULIB_SRCDIR/$gnulib_file || {
282 rm -f $gnulib_file &&
283 echo "$0: Copying file $GNULIB_SRCDIR/$gnulib_file again" &&
284 cp -p $GNULIB_SRCDIR/$gnulib_file $gnulib_file || exit
288 # Put bug-reporting address into po/Makevars.
289 echo "$0: sed '/^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-bison@gnu.org/' po/Makevars.template >po/Makevars ..."
290 sed '/^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-bison@gnu.org/' po
/Makevars.template
>po
/Makevars
292 # Likewise for runtime-po/Makevars, except also change a few other parameters.
294 s/^\(DOMAIN\) *=.*/\1 = bison-runtime/
295 s/^\(subdir\) *=.*/\1 = runtime-po/
296 s/^\(XGETTEXT_OPTIONS\) *=.*/\1 = --keyword=YY_/
297 ' <po
/Makevars
>runtime
-po/Makevars
299 # Copy identical files from po to runtime-po.
300 (cd po
&& cp -p Makefile.
in.
in *-quot *.header
*.
sed *.sin ..
/runtime
-po)
302 # if src/parse-gram.[ch] are out of date, rebuild them.
303 parse_gram_y
=`find src/parse-gram.y \
304 '(' -newer src/parse-gram.c -o -newer src/parse-gram.h ')' \
306 case $parse_gram_y in
308 echo "$0: warning: bootstrapping with old src/parse-gram.[ch] files."
310 echo "$0: touch -c src/parse-gram.[ch] ... "
311 touch -c src
/parse
-gram.
[ch
] || exit
313 echo "$0: ./configure --disable-nls ..."
314 .
/configure
--disable-nls || exit
316 echo "$0: (cd lib && make) ..."
317 (cd lib
&& make) || exit
319 echo "$0: (cd src && make) ..."
320 (cd src
&& make) || exit
322 echo "$0: rm -f src/parse-gram.c src/parse-gram.h ..."
323 rm -f src
/parse
-gram.c src
/parse
-gram.h
|| exit
325 echo "$0: (cd src && make parse-gram.c parse-gram.h) ..."
326 (cd src
&& make parse
-gram.c parse
-gram.h
) || exit
328 echo "$0: make distclean ..."
329 make distclean
|| exit;;
332 echo "$0: done. Now you can run './configure'."