3 # Bootstrap this package from checked-out sources.
5 # Copyright (C) 2003-2009 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 3 of the License, or
10 # (at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
20 # Written by Paul Eggert.
25 # Ensure file names are sorted consistently across platforms.
31 # Temporary directory names.
33 bt_regex
=`echo "$bt"| sed 's/\./[.]/g'`
39 Bootstrap this package from the checked-out sources.
42 --gnulib-srcdir=DIRNAME Specify the local directory where gnulib
43 sources reside. Use this if you already
44 have gnulib sources on your machine, and
45 do not want to waste your bandwidth downloading
47 --copy Copy files instead of creating symbolic links.
48 --force Attempt to bootstrap even if the sources seem
49 not to have been checked out.
50 --skip-po Do not download po files.
52 If the file $0.conf exists in the same directory as this script, its
53 contents are read as shell variables to configure the bootstrap.
55 For build prerequisites, environment variables like \$AUTOCONF and \$AMTAR
58 Running without arguments will suffice in most cases.
64 # Name of the Makefile.am
67 # List of gnulib modules needed.
70 # Any gnulib files needed that are not in modules.
73 # A function to be called after everything else in this script.
74 # Override it via your own definition in bootstrap.conf.
75 bootstrap_epilogue
() { :; }
77 # The command to download all .po files for a specified domain into
78 # a specified directory. Fill in the first %s is the domain name, and
79 # the second with the destination directory. Use rsync's -L and -r
80 # options because the latest/%s directory and the .po files within are
82 po_download_command_format
=\
83 "rsync -Lrtvz 'translationproject.org::tp/latest/%s/' '%s'"
85 extract_package_name
='
97 y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
102 package
=`sed -n "$extract_package_name" configure.ac` ||
exit
103 gnulib_name
=lib
$package
111 # Extra files from gnulib, which override files from other sources.
113 $build_aux/install-sh
116 $build_aux/texinfo.tex
118 $build_aux/config.guess
119 $build_aux/config.sub
123 # Additional gnulib-tool options to use. Use "\newline" to break lines.
124 gnulib_tool_option_extras
=
126 # Other locale categories that need message catalogs.
127 EXTRA_LOCALE_CATEGORIES
=
129 # Additional xgettext options to use. Use "\\\newline" to break lines.
130 XGETTEXT_OPTIONS
='\\\
131 --flag=_:1:pass-c-format\\\
132 --flag=N_:1:pass-c-format\\\
133 --flag=error:3:c-format --flag=error_at_line:5:c-format\\\
136 # Package bug report address for gettext files
137 MSGID_BUGS_ADDRESS
=bug-
$package@gnu.org
139 # Files we don't want to import.
142 # File that should exist in the top directory of a checked out hierarchy,
143 # but not in a distribution tarball.
144 checkout_only_file
=README-hacking
146 # Whether to use copies instead of symlinks.
149 # Set this to '.cvsignore .gitignore' in bootstrap.conf if you want
150 # those files to be generated in directories like lib/, m4/, and po/.
151 # Or set it to 'auto' to make this script select which to use based
152 # on which version control system (if any) is used in the source directory.
155 # find_tool ENVVAR NAMES...
156 # -------------------------
157 # Search for a required program. Use the value of ENVVAR, if set,
158 # otherwise find the first of the NAMES that can be run (i.e.,
159 # supports --version). If found, set ENVVAR to the program name,
163 # Find sha1sum, named gsha1sum on MacPorts.
167 eval "find_tool_res=\$$find_tool_envvar"
168 if test x
"$find_tool_res" = x
; then
171 if ($i --version </dev
/null
) >/dev
/null
2>&1; then
177 find_tool_error_prefix
="\$$find_tool_envvar: "
179 if test x
"$find_tool_res" = x
; then
180 echo >&2 "$0: one of these is required: $find_tool_names"
183 ($find_tool_res --version </dev
/null
) >/dev
/null
2>&1 ||
{
184 echo >&2 "$0: ${find_tool_error_prefix}cannot run $find_tool_res --version"
187 eval "$find_tool_envvar=\$find_tool_res"
188 eval "export $find_tool_envvar"
191 # Find sha1sum, named gsha1sum on MacPorts.
192 find_tool SHA1SUM
sha1sum gsha1sum
194 # Override the default configuration, if necessary.
195 # Make sure that bootstrap.conf is sourced from the current directory
196 # if we were invoked as "sh bootstrap".
198 */*) test -r "$0.conf" && .
"$0.conf" ;;
199 *) test -r "$0.conf" && . .
/"$0.conf" ;;
203 if test "$vc_ignore" = auto
; then
205 test -d .git
&& vc_ignore
=.gitignore
206 test -d CVS
&& vc_ignore
="$vc_ignore .cvsignore"
209 # Translate configuration into internal form.
220 GNULIB_SRCDIR
=`expr "X$option" : 'X--gnulib-srcdir=\(.*\)'`;;
224 checkout_only_file
=;;
228 echo >&2 "$0: $option: unknown option"
233 if test -n "$checkout_only_file" && test ! -r "$checkout_only_file"; then
234 echo "$0: Bootstrapping from a non-checked-out distribution is risky." >&2
238 # If $STR is not already on a line by itself in $FILE, insert it,
239 # sorting the new contents of the file and replacing $FILE with the result.
240 insert_sorted_if_absent
() {
243 test -f $file ||
touch $file
244 echo "$str" |
sort -u - $file |
cmp - $file > /dev
/null \
245 ||
echo "$str" |
sort -u - $file -o $file \
249 # Die if there is no AC_CONFIG_AUX_DIR($build_aux) line in configure.ac.
251 grep '^[ ]*AC_CONFIG_AUX_DIR(\['"$build_aux"'\])' configure.ac \
252 >/dev
/null
&& found_aux_dir
=yes
253 grep '^[ ]*AC_CONFIG_AUX_DIR('"$build_aux"')' configure.ac \
254 >/dev
/null
&& found_aux_dir
=yes
255 if test $found_aux_dir = no
; then
256 echo "$0: expected line not found in configure.ac. Add the following:" >&2
257 echo " AC_CONFIG_AUX_DIR([$build_aux])" >&2
261 # If $build_aux doesn't exist, create it now, otherwise some bits
262 # below will malfunction. If creating it, also mark it as ignored.
263 if test ! -d $build_aux; then
265 for dot_ig
in x
$vc_ignore; do
266 test $dot_ig = x
&& continue
267 insert_sorted_if_absent
$dot_ig $build_aux
271 # Note this deviates from the version comparison in automake
272 # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a
273 # but this should suffice as we won't be specifying old
274 # version formats or redundant trailing .0 in bootstrap.conf.
275 # If we did want full compatibility then we should probably
276 # use m4_version_compare from autoconf.
277 sort_ver
() { # sort -V is not generally available
281 # split on '.' and compare each component
284 p1
=$
(echo "$ver1" | cut
-d.
-f$i)
285 p2
=$
(echo "$ver2" | cut
-d.
-f$i)
289 elif [ ! "$p2" ]; then
292 elif [ ! "$p1" = "$p2" ]; then
293 if [ "$p1" -gt "$p2" ] 2>/dev
/null
; then # numeric comparison
295 elif [ "$p2" -gt "$p1" ] 2>/dev
/null
; then # numeric comparison
297 else # numeric, then lexicographic comparison
298 lp=$
(printf "$p1\n$p2\n" | LANG
=C
sort -n |
tail -n1)
299 if [ "$lp" = "$p2" ]; then
314 $app --version >/dev
/null
2>&1 ||
return 1
316 $app --version 2>&1 |
317 sed -n 's/[^0-9.]*\([0-9]\{1,\}\.[.a-z0-9-]*\).*/\1/p
327 while read app req_ver
; do
328 # Honor $APP variables ($TAR, $AUTOCONF, etc.)
329 appvar
=`echo $app | tr '[a-z]' '[A-Z]'`
330 test "$appvar" = TAR
&& appvar
=AMTAR
331 eval "app=\${$appvar-$app}"
332 inst_ver
=$
(get_version
$app)
333 if [ ! "$inst_ver" ]; then
334 echo "Error: '$app' not found" >&2
336 elif [ ! "$req_ver" = "-" ]; then
337 latest_ver
=$
(sort_ver
$req_ver $inst_ver | cut
-d' ' -f2)
338 if [ ! "$latest_ver" = "$inst_ver" ]; then
339 echo "Error: '$app' version == $inst_ver is too old" >&2
340 echo " '$app' version >= $req_ver is required" >&2
350 echo "Program Min_version"
351 echo "----------------------"
353 echo "----------------------"
354 # can't depend on column -t
357 if ! printf "$buildreq" | check_versions
; then
358 test -f README-prereq
&&
359 echo "See README-prereq for notes on obtaining these prerequisite programs:" >&2
365 echo "$0: Bootstrapping from checked-out $package sources..."
367 # See if we can use gnulib's git-merge-changelog merge driver.
368 if test -d .git
&& (git
--version) >/dev
/null
2>/dev
/null
; then
369 if git config merge.merge-changelog.driver
>/dev
/null
; then
371 elif (git-merge-changelog
--version) >/dev
/null
2>/dev
/null
; then
372 echo "initializing git-merge-changelog driver"
373 git config merge.merge-changelog.name
'GNU-style ChangeLog merge driver'
374 git config merge.merge-changelog.driver
'git-merge-changelog %O %A %B'
376 echo "consider installing git-merge-changelog from gnulib"
387 git_modules_config
() {
388 test -f .gitmodules
&& git config
--file .gitmodules
"$@"
393 case ${GNULIB_SRCDIR--} in
395 if git_modules_config submodule.gnulib.url
>/dev
/null
; then
396 echo "$0: getting gnulib files..."
397 git submodule init ||
exit $?
398 git submodule update ||
exit $?
400 elif [ ! -d gnulib
]; then
401 echo "$0: getting gnulib files..."
403 trap cleanup_gnulib
1 2 13 15
405 git clone
--help|
grep depth
> /dev
/null
&& shallow
='--depth 2' || shallow
=
406 git clone
$shallow git
://git.sv.gnu.org
/gnulib ||
414 # Redirect the gnulib submodule to the directory on the command line
416 if test -d "$GNULIB_SRCDIR"/.git
&& \
417 git_modules_config submodule.gnulib.url
>/dev
/null
; then
419 GNULIB_SRCDIR
=`cd $GNULIB_SRCDIR && pwd`
420 git_modules_config
--replace-all submodule.gnulib.url
$GNULIB_SRCDIR
421 echo "$0: getting gnulib files..."
422 git submodule update ||
exit $?
428 gnulib_tool
=$GNULIB_SRCDIR/gnulib-tool
429 <$gnulib_tool ||
exit
433 download_po_files
() {
436 echo "$0: getting translations into $subdir for $domain..."
437 cmd
=`printf "$po_download_command_format" "$domain" "$subdir"`
441 # Download .po files to $po_dir/.reference and copy only the new
442 # or modified ones into $po_dir. Also update $po_dir/LINGUAS.
444 # Directory containing primary .po files.
445 # Overwrite them only when we're sure a .po file is new.
449 # Download *.po files into this dir.
450 # Usually contains *.s1 checksum files.
451 ref_po_dir
="$po_dir/.reference"
453 test -d $ref_po_dir || mkdir
$ref_po_dir ||
return
454 download_po_files
$ref_po_dir $domain \
455 && ls "$ref_po_dir"/*.po
2>/dev
/null |
456 sed 's|.*/||; s|\.po$||' > "$po_dir/LINGUAS"
458 langs
=`cd $ref_po_dir && echo *.po|sed 's/\.po//g'`
459 test "$langs" = '*' && langs
=x
461 case $po in x
) continue;; esac
462 new_po
="$ref_po_dir/$po.po"
463 cksum_file
="$ref_po_dir/$po.s1"
464 if ! test -f "$cksum_file" ||
465 ! test -f "$po_dir/$po.po" ||
466 ! $SHA1SUM -c --status "$cksum_file" \
467 < "$new_po" > /dev
/null
; then
468 echo "updated $po_dir/$po.po..."
469 cp "$new_po" "$po_dir/$po.po" \
470 && $SHA1SUM < "$new_po" > "$cksum_file"
478 update_po_files po
$package ||
exit
481 if test -d runtime-po
; then
482 update_po_files runtime-po
$package-runtime ||
exit
493 # If the destination directory doesn't exist, create it.
494 # This is required at least for "lib/uniwidth/cjk.h".
495 dst_dir
=`dirname "$dst"`
496 if ! test -d "$dst_dir"; then
499 # If we've just created a directory like lib/uniwidth,
500 # tell version control system(s) it's ignorable.
501 # FIXME: for now, this does only one level
502 parent
=`dirname "$dst_dir"`
503 for dot_ig
in x
$vc_ignore; do
504 test $dot_ig = x
&& continue
506 insert_sorted_if_absent
$ig `echo "$dst_dir"|sed 's,.*/,,'`
512 test ! -h "$dst" ||
{
513 echo "$0: rm -f $dst" &&
518 cmp -s "$src" "$dst" ||
{
519 echo "$0: cp -fp $src $dst" &&
524 src_ls
=`ls -diL "$src" 2>/dev/null` && set $src_ls && src_i
=$1 &&
525 dst_ls
=`ls -diL "$dst" 2>/dev/null` && set $dst_ls && dst_i
=$1 &&
526 test "$src_i" = "$dst_i" ||
{
532 *//* |
*/..
/* |
*/.
/* |
/*/*/*/*/*/)
533 echo >&2 "$0: invalid symlink calculation: $src -> $dst"
535 /*/*/*/*/) dot_dots
=..
/..
/..
/;;
536 /*/*/*/) dot_dots
=..
/..
/;;
537 /*/*/) dot_dots
=..
/;;
541 echo "$0: ln -fs $dot_dots$src $dst" &&
542 ln -fs "$dot_dots$src" "$dst"
548 cp_mark_as_generated
()
553 if cmp -s "$cp_src" "$GNULIB_SRCDIR/$cp_dst"; then
554 symlink_to_dir
"$GNULIB_SRCDIR" "$cp_dst"
555 elif cmp -s "$cp_src" "$local_gl_dir/$cp_dst"; then
556 symlink_to_dir
$local_gl_dir "$cp_dst"
559 *.
[ch
]) c1
='/* '; c2
=' */';;
560 *.texi
) c1
='@c '; c2
= ;;
561 *.
m4|
*/Make
*|Make
*) c1
='# ' ; c2
= ;;
565 # If the destination directory doesn't exist, create it.
566 # This is required at least for "lib/uniwidth/cjk.h".
567 dst_dir
=`dirname "$cp_dst"`
568 test -d "$dst_dir" || mkdir
-p "$dst_dir"
570 if test -z "$c1"; then
571 cmp -s "$cp_src" "$cp_dst" ||
{
572 # Copy the file first to get proper permissions if it
573 # doesn't already exist. Then overwrite the copy.
574 echo "$0: cp -f $cp_src $cp_dst" &&
576 cp "$cp_src" "$cp_dst-t" &&
577 sed "s!$bt_regex/!!g" "$cp_src" > "$cp_dst-t" &&
578 mv -f "$cp_dst-t" "$cp_dst"
581 # Copy the file first to get proper permissions if it
582 # doesn't already exist. Then overwrite the copy.
583 cp "$cp_src" "$cp_dst-t" &&
585 echo "$c1-*- buffer-read-only: t -*- vi: set ro:$c2" &&
586 echo "${c1}DO NOT EDIT! GENERATED AUTOMATICALLY!$c2" &&
588 sed "s!$bt_regex/!!g" "$cp_src"
590 if cmp -s "$cp_dst-t" "$cp_dst"; then
593 echo "$0: cp $cp_src $cp_dst # with edits" &&
594 mv -f "$cp_dst-t" "$cp_dst"
600 version_controlled_file
() {
605 grep -F "/$file/" $dir/CVS
/Entries
2>/dev
/null |
606 grep '^/[^/]*/[0-9]' > /dev
/null
&& found
=yes
607 elif test -d .git
; then
608 git
rm -n "$dir/$file" > /dev
/null
2>&1 && found
=yes
609 elif test -d .svn
; then
610 svn log
-r HEAD
"$dir/$file" > /dev
/null
2>&1 && found
=yes
612 echo "$0: no version control for $dir/$file?" >&2
618 for dir
in .
`(cd $1 && find * -type d -print)`; do
621 for file in `ls -a $1/$dir`; do
624 .
*) continue;; # FIXME: should all file names starting with "." be ignored?
626 test -d $1/$dir/$file && continue
627 for excluded_file
in $excluded_files; do
628 test "$dir/$file" = "$excluded_file" && continue 2
630 if test $file = Makefile.am
; then
631 copied
=$copied${sep}$gnulib_mk; sep
=$nl
632 remove_intl
='/^[^#].*\/intl/s/^/#/;'"s!$bt_regex/!!g"
633 sed "$remove_intl" $1/$dir/$file |
cmp - $dir/$gnulib_mk > /dev
/null ||
{
634 echo "$0: Copying $1/$dir/$file to $dir/$gnulib_mk ..." &&
635 rm -f $dir/$gnulib_mk &&
636 sed "$remove_intl" $1/$dir/$file >$dir/$gnulib_mk
638 elif { test "${2+set}" = set && test -r $2/$dir/$file; } ||
639 version_controlled_file
$dir $file; then
640 echo "$0: $dir/$file overrides $1/$dir/$file"
642 copied
=$copied$sep$file; sep
=$nl
643 if test $file = gettext.
m4; then
644 echo "$0: patching m4/gettext.m4 to remove need for intl/* ..."
647 /^AC_DEFUN(\[AM_INTL_SUBDIR],/,/^]/c\
648 AC_DEFUN([AM_INTL_SUBDIR], [
649 /^AC_DEFUN(\[gt_INTL_SUBDIR_CORE],/,/^]/c\
650 AC_DEFUN([gt_INTL_SUBDIR_CORE], [])
652 AC_DEFUN([gl_LOCK_EARLY], [])
653 ' $1/$dir/$file >$dir/$file
655 cp_mark_as_generated
$1/$dir/$file $dir/$file
660 for dot_ig
in x
$vc_ignore; do
661 test $dot_ig = x
&& continue
663 if test -n "$copied"; then
664 insert_sorted_if_absent
$ig "$copied"
665 # If an ignored file name ends with .in.h, then also add
666 # the name with just ".h". Many gnulib headers are generated,
667 # e.g., stdint.in.h -> stdint.h, dirent.in.h ->..., etc.
668 # Likewise for .gperf -> .h, .y -> .c, and .sin -> .sed
669 f
=`echo "$copied"|sed 's/\.in\.h$/.h/;s/\.sin$/.sed/;s/\.y$/.c/;s/\.gperf$/.h/'`
670 insert_sorted_if_absent
$ig "$f"
672 # For files like sys_stat.in.h and sys_time.in.h, record as
673 # ignorable the directory we might eventually create: sys/.
674 f
=`echo "$copied"|sed 's/sys_.*\.in\.h$/sys/'`
675 insert_sorted_if_absent
$ig "$f"
682 # Create boot temporary directories to import from gnulib and gettext.
684 mkdir
$bt $bt2 ||
exit
686 # Import from gnulib.
688 gnulib_tool_options
="\
691 --aux-dir $bt/$build_aux\
692 --doc-base $bt/$doc_base\
694 --m4-base $bt/$m4_base/\
695 --source-base $bt/$source_base/\
696 --tests-base $bt/$tests_base\
697 --local-dir $local_gl_dir\
698 $gnulib_tool_option_extras\
700 echo "$0: $gnulib_tool $gnulib_tool_options --import ..."
701 $gnulib_tool $gnulib_tool_options --import $gnulib_modules &&
704 for file in $gnulib_files; do
705 symlink_to_dir
"$GNULIB_SRCDIR" $file ||
exit
709 # Import from gettext.
711 grep '^[ ]*AM_GNU_GETTEXT_VERSION(' configure.ac
>/dev
/null || \
714 if test $with_gettext = yes; then
715 echo "$0: (cd $bt2; ${AUTOPOINT-autopoint}) ..."
716 cp configure.ac
$bt2 &&
717 (cd $bt2 && ${AUTOPOINT-autopoint} && rm configure.ac
) &&
718 slurp
$bt2 $bt ||
exit
720 rm -fr $bt $bt2 ||
exit
722 # Remove any dangling symlink matching "*.m4" or "*.[ch]" in some
723 # gnulib-populated directories. Such .m4 files would cause aclocal to fail.
724 # The following requires GNU find 4.2.3 or newer. Considering the usual
725 # portability constraints of this script, that may seem a very demanding
726 # requirement, but it should be ok. Ignore any failure, which is fine,
727 # since this is only a convenience to help developers avoid the relatively
728 # unusual case in which a symlinked-to .m4 file is git-removed from gnulib
729 # between successive runs of this script.
730 find "$m4_base" "$source_base" \
731 -depth \
( -name '*.m4' -o -name '*.[ch]' \
) \
732 -type l
-xtype l
-delete > /dev
/null
2>&1
734 # Reconfigure, getting other files.
736 # Skip autoheader if it's not needed.
737 grep -E '^[ ]*AC_CONFIG_HEADERS?\>' configure.ac
>/dev
/null ||
742 "${ACLOCAL-aclocal} --force -I m4" \
743 "${AUTOCONF-autoconf} --force" \
744 "${AUTOHEADER-autoheader} --force" \
745 "${AUTOMAKE-automake} --add-missing --copy --force-missing"
747 if test "$command" = libtool
; then
749 # We'd like to use grep -E, to see if any of LT_INIT,
750 # AC_PROG_LIBTOOL, AM_PROG_LIBTOOL is used in configure.ac,
751 # but that's not portable enough (e.g., for Solaris).
752 grep '^[ ]*A[CM]_PROG_LIBTOOL' configure.ac
>/dev
/null \
754 grep '^[ ]*LT_INIT' configure.ac
>/dev
/null \
756 test $use_libtool = 0 \
758 command="${LIBTOOLIZE-libtoolize} -c -f"
760 echo "$0: $command ..."
765 # Get some extra files from gnulib, overriding existing files.
766 for file in $gnulib_extra_files; do
768 */INSTALL
) dst
=INSTALL
;;
769 build-aux
/*) dst
=$build_aux/`expr "$file" : 'build-aux/\(.*\)'`;;
772 symlink_to_dir
"$GNULIB_SRCDIR" $file $dst ||
exit
775 if test $with_gettext = yes; then
776 # Create gettext configuration.
777 echo "$0: Creating po/Makevars from po/Makevars.template ..."
780 /^EXTRA_LOCALE_CATEGORIES *=/s/=.*/= '"$EXTRA_LOCALE_CATEGORIES"'/
781 /^MSGID_BUGS_ADDRESS *=/s/=.*/= '"$MSGID_BUGS_ADDRESS"'/
782 /^XGETTEXT_OPTIONS *=/{
785 '"$XGETTEXT_OPTIONS"' $${end_of_xgettext_options+}
787 ' po
/Makevars.template
>po
/Makevars
789 if test -d runtime-po
; then
790 # Similarly for runtime-po/Makevars, but not quite the same.
791 rm -f runtime-po
/Makevars
793 /^DOMAIN *=.*/s/=.*/= '"$package"'-runtime/
794 /^subdir *=.*/s/=.*/= runtime-po/
795 /^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-'"$package"'@gnu.org/
796 /^XGETTEXT_OPTIONS *=/{
799 '"$XGETTEXT_OPTIONS_RUNTIME"' $${end_of_xgettext_options+}
801 ' <po
/Makevars.template
>runtime-po
/Makevars
803 # Copy identical files from po to runtime-po.
804 (cd po
&& cp -p Makefile.
in.
in *-quot *.header
*.
sed *.sin ..
/runtime-po
)
810 echo "$0: done. Now you can run './configure'."