2 # Print a version string.
3 scriptversion
=2010-10-08.16
; # UTC
5 # Bootstrap this package from checked-out sources.
7 # Copyright (C) 2003-2010 Free Software Foundation, Inc.
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 # Originally written by Paul Eggert. The canonical version of this
23 # script is maintained as build-aux/bootstrap in gnulib, however, to
24 # be useful to your project, you should place a copy of it under
25 # version control in the top-level directory of your project. The
26 # intent is that all customization can be done with a bootstrap.conf
27 # file also maintained in your version control; gnulib comes with a
28 # template build-aux/bootstrap.conf to get you started.
30 # Please report bugs or propose patches to bug-gnulib@gnu.org.
35 # Ensure file names are sorted consistently across platforms.
41 # Temporary directory names.
43 bt_regex
=`echo "$bt"| sed 's/\./[.]/g'`
49 Bootstrap this package from the checked-out sources.
52 --gnulib-srcdir=DIRNAME Specify the local directory where gnulib
53 sources reside. Use this if you already
54 have gnulib sources on your machine, and
55 do not want to waste your bandwidth downloading
56 them again. Defaults to \$GNULIB_SRCDIR.
57 --copy Copy files instead of creating symbolic links.
58 --force Attempt to bootstrap even if the sources seem
59 not to have been checked out.
60 --skip-po Do not download po files.
62 If the file $0.conf exists in the same directory as this script, its
63 contents are read as shell variables to configure the bootstrap.
65 For build prerequisites, environment variables like \$AUTOCONF and \$AMTAR
68 Running without arguments will suffice in most cases.
74 # Name of the Makefile.am
77 # List of gnulib modules needed.
80 # Any gnulib files needed that are not in modules.
83 # A function to be called to edit gnulib.mk right after it's created.
84 # Override it via your own definition in bootstrap.conf.
85 gnulib_mk_hook
() { :; }
87 # A function to be called after everything else in this script.
88 # Override it via your own definition in bootstrap.conf.
89 bootstrap_epilogue
() { :; }
91 # The command to download all .po files for a specified domain into
92 # a specified directory. Fill in the first %s is the domain name, and
93 # the second with the destination directory. Use rsync's -L and -r
94 # options because the latest/%s directory and the .po files within are
96 po_download_command_format
=\
97 "rsync --delete --exclude '*.s1' -Lrtvz \
98 'translationproject.org::tp/latest/%s/' '%s'"
100 extract_package_name
='
112 y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
117 package
=`sed -n "$extract_package_name" configure.ac` || exit
118 gnulib_name
=lib
$package
126 # Extra files from gnulib, which override files from other sources.
128 $build_aux/install-sh
131 $build_aux/texinfo.tex
133 $build_aux/config.guess
134 $build_aux/config.sub
138 # Additional gnulib-tool options to use. Use "\newline" to break lines.
139 gnulib_tool_option_extras
=
141 # Other locale categories that need message catalogs.
142 EXTRA_LOCALE_CATEGORIES
=
144 # Additional xgettext options to use. Use "\\\newline" to break lines.
145 XGETTEXT_OPTIONS
='\\\
146 --flag=_:1:pass-c-format\\\
147 --flag=N_:1:pass-c-format\\\
148 --flag=error:3:c-format --flag=error_at_line:5:c-format\\\
151 # Package bug report address and copyright holder for gettext files
152 COPYRIGHT_HOLDER
='Free Software Foundation, Inc.'
153 MSGID_BUGS_ADDRESS
=bug
-$package@gnu.org
155 # Files we don't want to import.
158 # File that should exist in the top directory of a checked out hierarchy,
159 # but not in a distribution tarball.
160 checkout_only_file
=README
-hacking
162 # Whether to use copies instead of symlinks.
165 # Set this to '.cvsignore .gitignore' in bootstrap.conf if you want
166 # those files to be generated in directories like lib/, m4/, and po/.
167 # Or set it to 'auto' to make this script select which to use based
168 # on which version control system (if any) is used in the source directory.
171 # find_tool ENVVAR NAMES...
172 # -------------------------
173 # Search for a required program. Use the value of ENVVAR, if set,
174 # otherwise find the first of the NAMES that can be run (i.e.,
175 # supports --version). If found, set ENVVAR to the program name,
182 eval "find_tool_res=\$$find_tool_envvar"
183 if test x
"$find_tool_res" = x
; then
186 if ($i --version </dev
/null
) >/dev
/null
2>&1; then
192 find_tool_error_prefix
="\$$find_tool_envvar: "
194 if test x
"$find_tool_res" = x
; then
195 echo >&2 "$0: one of these is required: $find_tool_names"
198 ($find_tool_res --version </dev
/null
) >/dev
/null
2>&1 || {
199 echo >&2 "$0: ${find_tool_error_prefix}cannot run $find_tool_res --version"
202 eval "$find_tool_envvar=\$find_tool_res"
203 eval "export $find_tool_envvar"
206 # Find sha1sum, named gsha1sum on MacPorts, and shasum on MacOS 10.6.
207 find_tool SHA1SUM
sha1sum gsha1sum shasum
209 # Override the default configuration, if necessary.
210 # Make sure that bootstrap.conf is sourced from the current directory
211 # if we were invoked as "sh bootstrap".
213 */*) test -r "$0.conf" && .
"$0.conf" ;;
214 *) test -r "$0.conf" && . .
/"$0.conf" ;;
218 if test "$vc_ignore" = auto
; then
220 test -d .git
&& vc_ignore
=.gitignore
221 test -d CVS
&& vc_ignore
="$vc_ignore .cvsignore"
224 # Translate configuration into internal form.
235 GNULIB_SRCDIR
=`expr "X$option" : 'X--gnulib-srcdir=\(.*\)'`;;
239 checkout_only_file
=;;
243 echo >&2 "$0: $option: unknown option"
248 if test -n "$checkout_only_file" && test ! -r "$checkout_only_file"; then
249 echo "$0: Bootstrapping from a non-checked-out distribution is risky." >&2
253 # If $STR is not already on a line by itself in $FILE, insert it,
254 # sorting the new contents of the file and replacing $FILE with the result.
255 insert_sorted_if_absent
() {
258 test -f $file || touch $file
259 echo "$str" | sort -u - $file | cmp - $file > /dev
/null \
260 || echo "$str" | sort -u - $file -o $file \
264 # Die if there is no AC_CONFIG_AUX_DIR($build_aux) line in configure.ac.
266 grep '^[ ]*AC_CONFIG_AUX_DIR(\['"$build_aux"'\])' configure.ac \
267 >/dev
/null
&& found_aux_dir
=yes
268 grep '^[ ]*AC_CONFIG_AUX_DIR('"$build_aux"')' configure.ac \
269 >/dev
/null
&& found_aux_dir
=yes
270 if test $found_aux_dir = no
; then
271 echo "$0: expected line not found in configure.ac. Add the following:" >&2
272 echo " AC_CONFIG_AUX_DIR([$build_aux])" >&2
276 # If $build_aux doesn't exist, create it now, otherwise some bits
277 # below will malfunction. If creating it, also mark it as ignored.
278 if test ! -d $build_aux; then
280 for dot_ig
in x
$vc_ignore; do
281 test $dot_ig = x
&& continue
282 insert_sorted_if_absent
$dot_ig $build_aux
286 # Note this deviates from the version comparison in automake
287 # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a
288 # but this should suffice as we won't be specifying old
289 # version formats or redundant trailing .0 in bootstrap.conf.
290 # If we did want full compatibility then we should probably
291 # use m4_version_compare from autoconf.
292 sort_ver
() { # sort -V is not generally available
296 # split on '.' and compare each component
299 p1
=$(echo "$ver1" | cut -d. -f$i)
300 p2
=$(echo "$ver2" | cut -d. -f$i)
304 elif [ ! "$p2" ]; then
307 elif [ ! "$p1" = "$p2" ]; then
308 if [ "$p1" -gt "$p2" ] 2>/dev
/null
; then # numeric comparison
310 elif [ "$p2" -gt "$p1" ] 2>/dev
/null
; then # numeric comparison
312 else # numeric, then lexicographic comparison
313 lp=$(printf "$p1\n$p2\n" | LANG=C sort -n | tail -n1)
314 if [ "$lp" = "$p2" ]; then
329 $app --version >/dev
/null
2>&1 || return 1
331 $app --version 2>&1 |
332 sed -n '# extract version within line
333 s/.*[v ]\{1,\}\([0-9]\{1,\}\.[.a-z0-9-]*\).*/\1/
336 # extract version at start of line
337 s/^\([0-9]\{1,\}\.[.a-z0-9-]*\).*/\1/
343 #the following essentially does s/5.005/5.5/
344 s/\.0*\([1-9]\)/.\1/g
352 while read app req_ver
; do
353 # We only need libtoolize from the libtool package.
354 if test "$app" = libtool
; then
357 # Honor $APP variables ($TAR, $AUTOCONF, etc.)
358 appvar
=`echo $app | tr '[a-z]-' '[A-Z]_'`
359 test "$appvar" = TAR
&& appvar
=AMTAR
360 eval "app=\${$appvar-$app}"
361 inst_ver
=$(get_version $app)
362 if [ ! "$inst_ver" ]; then
363 echo "Error: '$app' not found" >&2
365 elif [ ! "$req_ver" = "-" ]; then
366 latest_ver
=$(sort_ver $req_ver $inst_ver | cut -d' ' -f2)
367 if [ ! "$latest_ver" = "$inst_ver" ]; then
368 echo "Error: '$app' version == $inst_ver is too old" >&2
369 echo " '$app' version >= $req_ver is required" >&2
379 echo "Program Min_version"
380 echo "----------------------"
381 printf %s
"$buildreq"
382 echo "----------------------"
383 # can't depend on column -t
387 # We'd like to use grep -E, to see if any of LT_INIT,
388 # AC_PROG_LIBTOOL, AM_PROG_LIBTOOL is used in configure.ac,
389 # but that's not portable enough (e.g., for Solaris).
390 grep '^[ ]*A[CM]_PROG_LIBTOOL' configure.ac
>/dev
/null \
392 grep '^[ ]*LT_INIT' configure.ac
>/dev
/null \
394 if test $use_libtool = 1; then
395 find_tool LIBTOOLIZE glibtoolize libtoolize
398 if ! printf "$buildreq" | check_versions
; then
400 if test -f README
-prereq; then
401 echo "See README-prereq for how to get the prerequisite programs" >&2
403 echo "Please install the prerequisite programs" >&2
408 echo "$0: Bootstrapping from checked-out $package sources..."
410 # See if we can use gnulib's git-merge-changelog merge driver.
411 if test -d .git
&& (git
--version) >/dev
/null
2>/dev
/null
; then
412 if git config merge.merge
-changelog.driver
>/dev
/null
; then
414 elif (git
-merge-changelog --version) >/dev
/null
2>/dev
/null
; then
415 echo "initializing git-merge-changelog driver"
416 git config merge.merge
-changelog.name
'GNU-style ChangeLog merge driver'
417 git config merge.merge
-changelog.driver
'git-merge-changelog %O %A %B'
419 echo "consider installing git-merge-changelog from gnulib"
426 rm -fr "$gnulib_path"
430 git_modules_config
() {
431 test -f .gitmodules
&& git config
--file .gitmodules
"$@"
434 gnulib_path
=`git_modules_config submodule.gnulib.path`
435 : ${gnulib_path=gnulib}
439 case ${GNULIB_SRCDIR--} in
441 if git_modules_config submodule.gnulib.url
>/dev
/null
; then
442 echo "$0: getting gnulib files..."
443 git submodule init
|| exit $?
444 git submodule update
|| exit $?
446 elif [ ! -d "$gnulib_path" ]; then
447 echo "$0: getting gnulib files..."
449 trap cleanup_gnulib
1 2 13 15
452 git clone
-h 2>&1 | grep -- --depth > /dev
/null
&& shallow
='--depth 2'
453 git clone
$shallow git
://git.sv.gnu.org
/gnulib
"$gnulib_path" ||
458 GNULIB_SRCDIR
=$gnulib_path
461 # Use GNULIB_SRCDIR as a reference.
462 if test -d "$GNULIB_SRCDIR"/.git
&& \
463 git_modules_config submodule.gnulib.url
>/dev
/null
; then
464 echo "$0: getting gnulib files..."
465 if git submodule
-h|grep -- --reference > /dev
/null
; then
466 # Prefer the one-liner available in git 1.6.4 or newer.
467 git submodule update
--init --reference "$GNULIB_SRCDIR" \
468 "$gnulib_path" || exit $?
470 # This fallback allows at least git 1.5.5.
471 if test -f "$gnulib_path"/gnulib
-tool; then
472 # Since file already exists, assume submodule init already complete.
473 git submodule update
|| exit $?
475 # Older git can't clone into an empty directory.
476 rmdir "$gnulib_path" 2>/dev
/null
477 git clone
--reference "$GNULIB_SRCDIR" \
478 "$(git_modules_config submodule.gnulib.url)" "$gnulib_path" \
479 && git submodule init
&& git submodule update \
483 GNULIB_SRCDIR
=$gnulib_path
488 gnulib_tool
=$GNULIB_SRCDIR/gnulib
-tool
489 <$gnulib_tool || exit
493 download_po_files
() {
496 echo "$0: getting translations into $subdir for $domain..."
497 cmd
=`printf "$po_download_command_format" "$domain" "$subdir"`
501 # Mirror .po files to $po_dir/.reference and copy only the new
502 # or modified ones into $po_dir. Also update $po_dir/LINGUAS.
503 # Note po files that exist locally only are left in $po_dir but will
504 # not be included in LINGUAS and hence will not be distributed.
506 # Directory containing primary .po files.
507 # Overwrite them only when we're sure a .po file is new.
511 # Mirror *.po files into this dir.
512 # Usually contains *.s1 checksum files.
513 ref_po_dir
="$po_dir/.reference"
515 test -d $ref_po_dir || mkdir $ref_po_dir || return
516 download_po_files
$ref_po_dir $domain \
517 && ls "$ref_po_dir"/*.po
2>/dev
/null
|
518 sed 's|.*/||; s|\.po$||' > "$po_dir/LINGUAS" || return
520 langs
=`cd $ref_po_dir && echo *.po|sed 's/\.po//g'`
521 test "$langs" = '*' && langs
=x
523 case $po in x
) continue;; esac
524 new_po
="$ref_po_dir/$po.po"
525 cksum_file
="$ref_po_dir/$po.s1"
526 if ! test -f "$cksum_file" ||
527 ! test -f "$po_dir/$po.po" ||
528 ! $SHA1SUM -c --status "$cksum_file" \
529 < "$new_po" > /dev
/null
; then
530 echo "updated $po_dir/$po.po..."
531 cp "$new_po" "$po_dir/$po.po" \
532 && $SHA1SUM < "$new_po" > "$cksum_file"
540 update_po_files po
$package || exit
543 if test -d runtime
-po; then
544 update_po_files runtime
-po $package-runtime || exit
555 # If the destination directory doesn't exist, create it.
556 # This is required at least for "lib/uniwidth/cjk.h".
557 dst_dir
=`dirname "$dst"`
558 if ! test -d "$dst_dir"; then
561 # If we've just created a directory like lib/uniwidth,
562 # tell version control system(s) it's ignorable.
563 # FIXME: for now, this does only one level
564 parent
=`dirname "$dst_dir"`
565 for dot_ig
in x
$vc_ignore; do
566 test $dot_ig = x
&& continue
568 insert_sorted_if_absent
$ig `echo "$dst_dir"|sed 's,.*/,,'`
574 test ! -h "$dst" || {
575 echo "$0: rm -f $dst" &&
580 cmp -s "$src" "$dst" || {
581 echo "$0: cp -fp $src $dst" &&
586 src_ls
=`ls -diL "$src" 2>/dev/null` && set $src_ls && src_i
=$1 &&
587 dst_ls
=`ls -diL "$dst" 2>/dev/null` && set $dst_ls && dst_i
=$1 &&
588 test "$src_i" = "$dst_i" || {
594 *//* | */..
/* | */.
/* | /*/*/*/*/*/)
595 echo >&2 "$0: invalid symlink calculation: $src -> $dst"
597 /*/*/*/*/) dot_dots
=..
/..
/..
/;;
598 /*/*/*/) dot_dots
=..
/..
/;;
599 /*/*/) dot_dots
=..
/;;
603 echo "$0: ln -fs $dot_dots$src $dst" &&
604 ln -fs "$dot_dots$src" "$dst"
610 cp_mark_as_generated
()
615 if cmp -s "$cp_src" "$GNULIB_SRCDIR/$cp_dst"; then
616 symlink_to_dir
"$GNULIB_SRCDIR" "$cp_dst"
617 elif cmp -s "$cp_src" "$local_gl_dir/$cp_dst"; then
618 symlink_to_dir
$local_gl_dir "$cp_dst"
621 *.
[ch
]) c1
='/* '; c2
=' */';;
622 *.texi
) c1
='@c '; c2
= ;;
623 *.
m4|*/Make
*|Make
*) c1
='# ' ; c2
= ;;
627 # If the destination directory doesn't exist, create it.
628 # This is required at least for "lib/uniwidth/cjk.h".
629 dst_dir
=`dirname "$cp_dst"`
630 test -d "$dst_dir" || mkdir -p "$dst_dir"
632 if test -z "$c1"; then
633 cmp -s "$cp_src" "$cp_dst" || {
634 # Copy the file first to get proper permissions if it
635 # doesn't already exist. Then overwrite the copy.
636 echo "$0: cp -f $cp_src $cp_dst" &&
638 cp "$cp_src" "$cp_dst-t" &&
639 sed "s!$bt_regex/!!g" "$cp_src" > "$cp_dst-t" &&
640 mv -f "$cp_dst-t" "$cp_dst"
643 # Copy the file first to get proper permissions if it
644 # doesn't already exist. Then overwrite the copy.
645 cp "$cp_src" "$cp_dst-t" &&
647 echo "$c1-*- buffer-read-only: t -*- vi: set ro:$c2" &&
648 echo "${c1}DO NOT EDIT! GENERATED AUTOMATICALLY!$c2" &&
649 sed "s!$bt_regex/!!g" "$cp_src"
651 if cmp -s "$cp_dst-t" "$cp_dst"; then
654 echo "$0: cp $cp_src $cp_dst # with edits" &&
655 mv -f "$cp_dst-t" "$cp_dst"
661 version_controlled_file
() {
666 grep -F "/$file/" $dir/CVS
/Entries
2>/dev
/null
|
667 grep '^/[^/]*/[0-9]' > /dev
/null
&& found
=yes
668 elif test -d .git
; then
669 git
rm -n "$dir/$file" > /dev
/null
2>&1 && found
=yes
670 elif test -d .svn
; then
671 svn log
-r HEAD
"$dir/$file" > /dev
/null
2>&1 && found
=yes
673 echo "$0: no version control for $dir/$file?" >&2
679 for dir
in .
`(cd $1 && find * -type d -print)`; do
682 for file in `ls -a $1/$dir`; do
685 # FIXME: should all file names starting with "." be ignored?
688 test -d $1/$dir/$file && continue
689 for excluded_file
in $excluded_files; do
690 test "$dir/$file" = "$excluded_file" && continue 2
692 if test $file = Makefile.am
&& test "X$gnulib_mk" != XMakefile.am
; then
693 copied
=$copied${sep}$gnulib_mk; sep
=$nl
694 remove_intl
='/^[^#].*\/intl/s/^/#/;'"s!$bt_regex/!!g"
695 sed "$remove_intl" $1/$dir/$file |
696 cmp - $dir/$gnulib_mk > /dev
/null
|| {
697 echo "$0: Copying $1/$dir/$file to $dir/$gnulib_mk ..." &&
698 rm -f $dir/$gnulib_mk &&
699 sed "$remove_intl" $1/$dir/$file >$dir/$gnulib_mk &&
700 gnulib_mk_hook
$dir/$gnulib_mk
702 elif { test "${2+set}" = set && test -r $2/$dir/$file; } ||
703 version_controlled_file
$dir $file; then
704 echo "$0: $dir/$file overrides $1/$dir/$file"
706 copied
=$copied$sep$file; sep
=$nl
707 if test $file = gettext.
m4; then
708 echo "$0: patching m4/gettext.m4 to remove need for intl/* ..."
711 /^AC_DEFUN(\[AM_INTL_SUBDIR],/,/^]/c\
712 AC_DEFUN([AM_INTL_SUBDIR], [])
713 /^AC_DEFUN(\[gt_INTL_SUBDIR_CORE],/,/^]/c\
714 AC_DEFUN([gt_INTL_SUBDIR_CORE], [])
716 AC_DEFUN([gl_LOCK_EARLY], [])
717 ' $1/$dir/$file >$dir/$file
719 cp_mark_as_generated
$1/$dir/$file $dir/$file
724 for dot_ig
in x
$vc_ignore; do
725 test $dot_ig = x
&& continue
727 if test -n "$copied"; then
728 insert_sorted_if_absent
$ig "$copied"
729 # If an ignored file name ends with .in.h, then also add
730 # the name with just ".h". Many gnulib headers are generated,
731 # e.g., stdint.in.h -> stdint.h, dirent.in.h ->..., etc.
732 # Likewise for .gperf -> .h, .y -> .c, and .sin -> .sed
741 insert_sorted_if_absent
$ig "$f"
743 # For files like sys_stat.in.h and sys_time.in.h, record as
744 # ignorable the directory we might eventually create: sys/.
745 f
=`echo "$copied"|sed 's/sys_.*\.in\.h$/sys/'`
746 insert_sorted_if_absent
$ig "$f"
753 # Create boot temporary directories to import from gnulib and gettext.
755 mkdir $bt $bt2 || exit
757 # Import from gnulib.
759 gnulib_tool_options
="\
762 --aux-dir $bt/$build_aux\
763 --doc-base $bt/$doc_base\
765 --m4-base $bt/$m4_base/\
766 --source-base $bt/$source_base/\
767 --tests-base $bt/$tests_base\
768 --local-dir $local_gl_dir\
769 $gnulib_tool_option_extras\
771 if test $use_libtool = 1; then
772 case "$gnulib_tool_options " in
774 *) gnulib_tool_options
="$gnulib_tool_options --libtool" ;;
777 echo "$0: $gnulib_tool $gnulib_tool_options --import ..."
778 $gnulib_tool $gnulib_tool_options --import $gnulib_modules &&
781 for file in $gnulib_files; do
782 symlink_to_dir
"$GNULIB_SRCDIR" $file || exit
786 # Import from gettext.
788 grep '^[ ]*AM_GNU_GETTEXT_VERSION(' configure.ac
>/dev
/null
|| \
791 if test $with_gettext = yes; then
792 echo "$0: (cd $bt2; ${AUTOPOINT-autopoint}) ..."
793 cp configure.ac
$bt2 &&
794 (cd $bt2 && ${AUTOPOINT-autopoint} && rm configure.ac
) &&
795 slurp
$bt2 $bt || exit
797 rm -fr $bt $bt2 || exit
799 # Remove any dangling symlink matching "*.m4" or "*.[ch]" in some
800 # gnulib-populated directories. Such .m4 files would cause aclocal to fail.
801 # The following requires GNU find 4.2.3 or newer. Considering the usual
802 # portability constraints of this script, that may seem a very demanding
803 # requirement, but it should be ok. Ignore any failure, which is fine,
804 # since this is only a convenience to help developers avoid the relatively
805 # unusual case in which a symlinked-to .m4 file is git-removed from gnulib
806 # between successive runs of this script.
807 find "$m4_base" "$source_base" \
808 -depth \
( -name '*.m4' -o -name '*.[ch]' \
) \
809 -type l
-xtype l
-delete > /dev
/null
2>&1
811 # Reconfigure, getting other files.
813 # Skip autoheader if it's not needed.
814 grep -E '^[ ]*AC_CONFIG_HEADERS?\>' configure.ac
>/dev
/null
||
819 "${ACLOCAL-aclocal} --force -I m4 $ACLOCAL_FLAGS" \
820 "${AUTOCONF-autoconf} --force" \
821 "${AUTOHEADER-autoheader} --force" \
822 "${AUTOMAKE-automake} --add-missing --copy --force-missing"
824 if test "$command" = libtool
; then
825 test $use_libtool = 0 \
827 command="${LIBTOOLIZE-libtoolize} -c -f"
829 echo "$0: $command ..."
834 # Get some extra files from gnulib, overriding existing files.
835 for file in $gnulib_extra_files; do
837 */INSTALL
) dst
=INSTALL
;;
838 build
-aux/*) dst
=$build_aux/`expr "$file" : 'build-aux/\(.*\)'`;;
841 symlink_to_dir
"$GNULIB_SRCDIR" $file $dst || exit
844 if test $with_gettext = yes; then
845 # Create gettext configuration.
846 echo "$0: Creating po/Makevars from po/Makevars.template ..."
849 /^EXTRA_LOCALE_CATEGORIES *=/s/=.*/= '"$EXTRA_LOCALE_CATEGORIES"'/
850 /^COPYRIGHT_HOLDER *=/s/=.*/= '"$COPYRIGHT_HOLDER"'/
851 /^MSGID_BUGS_ADDRESS *=/s|=.*|= '"$MSGID_BUGS_ADDRESS"'|
852 /^XGETTEXT_OPTIONS *=/{
855 '"$XGETTEXT_OPTIONS"' $${end_of_xgettext_options+}
857 ' po
/Makevars.template
>po
/Makevars
|| exit 1
859 if test -d runtime
-po; then
860 # Similarly for runtime-po/Makevars, but not quite the same.
861 rm -f runtime
-po/Makevars
863 /^DOMAIN *=.*/s/=.*/= '"$package"'-runtime/
864 /^subdir *=.*/s/=.*/= runtime-po/
865 /^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-'"$package"'@gnu.org/
866 /^XGETTEXT_OPTIONS *=/{
869 '"$XGETTEXT_OPTIONS_RUNTIME"' $${end_of_xgettext_options+}
871 ' po
/Makevars.template
>runtime
-po/Makevars
|| exit 1
873 # Copy identical files from po to runtime-po.
874 (cd po
&& cp -p Makefile.
in.
in *-quot *.header
*.
sed *.sin ..
/runtime
-po)
880 echo "$0: done. Now you can run './configure'."
883 # eval: (add-hook 'write-file-hooks 'time-stamp)
884 # time-stamp-start: "scriptversion="
885 # time-stamp-format: "%:y-%02m-%02d.%02H"
886 # time-stamp-time-zone: "UTC"
887 # time-stamp-end: "; # UTC"