123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576 |
- #! /bin/sh
- progname=$0
- package=gettext-tools
- version=0.17
- prefix="/usr"
- datarootdir="${prefix}/share"
- gettext_dir="/usr/share/gettext"
- func_tmpdir ()
- {
-
-
-
- : ${TMPDIR=/tmp}
- {
-
-
- tmp=`(umask 077 && mktemp -d "$TMPDIR/gtXXXXXX") 2>/dev/null` &&
- test -n "$tmp" && test -d "$tmp"
- } ||
- {
-
-
-
-
-
- tmp=$TMPDIR/gt$$-$RANDOM
- (umask 077 && mkdir "$tmp")
- } ||
- {
- echo "$0: cannot create a temporary directory in $TMPDIR" >&2
- { (exit 1); exit 1; }
- }
- }
- func_find_curr_installdir ()
- {
-
- curr_executable="$0"
- case "$curr_executable" in
- */* | *\\*) ;;
- *)
- 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
-
- case "$curr_executable" in
- /* | ?:/* | ?:\\*) ;;
- *) curr_executable=`pwd`/"$curr_executable" ;;
- esac
-
- 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,/[^/]*$,,'`
-
- curr_installdir=`cd "$curr_installdir" && pwd`
- }
- func_find_prefixes ()
- {
-
-
- 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"
- func_find_curr_installdir
- func_find_prefixes
-
- gettext_dir=`echo "$gettext_dir/" | sed -e "s%^${orig_installprefix}/%${curr_installprefix}/%" | sed -e 's,/$,,'`
- fi
- func_usage ()
- {
- echo "\
- Usage: autopoint [OPTION]...
- Copies standard gettext infrastructure files into a source package.
- Options:
- --help print this help and exit
- --version print version information and exit
- -f, --force force overwriting of files that already exist
- -n, --dry-run print modifications but don't perform them"
- echo "
- Report bugs to <bug-gnu-gettext@gnu.org>."
- }
- func_version ()
- {
- echo "$progname (GNU $package) $version"
- echo "Copyright (C) 2002-2007 Free Software Foundation, Inc.
- License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
- This is free software: you are free to change and redistribute it.
- There is NO WARRANTY, to the extent permitted by law."
- echo "Written by" "Bruno Haible"
- }
- func_fatal_error ()
- {
- echo "autopoint: *** $1" 1>&2
- echo "autopoint: *** Stop." 1>&2
- exit 1
- }
- {
- force=
- ver=
- doit=:
- while test $# -gt 0; do
- case "$1" in
- -n | --dry-run | --dry-ru | --dry-r | --dry- | --dry | --dr | --d )
- shift
- doit=false ;;
- -f | --force | --forc | --for | --fo | --f )
- shift
- force=yes ;;
- --help | --hel | --he | --h )
- func_usage; exit 0 ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v )
- func_version
- exit 0 ;;
- -- )
- shift; break ;;
- -* )
- echo "autopoint: unknown option $1" 1>&2
- echo "Try 'autopoint --help' for more information." 1>&2
- exit 1 ;;
- * )
- break ;;
- esac
- done
- }
- {
- if test $# -gt 0; then
- func_usage 1>&2
- exit 1
- fi
- }
- srcdir=`pwd`
- if test -f configure.in; then
- configure_in=configure.in
- else
- if test -f configure.ac; then
- configure_in=configure.ac
- else
-
- if test -f configure.in.in; then
- configure_in=configure.in.in
- else
- func_fatal_error "Missing configure.in or configure.ac, please cd to your package first."
- fi
- fi
- fi
- xver=`cat "$configure_in" | grep '^AM_GNU_GETTEXT_VERSION(' | sed -e 's/^AM_GNU_GETTEXT_VERSION(\([^()]*\))/\1/p' | sed -e 's/^\[\(.*\)\]$/\1/' | sed -e 1q`
- if test -z "$xver" && test -f intl/VERSION; then
- xver=`cat intl/VERSION | LC_ALL=C sed -n -e 's/^.*gettext-\([-+_.0-9A-Za-z]*\).*$/\1/p'`
- fi
- if test -n "$xver"; then
- if test -n "$ver"; then
- if test "X$ver" != "X$xver"; then
- func_fatal_error "Version mismatch: specified -V $ver but the package uses gettext version $xver"
- fi
- else
- ver="$xver"
- fi
- else
- if test -z "$ver"; then
- func_fatal_error "Missing version: please specify in $configure_in through a line 'AM_GNU_GETTEXT_VERSION(x.yy.zz)' the gettext version the package is using"
- fi
- fi
- case "$ver" in
- 0.10.35 | 0.10.36 | 0.10.37 | 0.10.38 | 0.10.39 | 0.10.40 | \
- 0.11 | 0.11.1 | 0.11.2 | 0.11.3 | 0.11.4 | 0.11.5 | \
- 0.12 | 0.12.1 | \
- 0.13 | 0.13.1 | \
- 0.14 | 0.14.1 | 0.14.2 | 0.14.3 | 0.14.4 | 0.14.5 | 0.14.6 | \
- 0.15 | \
- 0.16 | 0.16.1 | \
- 0.17 )
- ;;
- *)
- func_fatal_error "The AM_GNU_GETTEXT_VERSION declaration in your $configure_in\
- file requires the infrastructure from gettext-$ver but this version\
- is older. Please upgrade to gettext-$ver or newer."
- ;;
- esac
- (cvs -v) >/dev/null 2>/dev/null || func_fatal_error "cvs program not found"
- 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
- m4dir=m4
- if test -f Makefile.am; then
-
-
- aclocal_amflags=`grep '^ACLOCAL_AMFLAGS[ ]*=' Makefile.am | sed -e 's/^ACLOCAL_AMFLAGS[ ]*=\(.*\)$/\1/'`
- m4dir_is_next=
- for arg in $aclocal_amflags; do
- if test -n "$m4dir_is_next"; then
- m4dir="$arg"
- break
- else
- if test "X$arg" = "X-I"; then
- m4dir_is_next=yes
- else
- m4dir_is_next=
- fi
- fi
- done
- fi
- omitintl=`cat "$configure_in" | grep '^AM_GNU_GETTEXT' | sed -n -e 's/^AM_GNU_GETTEXT(\([^(),]*\).*$/\1/p' | sed -e 's/^\[\(.*\)\]$/\1/' | sed -e 1q`
- omitintl=`if test 'external' = "$omitintl"; then echo yes; fi`
- cvs_dir=tmpcvs$$
- work_dir=tmpwrk$$
- (umask 077 && mkdir "$cvs_dir") || {
- if test -d "$cvs_dir"; then
- func_fatal_error "directory $cvs_dir already exists"
- else
- func_fatal_error "cannot create directory $cvs_dir"
- fi
- }
- mkdir "$work_dir" || {
- if test -d "$work_dir"; then
- func_fatal_error "directory $work_dir already exists"
- else
- func_fatal_error "cannot create directory $work_dir"
- fi
- }
- CVSROOT="$srcdir/$cvs_dir"
- export CVSROOT
- unset CVS_CLIENT_LOG
- unset CVS_CLIENT_PORT
- unset CVS_IGNORE_REMOTE_ROOT
- unset CVS_PASSFILE
- unset CVS_PASSWORD
- unset CVS_RCMD_PORT
- unset CVS_RSH
- unset CVS_SERVER
- unset CVS_SERVER_SLEEP
- unset CVSIGNORE
- unset CVSREAD
- unset CVSUMASK
- unset CVSWRAPPERS
- cvs -d "$CVSROOT" init
- gzip -d -c < "$gettext_dir/archive.tar.gz" | (cd "$cvs_dir" && tar xf -)
- cd "$work_dir"
- cvsver=gettext-`echo "$ver" | sed -e 's/\./_/g'`
- (cvs checkout -r"$cvsver" archive > /dev/null) 2>&1 | grep -v '^cvs checkout: Updating'
- find archive -name CVS -type d -print | xargs rm -rf
- if test `find archive -name CVS -type d -print | wc -l` != 0; then
- cd ..
- rm -rf "$cvs_dir" "$work_dir"
- func_fatal_error "failed to remove all CVS subdirectories"
- fi
- if test `find archive -type f -print | wc -l` = 0; then
- cd ..
- rm -rf "$cvs_dir" "$work_dir"
- func_fatal_error "infrastructure files for version $ver not found; this is autopoint from GNU $package $version"
- fi
- cd ..
- func_destfile ()
- {
-
-
-
-
-
-
- sharedowner=
- case `echo "$1" | sed -e 's,[^/]*$,,'` in
- "" )
- case "$1" in
- config.rpath ) destfile="$auxdir$1" ;;
- mkinstalldirs ) destfile="$auxdir$1" sharedowner=yes ;;
- * ) destfile="$1" ;;
- esac
- ;;
- m4/ ) destfile=`echo "$1" | sed -e "s,^m4/,$m4dir/,"` ;;
- intl/ ) if test -n "$omitintl"; then destfile=""; else destfile="$1"; fi ;;
- * ) destfile="$1" ;;
- esac
- }
- if test -z "$force"; then
- mismatch=
- func_tmpdir
- mismatchfile="$tmp"/autopoint.diff
- for file in `find "$work_dir/archive" -type f -print | sed -e "s,^$work_dir/archive/,," | LC_ALL=C sort`; do
- func_destfile "$file"
- if test -n "$destfile"; then
- if test -f "$destfile"; then
- if cmp -s "$work_dir/archive/$file" "$destfile"; then
- :
- else
- if test -n "$sharedowner"; then
- echo "autopoint: warning: File $destfile has been locally modified." 1>&2
- else
- echo "autopoint: File $destfile has been locally modified." 1>&2
- mismatch=yes
- diff -c "$work_dir/archive/$file" "$destfile" | sed -e "1s,$work_dir/archive/,," >> "$mismatchfile"
- fi
- fi
- fi
- fi
- done
- if test -n "$mismatch"; then
- rm -rf "$cvs_dir" "$work_dir"
- func_fatal_error "Some files have been locally modified. Not overwriting them because --force has not been specified. For your convenience, you find the local modifications in the file '$mismatchfile'."
- fi
- rm -rf "$tmp"
- fi
- func_mkdir_for ()
- {
- base=`echo "$1" | sed -e 's,/[^/]*$,,'`
- if test "X$base" != "X$1" && test -n "$base"; then
- func_mkdir_for "$base"
-
- base=`echo "$1" | sed -e 's,/[^/]*$,,'`
- test -d "$base" || { echo "Creating directory $base"; mkdir "$base"; }
- fi
- }
- func_copy ()
- {
- if $doit; then
- func_mkdir_for "$2"
- rm -f "$2"
- echo "Copying file $2"
- cp "$1" "$2"
- else
- echo "Copy file $2"
- fi
- }
- func_backup ()
- {
- if $doit; then
- if test -f "$1"; then
- rm -f "$1~"
- cp -p "$1" "$1~"
- fi
- fi
- }
- for file in `find "$work_dir/archive" -type f -print | sed -e "s,^$work_dir/archive/,," | LC_ALL=C sort`; do
- func_destfile "$file"
- mustcopy=
- if test -n "$destfile"; then
- if test -f "$destfile"; then
- if cmp -s "$work_dir/archive/$file" "$destfile"; then
- :
- else
- if test -n "$force"; then
-
- mustcopy=yes
- fi
-
-
- fi
- else
- mustcopy=yes
- fi
- fi
- if test -n "$mustcopy"; then
- func_backup "$destfile"
- func_copy "$work_dir/archive/$file" "$destfile"
- fi
- done
- rm -rf "$cvs_dir" "$work_dir"
- exit 0
|