X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=bootstrap;h=4fa452c515d729a4ecfd5a7f7762784c02c36011;hb=19335cdfb4bd2a246c26f8f36ebbec3f75e7846f;hp=e4068f6874d85132062175700652a15e87d54a16;hpb=c5997e92f04f2aca8f3cc106542a77c1ca38ddab;p=chaz%2Ftar diff --git a/bootstrap b/bootstrap index e4068f6..4fa452c 100755 --- a/bootstrap +++ b/bootstrap @@ -24,6 +24,11 @@ # URL of our text domain page in Translation Project TP_URL="http://www2.iro.umontreal.ca/~gnutra/po/maint/tar/" +# Ensure file names are sorted consistently across platforms; +# e.g., m4/ulonglong_gl.m4 should follow m4/ulonglong.m4. +LC_ALL=C +export LC_ALL + usage() { cat <LINGUAS + ) || exit + fi +} + # Parse options. DOWNLOAD_PO=yes @@ -66,12 +90,25 @@ do CVS_USER=`expr "$option" : '--cvs-user=\(.*\)'`;; --no-po) DOWNLOAD_PO=no;; + --update-po=*) + DOWNLOAD_PO=`expr "$option" : '--update-po=\(.*\)'`;; + --update-po) + DOWNLOAD_PO=only;; *) echo >&2 "$0: $option: unknown option" exit 1;; esac done +case $DOWNLOAD_PO in +only) update_po + exit 0 + ;; +no|yes) ;; +*) update_po $DOWNLOAD_PO + exit 0 +esac + echo "$0: Bootstrapping CVS tar..." build_cvs_prefix() { @@ -121,6 +158,7 @@ esac gnulib_modules=' alloca argmatch +argp backupfile dirname error @@ -132,6 +170,7 @@ full-write getdate getline getopt +getpagesize gettext gettime hash @@ -154,6 +193,7 @@ timespec unlocked-io utime xalloc +xalloc-die xgetcwd xstrtoumax ' @@ -190,10 +230,10 @@ for gnulib_file in $gnulib_files; do m4/onceonly_2_57.m4) dest=m4/onceonly.m4;; # These will be overwritten by autopoint, which still uses # old jm_.* macro names, so we have to keep both copies. - m4/ulonglong.m4) dest=m4/ulonglong_gl.m4;; - m4/inttypes_h.m4) dest=m4/inttypes_h_gl.m4;; - m4/stdint_h.m4) dest=m4/stdint_h_gl.m4;; - m4/uintmax_t.m4) dest=m4/uintmax_t_gl.m4;; + m4/gettext.m4 | m4/glibc21.m4 | m4/inttypes_h.m4 | m4/lib-ld.m4 | \ + m4/lib-prefix.m4 | m4/po.m4 | m4/stdint_h.m4 | m4/uintmax_t.m4 | \ + m4/ulonglong.m4) + dest=`expr $gnulib_file : '\(.*\).m4'`_gl.m4;; esac rm -f $dest && @@ -220,14 +260,8 @@ echo "$0: Creating lib/Makefile.am" done | sed 's/lib_SOURCES/libtar_a_SOURCES/g' ) > lib/Makefile.am # Get translations. - if test "$DOWNLOAD_PO" = "yes"; then - echo "$0: getting translations into po..." - (cd po && - rm -f dummy `ls | sed -n '/\.gmo$/p; /\.po/p'` && - wget -nv -nd -r -l 1 -A .po -C off $TP_URL && - ls *.po | sed 's/\.po$//' >LINGUAS - ) || exit + update_po fi # Reconfigure, getting other files.