123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251 |
- #! /bin/sh
- #
- # Copyright (C) 1995-1998, 2000-2006 Free Software Foundation, Inc.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2, or (at your option)
- # any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software Foundation,
- # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- #
- # This file is meant for authors or maintainers which want to
- # internationalize their package with the help of GNU gettext. For
- # further information how to use it consult the GNU gettext manual.
- progname=$0
- package=gettext-tools
- version=0.16.1
- # Set variables
- # - gettext_dir directory where the sources are stored.
- prefix="/usr"
- datarootdir="${prefix}/share"
- gettext_dir="/usr/share/gettext"
- # func_tmpdir
- # creates a temporary directory.
- # Sets variable
- # - tmp pathname of freshly created temporary directory
- func_tmpdir ()
- {
- # Use the environment variable TMPDIR, falling back to /tmp. This allows
- # users to specify a different temporary directory, for example, if their
- # /tmp is filled up or too small.
- : ${TMPDIR=/tmp}
- {
- # Use the mktemp program if available. If not available, hide the error
- # message.
- tmp=`(umask 077 && mktemp -d "$TMPDIR/gtXXXXXX") 2>/dev/null` &&
- test -n "$tmp" && test -d "$tmp"
- } ||
- {
- # Use a simple mkdir command. It is guaranteed to fail if the directory
- # already exists. $RANDOM is bash specific and expands to empty in shells
- # other than bash, ksh and zsh. Its use does not increase security;
- # rather, it minimizes the probability of failure in a very cluttered /tmp
- # directory.
- tmp=$TMPDIR/gt$$-$RANDOM
- (umask 077 && mkdir "$tmp")
- } ||
- {
- echo "$0: cannot create a temporary directory in $TMPDIR" >&2
- { (exit 1); exit 1; }
- }
- }
- # Support for relocatability.
- func_find_curr_installdir ()
- {
- # Determine curr_installdir, even taking into account symlinks.
- curr_executable="$0"
- case "$curr_executable" in
- */* | *\\*) ;;
- *) # Need to look in the PATH.
- if test "${PATH_SEPARATOR+set}" != set; then
- func_tmpdir
- { echo "#! /bin/sh"; echo "exit 0"; } > "$tmp"/conf.sh
- chmod +x "$tmp"/conf.sh
- if (PATH="/nonexistent;$tmp"; conf.sh) >/dev/null 2>&1; then
- PATH_SEPARATOR=';'
- else
- PATH_SEPARATOR=:
- fi
- rm -rf "$tmp"
- fi
- save_IFS="$IFS"; IFS="$PATH_SEPARATOR"
- for dir in $PATH; do
- IFS="$save_IFS"
- test -z "$dir" && dir=.
- for exec_ext in ''; do
- if test -f "$dir/$curr_executable$exec_ext"; then
- curr_executable="$dir/$curr_executable$exec_ext"
- break 2
- fi
- done
- done
- IFS="$save_IFS"
- ;;
- esac
- # Make absolute.
- case "$curr_executable" in
- /* | ?:/* | ?:\\*) ;;
- *) curr_executable=`pwd`/"$curr_executable" ;;
- esac
- # Resolve symlinks.
- sed_dirname='s,/[^/]*$,,'
- sed_linkdest='s,^.* -> \(.*\),\1,p'
- while : ; do
- lsline=`LC_ALL=C ls -l "$curr_executable"`
- case "$lsline" in
- *" -> "*)
- linkdest=`echo "$lsline" | sed -n -e "$sed_linkdest"`
- case "$linkdest" in
- /* | ?:/* | ?:\\*) curr_executable="$linkdest" ;;
- *) curr_executable=`echo "$curr_executable" | sed -e "$sed_dirname"`/"$linkdest" ;;
- esac ;;
- *) break ;;
- esac
- done
- curr_installdir=`echo "$curr_executable" | sed -e 's,/[^/]*$,,'`
- # Canonicalize.
- curr_installdir=`cd "$curr_installdir" && pwd`
- }
- func_find_prefixes ()
- {
- # Compute the original/current installation prefixes by stripping the
- # trailing directories off the original/current installation directories.
- orig_installprefix="$orig_installdir"
- curr_installprefix="$curr_installdir"
- while true; do
- orig_last=`echo "$orig_installprefix" | sed -n -e 's,^.*/\([^/]*\)$,\1,p'`
- curr_last=`echo "$curr_installprefix" | sed -n -e 's,^.*/\([^/]*\)$,\1,p'`
- if test -z "$orig_last" || test -z "$curr_last"; then
- break
- fi
- if test "$orig_last" != "$curr_last"; then
- break
- fi
- orig_installprefix=`echo "$orig_installprefix" | sed -e 's,/[^/]*$,,'`
- curr_installprefix=`echo "$curr_installprefix" | sed -e 's,/[^/]*$,,'`
- done
- }
- if test "no" = yes; then
- exec_prefix="/usr"
- bindir="/usr/bin"
- orig_installdir="$bindir" # see Makefile.am's *_SCRIPTS variables
- func_find_curr_installdir # determine curr_installdir
- func_find_prefixes
- # Relocate the directory variables that we use.
- gettext_dir=`echo "$gettext_dir/" | sed -e "s%^${orig_installprefix}/%${curr_installprefix}/%" | sed -e 's,/$,,'`
- fi
- # func_usage
- # outputs to stdout the --help usage message.
- func_usage ()
- {
- echo "\
- Usage: gettextize [OPTION]... [package-dir]
- Prepares a source package to use gettext.
- Options:
- --help print this help and exit
- --version print version information and exit
- -f, --force force writing of new files even if old exist
- --intl install libintl in a subdirectory
- --no-changelog don't update or create ChangeLog files
- --symlink make symbolic links instead of copying files
- -n, --dry-run print modifications but don't perform them
- Report bugs to <bug-gnu-gettext@gnu.org>."
- }
- # func_version
- # outputs to stdout the --version message.
- func_version ()
- {
- echo "$progname (GNU $package) $version"
- echo "Copyright (C) 1995-1998, 2000-2006 Free Software Foundation, Inc.
- This is free software; see the source for copying conditions. There is NO
- warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
- echo "Written by" "Ulrich Drepper"
- }
- # func_fatal_error message
- # outputs to stderr a fatal error message, and terminates the program.
- func_fatal_error ()
- {
- echo "gettextize: *** $1" 1>&2
- echo "gettextize: *** Stop." 1>&2
- exit 1
- }
- # Nuisances.
- (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
- # Command-line option processing.
- # Removes the OPTIONS from the arguments. Sets the variables:
- # - force 1 if --force was given, 0 otherwise
- # - intldir yes if --intl was given, empty otherwise
- # - try_ln_s : if --symlink was given, false otherwise
- # - do_changelog false if --no-changelog was given, : otherwise
- # - doit false if --dry-run was given, : otherwise
- {
- force=0
- intldir=
- try_ln_s=false
- do_changelog=:
- doit=:
- while test $# -gt 0; do
- case "$1" in
- -c | --copy | --cop | --co | --c ) # accepted for backward compatibility
- shift ;;
- -n | --dry-run | --dry-ru | --dry-r | --dry- | --dry | --dr | --d )
- shift
- doit=false ;;
- -f | --force | --forc | --for | --fo | --f )
- shift
- force=1 ;;
- --help | --hel | --he | --h )
- func_usage; exit 0 ;;
- --intl | --int | --in | --i )
- shift
- intldir=yes ;;
- --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch | --no-c )
- shift
- do_changelog=false ;;
- --symlink | --symlin | --symli | --syml | --sym | --sy | --s )
- shift
- try_ln_s=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v )
- func_version
- exit 0 ;;
- -- ) # Stop option prcessing
- shift; break ;;
- -* )
- echo "gettextize: unknown option $1" 1>&2
- echo "Try 'gettextize --help' for more information." 1>&2
- exit 1 ;;
- * )
- break ;;
- esac
- done
- }
- # Command-line argument processing.
- # Analyzes the remaining arguments.
- # Sets the variables
- # - origdir to the original directory,
- # - srcdir to the package directory, and cd-s into it.
- {
- if test $# -gt 1; then
- func_usage 1>&2
- exit 1
- fi
- origdir=`pwd`
- if test $# -eq 1; then
- srcdir=$1
- if cd "$srcdir"; then
- srcdir=`pwd`
- else
- func_fatal_error "Cannot change directory to '$srcdir'."
- fi
- else
- srcdir=$origdir
- fi
- }
- # The current directory is now $srcdir.
- # Check integrity of package: A configure.in/ac must be present. Sets variable
- # - configure_in name of configure.in/ac file.
- test -f configure.in || test -f configure.ac ||
- func_fatal_error "Missing configure.in or configure.ac, please cd to your package first."
- configure_in=NONE
- if test -f configure.in; then
- configure_in=configure.in
- else
- if test -f configure.ac; then
- configure_in=configure.ac
- fi
- fi
- # Check whether the --force option is needed but has not been specified.
- if test $force -eq 0; then
- if test -d intl; then
- func_fatal_error "intl/ subdirectory exists: use option -f if you really want to delete it."
- fi
- if test -f po/Makefile.in.in; then
- func_fatal_error "po/Makefile.in.in exists: use option -f if you really want to delete it."
- fi
- if test -f ABOUT-NLS; then
- func_fatal_error "ABOUT-NLS exists: use option -f if you really want to delete it."
- fi
- fi
- # Check in which directory config.rpath etc. belong.
- auxdir=`cat "$configure_in" | grep '^AC_CONFIG_AUX_DIR' | sed -n -e 's/AC_CONFIG_AUX_DIR(\([^()]*\))/\1/p' | sed -e 's/^\[\(.*\)\]$/\1/' | sed -e 1q`
- if test -n "$auxdir"; then
- auxdir="$auxdir/"
- fi
- # For simplicity we change to the gettext source directory.
- cd $gettext_dir ||
- func_fatal_error "gettext source directory '${gettext_dir}' doesn't exist"
- # Variables which keep track what has been modified.
- added_directories=
- removed_directory=
- added_extradist=
- added_acoutput=
- removed_acoutput=" intl/intlh.inst"
- # Variable:
- # - please accumulates instructions for the user.
- please=
- # Variable:
- # - date current date, for use in ChangeLog entries.
- date=`date +%Y-%m-%d`
- # func_copy from to
- # copies a file.
- # 'from' is a relative pathname, relative to the current directory.
- # 'to' is a relative pathname, relative to $srcdir.
- func_copy ()
- {
- if $doit; then
- rm -f "$srcdir/$2"
- echo "Copying file $2"
- cp "$1" "$srcdir/$2"
- else
- echo "Copy file $2"
- fi
- }
- # func_linkorcopy from absfrom to
- # links or copies a file.
- # 'from' is a relative pathname, relative to the current directory.
- # 'absfrom' is the corresponding absolute pathname.
- # 'to' is a relative pathname, relative to $srcdir.
- func_linkorcopy ()
- {
- if $doit; then
- rm -f "$srcdir/$3"
- ($try_ln_s && ln -s "$2" "$srcdir/$3" && echo "Symlinking file $3") 2>/dev/null ||
- { echo "Copying file $3"; cp "$1" "$srcdir/$3"; }
- else
- if $try_ln_s; then
- echo "Symlink file $3"
- else
- echo "Copy file $3"
- fi
- fi
- }
- # func_backup to
- # makes a backup of a file that is about to be overwritten or replaced.
- # 'to' is a relative pathname, relative to $srcdir.
- func_backup ()
- {
- if $doit; then
- if test -f "$srcdir/$1"; then
- rm -f "$srcdir/$1~"
- cp -p "$srcdir/$1" "$srcdir/$1~"
- fi
- fi
- }
- # func_remove to
- # removes a file.
- # 'to' is a relative pathname, relative to $srcdir.
- func_remove ()
- {
- if $doit; then
- echo "Removing $1"
- rm -f "$srcdir/$1"
- else
- echo "Remove $1"
- fi
- }
- # func_ChangeLog_init
- # func_ChangeLog_add_entry line
- # func_ChangeLog_finish
- # manage the ChangeLog file, relative to $srcdir.
- func_ChangeLog_init ()
- {
- modified_ChangeLog=
- }
- func_ChangeLog_add_entry ()
- {
- if $doit; then
- if test -z "$modified_ChangeLog"; then
- echo "$date gettextize <bug-gnu-gettext@gnu.org>" > "$srcdir/ChangeLog.tmp"
- echo >> "$srcdir/ChangeLog.tmp"
- modified_ChangeLog=yes
- fi
- echo "$1" >> "$srcdir/ChangeLog.tmp"
- else
- modified_ChangeLog=yes
- fi
- }
- func_ChangeLog_finish ()
- {
- if test -n "$modified_ChangeLog"; then
- if $doit; then
- echo >> "$srcdir/ChangeLog.tmp"
- if test -f "$srcdir/ChangeLog"; then
- echo "Adding an entry to ChangeLog (backup is in ChangeLog~)"
- cat "$srcdir/ChangeLog" >> "$srcdir/ChangeLog.tmp"
- rm -f "$srcdir/ChangeLog~"
- cp -p "$srcdir/ChangeLog" "$srcdir/ChangeLog~"
- else
- echo "Creating ChangeLog"
- fi
- cp "$srcdir/ChangeLog.tmp" "$srcdir/ChangeLog"
- rm -f "$srcdir/ChangeLog.tmp"
- else
- if test -f "$srcdir/ChangeLog"; then
- echo "Add an entry to ChangeLog"
- else
- echo "Create ChangeLog"
- fi
- fi
- fi
- }
- # func_poChangeLog_init
- # func_poChangeLog_add_entry line
- # func_poChangeLog_finish
- # manage the po/ChangeLog file, relative to $srcdir.
- func_poChangeLog_init ()
- {
- modified_poChangeLog=
- }
- func_poChangeLog_add_entry ()
- {
- if $doit; then
- if test -z "$modified_poChangeLog"; then
- echo "$date gettextize <bug-gnu-gettext@gnu.org>" > "$srcdir/po/ChangeLog.tmp"
- echo >> "$srcdir/po/ChangeLog.tmp"
- modified_poChangeLog=yes
- fi
- echo "$1" >> "$srcdir/po/ChangeLog.tmp"
- else
- modified_poChangeLog=yes
- fi
- }
- func_poChangeLog_finish ()
- {
- if test -n "$modified_poChangeLog"; then
- if $doit; then
- echo >> "$srcdir/po/ChangeLog.tmp"
- if test -f "$srcdir/po/ChangeLog"; then
- echo "Adding an entry to po/ChangeLog (backup is in po/ChangeLog~)"
- cat "$srcdir/po/ChangeLog" >> "$srcdir/po/ChangeLog.tmp"
- rm -f "$srcdir/po/ChangeLog~"
- cp -p "$srcdir/po/ChangeLog" "$srcdir/po/ChangeLog~"
- else
- echo "Creating po/ChangeLog"
- fi
- cp "$srcdir/po/ChangeLog.tmp" "$srcdir/po/ChangeLog"
- rm -f "$srcdir/po/ChangeLog.tmp"
- else
- if test -f "$srcdir/po/ChangeLog"; then
- echo "Add an entry to po/ChangeLog"
- else
- echo "Create po/ChangeLog"
- fi
- fi
- fi
- }
- # func_m4ChangeLog_init
- # func_m4ChangeLog_add_entry line
- # func_m4ChangeLog_finish
- # manage the $m4dir/ChangeLog file, relative to $srcdir.
- func_m4ChangeLog_init ()
- {
- if test -n "$using_m4ChangeLog"; then
- modified_m4ChangeLog=
- created_m4ChangeLog=
- fi
- }
- func_m4ChangeLog_add_entry ()
- {
- if test -n "$using_m4ChangeLog"; then
- if $doit; then
- if test -z "$modified_m4ChangeLog"; then
- echo "$date gettextize <bug-gnu-gettext@gnu.org>" > "$srcdir/$m4dir/ChangeLog.tmp"
- echo >> "$srcdir/$m4dir/ChangeLog.tmp"
- modified_m4ChangeLog=yes
- fi
- echo "$1" >> "$srcdir/$m4dir/ChangeLog.tmp"
- else
- modified_m4ChangeLog=yes
- fi
- else
- line="$1"
- line=`echo "$line" | sed -e "s%^ \\* % * $m4dir/%"`
- func_ChangeLog_add_entry "$line"
- fi
- }
- func_m4ChangeLog_finish ()
- {
- if test -n "$using_m4ChangeLog"; then
- if test -n "$modified_m4ChangeLog"; then
- if $doit; then
- echo >> "$srcdir/$m4dir/ChangeLog.tmp"
- if test -f "$srcdir/$m4dir/ChangeLog"; then
- echo "Adding an entry to $m4dir/ChangeLog (backup is in $m4dir/ChangeLog~)"
- cat "$srcdir/$m4dir/ChangeLog" >> "$srcdir/$m4dir/ChangeLog.tmp"
- rm -f "$srcdir/$m4dir/ChangeLog~"
- cp -p "$srcdir/$m4dir/ChangeLog" "$srcdir/$m4dir/ChangeLog~"
- else
- echo "Creating $m4dir/ChangeLog"
- created_m4ChangeLog=yes
- fi
- cp "$srcdir/$m4dir/ChangeLog.tmp" "$srcdir/$m4dir/ChangeLog"
- rm -f "$srcdir/$m4dir/ChangeLog.tmp"
- else
- if test -f "$srcdir/$m4dir/ChangeLog"; then
- echo "Add an entry to $m4dir/ChangeLog"
- else
- echo "Create $m4dir/ChangeLog"
- created_m4ChangeLog=yes
- fi
- fi
- fi
- fi
- }
- using_m4ChangeLog=yes
- if test ! -f "$srcdir/intl/Makefile.in" && test -n "$intldir"; then
- added_acoutput="$added_acoutput intl/Makefile"
- fi
- if test -f "$srcdir/intl/Makefile.in" && test -z "$intldir"; then
- removed_acoutput="$removed_acoutput intl/Makefile"
- fi
- if test -d "$srcdir/intl"; then
- # Remove everything inside intl except for RCS and CVS subdirs and invisible
- # files.
- if $doit; then
- echo "Wiping out intl/ subdirectory"
- (cd "$srcdir/intl" &&
- for f in *; do
- if test CVS != "$f" && test RCS != "$f"; then
- rm -rf "$f"
- fi
- done)
- else
- echo "Wipe out intl/ subdirectory"
- fi
- if test -z "$intldir"; then
- removed_directory=intl
- fi
- else
- if test -n "$intldir"; then
- if $doit; then
- echo "Creating intl/ subdirectory"
- mkdir "$srcdir/intl" || func_fatal_error "failed to create intl/ subdirectory"
- else
- echo "Create intl/ subdirectory"
- fi
- added_directories="$added_directories intl"
- fi
- fi
- $do_changelog && func_ChangeLog_init
- test -d "$srcdir/po" || {
- if $doit; then
- echo "Creating po/ subdirectory"
- mkdir "$srcdir/po" || func_fatal_error "failed to create po/ subdirectory"
- else
- echo "Create po/ subdirectory"
- fi
- added_directories="$added_directories po"
- }
- # Create the directory for config.rpath, if needed.
- # This is for consistency with autoreconf and automake.
- # Note that $auxdir is either empty or ends in a slash.
- test -d "$srcdir/$auxdir" || {
- if $doit; then
- echo "Creating $auxdir subdirectory"
- mkdir "$srcdir/$auxdir" || func_fatal_error "failed to create $auxdir subdirectory"
- else
- echo "Create $auxdir subdirectory"
- fi
- }
- # Now copy all files. Take care for the destination directories.
- for file in *; do
- case $file in
- ABOUT-NLS)
- func_linkorcopy $file "$gettext_dir/$file" $file
- ;;
- config.rpath)
- if test -f "$srcdir/$auxdir$file"; then
- :
- else
- added_extradist="$added_extradist $auxdir$file"
- fi
- func_linkorcopy $file "$gettext_dir/$file" "$auxdir$file"
- ;;
- esac
- done
- # Copy files to intl/ subdirectory.
- if test -n "$intldir"; then
- cd intl
- for file in *; do
- if test $file != COPYING.LIB-2.0 && test $file != COPYING.LIB-2.1; then
- if test $file != plural.c; then
- func_linkorcopy $file "$gettext_dir/intl/$file" intl/$file
- else
- # plural.c is a generated file; it must be copied and touched.
- func_copy $file intl/$file
- if $doit; then
- (sleep 2; touch "$srcdir/intl/$file") &
- fi
- fi
- fi
- done
- cd ..
- else
- echo "Not copying intl/ directory."
- # Tell the user what to put into configure.ac, if it is not already there.
- if grep '^AM_GNU_GETTEXT([[]\?external[]]\?[ ]*[,)]' "$srcdir/$configure_in" > /dev/null; then
- :
- else
- please="$please
- Please use AM_GNU_GETTEXT([external]) in order to cause autoconfiguration
- to look for an external libintl.
- "
- fi
- fi
- # Copy files to po/ subdirectory.
- $do_changelog && func_poChangeLog_init
- cd po
- for file in Makefile.in.in; do
- same=no
- if test -f "$srcdir/po/$file"; then
- if cmp -s $file "$srcdir/po/$file"; then
- same=yes
- fi
- else
- added_acoutput="$added_acoutput po/Makefile.in"
- fi
- if $do_changelog && test $same = no; then
- if test -f "$srcdir/po/$file"; then
- func_poChangeLog_add_entry " * $file: Upgrade to gettext-${version}."
- else
- func_poChangeLog_add_entry " * $file: New file, from gettext-${version}."
- fi
- fi
- func_backup po/$file
- func_linkorcopy $file "$gettext_dir/po/$file" po/$file
- done
- for file in *; do
- case $file in
- Makefile.in.in)
- # Already handled above.
- ;;
- Makevars.template)
- func_linkorcopy Makevars.template "$gettext_dir/po/Makevars.template" po/Makevars.template
- if test -f "$srcdir/po/Makevars"; then
- LC_ALL=C sed -n -e 's/[ ]*\([A-Za-z0-9_]*\)[ ]*=.*/\1/p' < "$srcdir/po/Makevars" | LC_ALL=C sort > "$srcdir/po/Makevars.tmp1"
- LC_ALL=C sed -n -e 's/[ ]*\([A-Za-z0-9_]*\)[ ]*=.*/\1/p' < "$srcdir/po/Makevars.template" | LC_ALL=C sort > "$srcdir/po/Makevars.tmp2"
- missingvars=`LC_ALL=C comm -13 "$srcdir/po/Makevars.tmp1" "$srcdir/po/Makevars.tmp2"`
- rm -f "$srcdir/po/Makevars.tmp1" "$srcdir/po/Makevars.tmp2"
- if test -n "$missingvars"; then
- please="$please
- Please update po/Makevars so that it defines all the variables mentioned
- in po/Makevars.template.
- You can then remove po/Makevars.template.
- "
- fi
- else
- please="$please
- Please create po/Makevars from the template in po/Makevars.template.
- You can then remove po/Makevars.template.
- "
- fi
- ;;
- *)
- same=no
- if test -f "$srcdir/po/$file"; then
- if cmp -s $file "$srcdir/po/$file"; then
- same=yes
- fi
- fi
- if $do_changelog && test $same = no; then
- if test -f "$srcdir/po/$file"; then
- func_poChangeLog_add_entry " * $file: Upgrade to gettext-${version}."
- else
- func_poChangeLog_add_entry " * $file: New file, from gettext-${version}."
- fi
- fi
- func_backup po/$file
- func_linkorcopy $file $gettext_dir/po/$file po/$file
- ;;
- esac
- done
- if test -f "$srcdir/po/cat-id-tbl.c"; then
- func_remove po/cat-id-tbl.c
- $do_changelog && func_poChangeLog_add_entry " * cat-id-tbl.c: Remove file."
- fi
- if test -f "$srcdir/po/stamp-cat-id"; then
- func_remove po/stamp-cat-id
- $do_changelog && func_poChangeLog_add_entry " * stamp-cat-id: Remove file."
- fi
- if test ! -f "$srcdir/po/POTFILES.in"; then
- if $doit; then
- echo "Creating initial po/POTFILES.in"
- echo '# List of source files which contain translatable strings.' > "$srcdir/po/POTFILES.in"
- else
- echo "Create initial po/POTFILES.in"
- fi
- $do_changelog && func_poChangeLog_add_entry " * POTFILES.in: New file."
- please="$please
- Please fill po/POTFILES.in as described in the documentation.
- "
- fi
- $do_changelog && func_poChangeLog_finish
- # Determine whether we can assume automake 1.9 or newer.
- have_automake19=
- if (aclocal --version) >/dev/null 2>/dev/null; then
- aclocal_version=`aclocal --version | sed -n -e 1p | sed -e 's/^[^0-9]*//'`
- case $aclocal_version in
- 1.9* | 1.[1-9][0-9]* | [2-9]*) have_automake19=yes ;;
- esac
- fi
- m4filelist='gettext.m4 iconv.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 nls.m4
- po.m4 progtest.m4'
- # With aclocal versions < 1.9 we need all m4 files, otherwise "aclocal -I m4"
- # might give an error. (aclocal < 1.9 didn't know which macros are really
- # needed, it looked which macros are potentially needed.)
- min_automake_version=1.9
- if test -n "$intldir" || test -z "$have_automake19"; then
- # Add intldir.m4, intl.m4 and its dependencies.
- m4filelist=$m4filelist' codeset.m4 glibc2.m4 glibc21.m4 intdiv0.m4 intl.m4
- intldir.m4 intmax.m4 inttypes_h.m4 inttypes-pri.m4 lcmessage.m4 lock.m4
- longdouble.m4 longlong.m4 printf-posix.m4 size_max.m4 stdint_h.m4
- uintmax_t.m4 ulonglong.m4 visibility.m4 wchar_t.m4 wint_t.m4 xsize.m4'
- min_automake_version=1.8
- fi
- # All sorts of bugs could occur if the configure file was remade with the wrong
- # version of gettext.m4 et al. (because then the configure and the po/Makefile.in.in
- # don't fit together). It is therefore important that the package carries the
- # right versions of gettext.m4 et al. with it.
- if test -f "$srcdir/Makefile.am"; then
- # A package using automake.
- # Determine whether it's using automake 1.8 or newer.
- have_automake18=
- if (aclocal --version) >/dev/null 2>/dev/null; then
- aclocal_version=`aclocal --version | sed -n -e 1p | sed -e 's/^[^0-9]*//'`
- case $aclocal_version in
- 1.[8-9]* | 1.[1-9][0-9]* | [2-9]*) have_automake18=yes ;;
- esac
- fi
- # Extract the macro directory name from Makefile.am.
- aclocal_amflags=`grep '^ACLOCAL_AMFLAGS[ ]*=' "$srcdir/Makefile.am" | sed -e 's/^ACLOCAL_AMFLAGS[ ]*=\(.*\)$/\1/'`
- m4dir=m4
- m4dir_defaulted=yes
- m4dir_is_next=
- for arg in $aclocal_amflags; do
- if test -n "$m4dir_is_next"; then
- # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
- case "$arg" in
- /*) ;;
- *)
- m4dir="$arg"
- m4dir_defaulted=
- break
- ;;
- esac
- m4dir_is_next=
- else
- if test "X$arg" = "X-I"; then
- m4dir_is_next=yes
- else
- m4dir_is_next=
- fi
- fi
- done
- # Decide whether to use $m4dir/ChangeLog, or to use ChangeLog instead.
- if test -d "$srcdir/$m4dir" && test -f "$srcdir/ChangeLog" && test ! -f "$srcdir/$m4dir/ChangeLog"; then
- # The programmer has no $m4dir/ChangeLog so far. Don't introduce one.
- using_m4ChangeLog=
- fi
- # Update the *.m4 files and the corresponding Makefile.am.
- $do_changelog && func_m4ChangeLog_init
- added_m4dir=
- added_m4files=
- if test -d "$srcdir/$m4dir"; then
- :
- else
- if $doit; then
- echo "Creating directory $m4dir"
- mkdir "$srcdir/$m4dir"
- else
- echo "Create directory $m4dir"
- fi
- added_m4dir=yes
- fi
- for file in $m4filelist; do
- same=no
- if test -f "$srcdir/$m4dir/$file"; then
- if cmp -s "/usr/share/aclocal/$file" "$srcdir/$m4dir/$file"; then
- same=yes
- fi
- else
- added_m4files="$added_m4files $file"
- fi
- if $do_changelog && test $same = no; then
- if test -f "$srcdir/$m4dir/$file"; then
- func_m4ChangeLog_add_entry " * $file: Upgrade to gettext-${version}."
- else
- func_m4ChangeLog_add_entry " * $file: New file, from gettext-${version}."
- fi
- fi
- func_backup "$m4dir/$file"
- func_linkorcopy "/usr/share/aclocal/$file" "/usr/share/aclocal/$file" "$m4dir/$file"
- done
- missing_m4Makefileam=
- if test -n "$added_m4files"; then
- if test -f "$srcdir/$m4dir/Makefile.am"; then
- if $doit; then
- echo "Updating EXTRA_DIST in $m4dir/Makefile.am (backup is in $m4dir/Makefile.am~)"
- func_backup "$m4dir/Makefile.am"
- rm -f "$srcdir/$m4dir/Makefile.am"
- if grep '^EXTRA_DIST[ ]*=' "$srcdir/$m4dir/Makefile.am~" > /dev/null; then
- sed -e "s%^\(EXTRA_DIST[ ]*=\) \\?%\\1$added_m4files %" < "$srcdir/$m4dir/Makefile.am~" > "$srcdir/$m4dir/Makefile.am"
- $do_changelog && func_m4ChangeLog_add_entry " * Makefile.am (EXTRA_DIST): Add the new files."
- else
- (cat "$srcdir/$m4dir/Makefile.am~"; echo; echo "EXTRA_DIST =$added_m4files") > "$srcdir/$m4dir/Makefile.am"
- $do_changelog && func_m4ChangeLog_add_entry " * Makefile.am (EXTRA_DIST): New variable."
- fi
- else
- echo "Update EXTRA_DIST in $m4dir/Makefile.am"
- $do_changelog && func_m4ChangeLog_add_entry " * Makefile.am (EXTRA_DIST)."
- fi
- else
- # $m4dir/Makefile.am is not needed any more when aclocal 1.8 or newer
- # is used.
- if test -z "$have_automake18"; then
- if $doit; then
- echo "Creating $m4dir/Makefile.am"
- echo "EXTRA_DIST =$added_m4files" > "$srcdir/$m4dir/Makefile.am"
- else
- echo "Create $m4dir/Makefile.am"
- fi
- $do_changelog && func_m4ChangeLog_add_entry " * Makefile.am: New file."
- added_acoutput="$added_acoutput $m4dir/Makefile"
- else
- missing_m4Makefileam=yes
- fi
- fi
- fi
- if test -n "$added_m4dir" && test -z "$missing_m4Makefileam"; then
- added_directories="$added_directories $m4dir"
- fi
- $do_changelog && func_m4ChangeLog_finish
- # automake will arrange for $m4dir/ChangeLog to be distributed if a
- # $m4dir/Makefile.am exists. If not, we need to add it to Makefile.am's
- # EXTRA_DIST explicitly.
- if test -n "$created_m4ChangeLog" && test -n "$missing_m4Makefileam"; then
- added_extradist="$added_extradist $m4dir/ChangeLog"
- fi
- # Update the top-level Makefile.am.
- modified_Makefile_am=
- # func_modify_Makefile_am changelog_comment
- # assumes a modified copy of $srcdir/Makefile.am in $srcdir/Makefile.am.tmp
- # and replaces the original Makefile.am file with the modified one if
- # the two files differ. Then it removes the modified copy.
- func_modify_Makefile_am ()
- {
- if cmp -s "$srcdir/Makefile.am" "$srcdir/Makefile.am.tmp"; then
- :
- else
- if test -z "$modified_Makefile_am"; then
- if $doit; then
- echo "Updating Makefile.am (backup is in Makefile.am~)"
- func_backup Makefile.am
- else
- echo "Update Makefile.am"
- fi
- fi
- if $doit; then
- rm -f "$srcdir/Makefile.am"
- cp "$srcdir/Makefile.am.tmp" "$srcdir/Makefile.am"
- fi
- if $do_changelog; then
- if test -z "$modified_Makefile_am"; then
- func_ChangeLog_add_entry " * Makefile.am $1"
- else
- func_ChangeLog_add_entry " $1"
- fi
- fi
- modified_Makefile_am=yes
- fi
- rm -f "$srcdir/Makefile.am.tmp"
- }
- if test -n "$added_directories"; then
- if grep '^SUBDIRS[ ]*=' "$srcdir/Makefile.am" > /dev/null; then
- sed -e "s%^\(SUBDIRS[ ]*=\) \\?%\\1$added_directories %" < "$srcdir/Makefile.am" > "$srcdir/Makefile.am.tmp"
- added_directories_pretty=`echo $added_directories | sed -e 's/ /, /g'`
- func_modify_Makefile_am "(SUBDIRS): Add $added_directories_pretty."
- else
- (cat "$srcdir/Makefile.am"; echo; echo "SUBDIRS =$added_directories") > "$srcdir/Makefile.am.tmp"
- func_modify_Makefile_am "(SUBDIRS): New variable."
- fi
- fi
- if test -n "$removed_directory"; then
- sed -e '/^SUBDIRS[ ]*=/ {
- :a
- s%\([ ]\)'"$removed_directory"'[ ]%\1%
- s%[ ]'"$removed_directory"'$%%
- tb
- :b
- s%\\$%\\%
- tc
- bd
- :c
- n
- ba
- :d
- }' < "$srcdir/Makefile.am" > "$srcdir/Makefile.am.tmp"
- func_modify_Makefile_am "(SUBDIRS): Remove $removed_directory."
- fi
- if test -n "$added_directories"; then
- if grep '^DIST_SUBDIRS[ ]*=' "$srcdir/Makefile.am" > /dev/null; then
- sed -e "s%^\(DIST_SUBDIRS[ ]*=\) \\?%\\1$added_directories %" < "$srcdir/Makefile.am" > "$srcdir/Makefile.am.tmp"
- added_directories_pretty=`echo $added_directories | sed -e 's/ /, /g'`
- func_modify_Makefile_am "(DIST_SUBDIRS): Add $added_directories_pretty."
- fi
- fi
- if test -n "$removed_directory"; then
- sed -e '/^DIST_SUBDIRS[ ]*=/ {
- :a
- s%\([ ]\)'"$removed_directory"'[ ]%\1%
- s%[ ]'"$removed_directory"'$%%
- tb
- :b
- s%\\$%\\%
- tc
- bd
- :c
- n
- ba
- :d
- }' < "$srcdir/Makefile.am" > "$srcdir/Makefile.am.tmp"
- func_modify_Makefile_am "(DIST_SUBDIRS): Remove $removed_directory."
- fi
- if test -n "$m4dir_defaulted"; then
- if grep '^ACLOCAL_AMFLAGS[ ]*=' "$srcdir/Makefile.am" > /dev/null; then
- sed -e "s%^\(ACLOCAL_AMFLAGS[ ]*=\) \\?%\\1 -I $m4dir %" < "$srcdir/Makefile.am" > "$srcdir/Makefile.am.tmp"
- func_modify_Makefile_am "(ACLOCAL_AMFLAGS): Add -I $m4dir."
- else
- (cat "$srcdir/Makefile.am"; echo; echo "ACLOCAL_AMFLAGS = -I $m4dir") > "$srcdir/Makefile.am.tmp"
- func_modify_Makefile_am "(ACLOCAL_AMFLAGS): New variable."
- fi
- # Also update Makefile.in and, if existent, Makefile. Otherwise they
- # would take into account the new flags only after a few rounds of
- # "./configure", "make", "touch configure.in", "make distclean".
- if $doit; then
- for file in Makefile.in Makefile; do
- if test -f "$srcdir/$file"; then
- func_backup $file
- rm -f "$srcdir/$file"
- sed -e "s%(ACLOCAL)%(ACLOCAL) -I $m4dir%" < "$srcdir/$file~" > "$srcdir/$file"
- fi
- done
- fi
- fi
- if test -n "$added_extradist"; then
- if grep '^EXTRA_DIST[ ]*=' "$srcdir/Makefile.am" > /dev/null; then
- sed -e "s%^\(EXTRA_DIST[ ]*=\)%\\1$added_extradist %" < "$srcdir/Makefile.am" > "$srcdir/Makefile.am.tmp"
- added_extradist_pretty=`echo $added_extradist | sed -e 's/ /, /g'`
- func_modify_Makefile_am "(EXTRA_DIST): Add $added_extradist_pretty."
- else
- (cat "$srcdir/Makefile.am"; echo; echo "EXTRA_DIST =$added_extradist") > "$srcdir/Makefile.am.tmp"
- func_modify_Makefile_am "(EXTRA_DIST): New variable."
- fi
- fi
- # Extract the aclocal options name from Makefile.am.
- aclocal_amflags=`grep '^ACLOCAL_AMFLAGS[ ]*=' "$srcdir/Makefile.am" | sed -e 's/^ACLOCAL_AMFLAGS[ ]*=\(.*\)$/\1/'`
- aclocal_options=
- m4dir_is_next=
- for arg in $aclocal_amflags; do
- if test -n "$m4dir_is_next"; then
- aclocal_options="$aclocal_options -I $arg"
- m4dir_is_next=
- else
- if test "X$arg" = "X-I"; then
- m4dir_is_next=yes
- else
- m4dir_is_next=
- fi
- fi
- done
- please="$please
- Please run 'aclocal$aclocal_options' to regenerate the aclocal.m4 file.
- You need aclocal from GNU automake $min_automake_version (or newer) to do this.
- Then run 'autoconf' to regenerate the configure file.
- "
- # Also create $m4dir/Makefile.in from $m4dir/Makefile.am, because automake
- # doesn't do it by itself.
- if $doit; then
- case "$added_acoutput" in
- *" $m4dir/Makefile")
- (cd "$srcdir" && automake "$m4dir/Makefile") 2>/dev/null ||
- please="$please
- Please run 'automake $m4dir/Makefile' to create $m4dir/Makefile.in
- "
- ;;
- esac
- fi
- else
- please="$please
- Please add the files
- $m4filelist
- from the /usr/share/aclocal directory to your aclocal.m4 file.
- "
- fi
- modified_configure_in=
- # func_modify_configure_in changelog_comment
- # assumes a modified copy of $srcdir/$configure_in in $srcdir/$configure_in.tmp
- # and replaces the original configure.in/ac file with the modified one if
- # the two files differ. Then it removes the modified copy.
- func_modify_configure_in ()
- {
- if cmp -s "$srcdir/$configure_in" "$srcdir/$configure_in.tmp"; then
- :
- else
- if test -z "$modified_configure_in"; then
- if $doit; then
- echo "Updating $configure_in (backup is in $configure_in~)"
- func_backup $configure_in
- else
- echo "Update $configure_in"
- fi
- fi
- if $doit; then
- rm -f "$srcdir/$configure_in"
- cp "$srcdir/$configure_in.tmp" "$srcdir/$configure_in"
- fi
- if $do_changelog; then
- if test -z "$modified_configure_in"; then
- func_ChangeLog_add_entry " * $configure_in $1"
- else
- func_ChangeLog_add_entry " $1"
- fi
- fi
- modified_configure_in=yes
- fi
- rm -f "$srcdir/$configure_in.tmp"
- }
- if test -n "$added_acoutput"; then
- if grep '^AC_CONFIG_FILES(' "$srcdir/$configure_in" > /dev/null; then
- sedprog='
- ta
- b
- :a
- n
- ba'
- sed -e "s%^\\(AC_CONFIG_FILES([^])\\,]*\\)%\\1$added_acoutput%$sedprog" < "$srcdir/$configure_in" > "$srcdir/$configure_in.tmp"
- added_acoutput_pretty=`echo $added_acoutput | sed -e 's/ /, /g'`
- func_modify_configure_in "(AC_CONFIG_FILES): Add $added_acoutput_pretty."
- else
- if grep '^AC_OUTPUT(' "$srcdir/$configure_in" > /dev/null; then
- sed -e "s%^\\(AC_OUTPUT([^])\\,]*\\)%\\1$added_acoutput%" < "$srcdir/$configure_in" > "$srcdir/$configure_in.tmp"
- added_acoutput_pretty=`echo $added_acoutput | sed -e 's/ /, /g'`
- func_modify_configure_in "(AC_OUTPUT): Add $added_acoutput_pretty."
- else
- please="$please
- Please add$added_acoutput to the AC_OUTPUT or AC_CONFIG_FILES invocation in the $configure_in file.
- "
- fi
- fi
- fi
- if test -n "$removed_acoutput"; then
- for file in $removed_acoutput; do
- tag=
- sedprog='{
- s%\([[ ]\)'"$file"'[ ]%\1%
- s%\([[ ]\)'"$file"'\([]),]\)%\1\2%
- s%[[ ]'"$file"'$%%
- :a
- tb
- :b
- s%\\$%\\%
- tc
- bd
- :c
- n
- s%\([ ]\)'"$file"'[ ]%\1%
- s%\([ ]\)'"$file"'\([]),]\)%\1\2%
- s%[ ]'"$file"'$%%
- ba
- :d
- }'
- sed -e '/^AC_CONFIG_FILES(/'"$sedprog" < "$srcdir/$configure_in" > "$srcdir/$configure_in.tmp"
- if cmp -s "$srcdir/$configure_in" "$srcdir/$configure_in.tmp"; then
- sed -e '/^AC_OUTPUT(/'"$sedprog" < "$srcdir/$configure_in" > "$srcdir/$configure_in.tmp"
- if cmp -s "$srcdir/$configure_in" "$srcdir/$configure_in.tmp"; then
- :
- else
- tag=AC_OUTPUT
- fi
- else
- tag=AC_CONFIG_FILES
- fi
- if test -n "$tag"; then
- func_modify_configure_in "($tag): Remove $file."
- else
- rm -f "$srcdir/$configure_in.tmp"
- if test "$file" != intl/intlh.inst; then
- please="$please
- Please remove $file from the AC_OUTPUT or AC_CONFIG_FILES invocation
- in the $configure_in file.
- "
- fi
- fi
- done
- fi
- sed -e 's%sed -e "/POTFILES =/r po/POTFILES" po/Makefile\.in > po/Makefile *;* *%%' < "$srcdir/$configure_in" > "$srcdir/$configure_in.tmp"
- func_modify_configure_in "(AC_OUTPUT): Remove command that created po/Makefile."
- sed -e '/^\(dnl \|\)AC_LINK_FILES(\$nls_cv_header_libgt, \$nls_cv_header_intl)$/d' < "$srcdir/$configure_in" > "$srcdir/$configure_in.tmp"
- func_modify_configure_in "(AC_LINK_FILES): Remove invocation."
- sed -e 's/^AM_GNU_GETTEXT_VERSION([^()]*)/AM_GNU_GETTEXT_VERSION(['"$version"'])/' < "$srcdir/$configure_in" > "$srcdir/$configure_in.tmp"
- func_modify_configure_in "(AM_GNU_GETTEXT_VERSION): Bump to $version."
- $do_changelog && func_ChangeLog_finish
- # Recommend replacement for deprecated Makefile variables.
- use_libtool=`cat "$srcdir/$configure_in" | grep '^A[CM]_PROG_LIBTOOL'`
- for file in `(cd "$srcdir"; find . -name Makefile.am -print; find . -name Makefile.in -print) | sed -e 's,^\./,,'`; do
- if test -f "$srcdir/$file"; then
- if test `echo "$file" | sed -e 's,^.*/,,'` = Makefile.in && grep automake "$srcdir/$file" >/dev/null 2>&1; then
- continue;
- fi
- # INTLLIBS is deprecated because it doesn't distinguish the two
- # cases: with libtool, without libtool.
- if grep '@''INTLLIBS''@' "$srcdir/$file" >/dev/null 2>&1; then
- if test -n "$use_libtool"; then
- please="$please
- Please change $file to use @""LTLIBINTL""@ or @""LIBINTL""@ instead of
- @""INTLLIBS""@. Which one, depends whether it is used with libtool or not.
- @""INTLLIBS""@ will go away.
- "
- else
- please="$please
- Please change $file to use @""LIBINTL""@ instead of @""INTLLIBS""@.
- @""INTLLIBS""@ will go away.
- "
- fi
- fi
- # DATADIRNAME is deprecated because we install only .gmo files nowadays,
- # which can be stored in the platform independent $prefix/share hierarchy.
- if grep '@''DATADIRNAME''@' "$srcdir/$file" >/dev/null 2>&1; then
- please="$please
- Please change $file to use the constant string \"share\" instead of
- @""DATADIRNAME""@. @""DATADIRNAME""@ will go away.
- "
- fi
- # INSTOBJEXT is deprecated because we install only .gmo files nowadays,
- # no catgets .cat catalogs.
- if grep '@''INSTOBJEXT''@' "$srcdir/$file" >/dev/null 2>&1; then
- please="$please
- Please change $file to use the constant string \".mo\" instead of
- @""INSTOBJEXT""@. @""INSTOBJEXT""@ will go away.
- "
- fi
- # GENCAT is deprecated because we install no catgets catalogs anymore.
- if grep '@''GENCAT''@' "$srcdir/$file" >/dev/null 2>&1; then
- please="$please
- Please change $file to use the constant string \"gencat\" instead of
- @""GENCAT""@. @""GENCAT""@ will go away. Maybe you don't even need it any more?
- "
- fi
- # POSUB is deprecated because it causes "./configure --disable-nls", "make",
- # "make dist" to create a buggy tarfile.
- if grep '@''POSUB''@' "$srcdir/$file" >/dev/null 2>&1; then
- please="$please
- Please change $file to use the constant string \"po\" instead of
- @""POSUB""@. @""POSUB""@ will go away.
- "
- fi
- fi
- done
- # Recommend replacement for deprecated configure variables.
- if grep '\$nls_cv_header_' "$srcdir/$configure_in" >/dev/null 2>&1; then
- please="$please
- Please stop using \$nls_cv_header_intl or \$nls_cv_header_libgt in the
- $configure_in file. Both will go away. Use <libintl.h> or \"gettext.h\" instead.
- "
- fi
- # Recommend fetching config.guess and config.sub.
- if test -f "$srcdir/$auxdir"config.guess && test -f "$srcdir/$auxdir"config.sub; then
- :
- else
- please="$please
- You will also need config.guess and config.sub, which you can get from the CVS
- of the 'config' project at http://savannah.gnu.org/. The commands to fetch them
- are
- \$ wget 'http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess'
- \$ wget 'http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub'
- "
- fi
- if $doit; then
- echo "$please"
- echo "You might also want to copy the convenience header file gettext.h"
- echo "from the $gettext_dir directory into your package."
- echo "It is a wrapper around <libintl.h> that implements the configure --disable-nls"
- echo "option."
- echo
- count=`echo "$please" | grep '^$' | wc -l`
- count=`echo "$count" | sed -e 's/[ ]//g'`
- case "$count" in
- 1) count="paragraph";;
- 2) count="two paragraphs";;
- 3) count="three paragraphs";;
- 4) count="four paragraphs";;
- 5) count="five paragraphs";;
- *) count="$count paragraphs";;
- esac
- echo "Press Return to acknowledge the previous $count."
- # Read from /dev/tty, not stdin, so that gettextize cannot be abused by
- # non-interactive tools.
- read dummy < /dev/tty
- fi
- exit 0
|