2003-09-23 15:51:10 -04:00
|
|
|
#!/bin/sh
|
2001-11-25 11:53:41 -05:00
|
|
|
|
|
|
|
# Copyright (C) 2001 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 of the License, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
2002-05-17 22:16:36 -04:00
|
|
|
# In addition, as a special exception, the Free Software Foundation
|
|
|
|
# gives permission to link the code of its release of Wget with the
|
|
|
|
# OpenSSL project's "OpenSSL" library (or with modified versions of it
|
|
|
|
# that use the same license as the "OpenSSL" library), and distribute
|
|
|
|
# the linked executables. You must obey the GNU General Public License
|
|
|
|
# in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
# modify this file, you may extend this exception to your version of the
|
|
|
|
# file, but you are not obligated to do so. If you do not wish to do
|
|
|
|
# so, delete this exception statement from your version.
|
|
|
|
|
2003-10-08 19:27:37 -04:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# This script creates a Wget distribution (wget-VERSION.tar.gz).
|
|
|
|
# It uses `make dist' to do most of the work, but corrects some
|
|
|
|
# things that `make dist' doesn't and can't do. Specifically:
|
|
|
|
#
|
|
|
|
# * Checks out the clean CVS source from the repository to a temporary
|
|
|
|
# directory.
|
|
|
|
# * Runs autoconf, configure and `make' in the doc and po subdirs to
|
|
|
|
# make sure that all the generated files, such as `confifure',
|
|
|
|
# `wget.info', and translated PO files, end up in the distribution.
|
|
|
|
# * Optionally changes src/version.c and doc/version.texi to the
|
|
|
|
# version forced by `--force-version'.
|
|
|
|
# * Runs `make dist' to produce the archive.
|
|
|
|
# * Removes the checkout.
|
|
|
|
#
|
|
|
|
# For example, to produce a Wget beta based on the latest CVS sources,
|
|
|
|
# with version "1.23-beta10", run `dist-wget --force-version 1.23-beta10'.
|
|
|
|
# You can choose which sources will be used by specifying `-D DATE'
|
|
|
|
# or `-r TAG'.
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
2003-09-23 15:51:10 -04:00
|
|
|
set -e
|
2002-05-20 23:40:10 -04:00
|
|
|
|
2001-11-25 11:53:41 -05:00
|
|
|
CVSROOT=:pserver:cvs@sunsite.dk:/pack/anoncvs
|
2002-05-20 23:27:17 -04:00
|
|
|
SUBDIR=wget.cvs.$$
|
2001-11-25 11:53:41 -05:00
|
|
|
DEBUG=no
|
|
|
|
|
2002-05-25 14:21:28 -04:00
|
|
|
EXPORT_TAG='-r HEAD'
|
2002-05-20 23:27:17 -04:00
|
|
|
VERSION=
|
2002-06-15 16:27:19 -04:00
|
|
|
MAKE=${MAKE-make}
|
2002-05-20 23:27:17 -04:00
|
|
|
|
2002-05-20 23:40:10 -04:00
|
|
|
if test x"$TMPDIR" = x
|
|
|
|
then
|
|
|
|
TMPDIR=/tmp
|
|
|
|
fi
|
|
|
|
DEST_DIR=`pwd`
|
|
|
|
|
2002-05-20 23:27:17 -04:00
|
|
|
while test x"$*" != x
|
|
|
|
do
|
|
|
|
case "$1" in
|
2001-11-25 11:53:41 -05:00
|
|
|
-d)
|
|
|
|
DEBUG=yes
|
|
|
|
;;
|
2002-05-20 23:27:17 -04:00
|
|
|
-D)
|
|
|
|
shift
|
2003-10-16 10:37:15 -04:00
|
|
|
EXPORT_TAG="-D $1"
|
2002-05-20 23:27:17 -04:00
|
|
|
;;
|
|
|
|
-r)
|
|
|
|
shift
|
2003-10-16 10:37:15 -04:00
|
|
|
EXPORT_TAG="-r $1"
|
2002-05-20 23:27:17 -04:00
|
|
|
;;
|
|
|
|
--force-version)
|
|
|
|
shift
|
|
|
|
VERSION=$1
|
2001-11-25 11:53:41 -05:00
|
|
|
;;
|
|
|
|
*)
|
2002-05-20 23:27:17 -04:00
|
|
|
echo "Usage: $0 [-d] [-r TAG | -D DATE]" >&2
|
2001-11-25 11:53:41 -05:00
|
|
|
exit 1
|
|
|
|
esac
|
2002-05-20 23:27:17 -04:00
|
|
|
shift
|
2001-11-25 11:53:41 -05:00
|
|
|
done
|
|
|
|
|
|
|
|
# Resolve echo -n incompatibilities.
|
|
|
|
e_n=-n
|
|
|
|
e_c=
|
2003-09-16 10:35:20 -04:00
|
|
|
if test x"`(echo -n foo; echo bar)`" != xfoobar; then
|
2001-11-25 11:53:41 -05:00
|
|
|
e_n=
|
|
|
|
e_c='\c'
|
|
|
|
fi
|
|
|
|
|
|
|
|
# File for output/errors redirection.
|
2002-05-20 23:40:10 -04:00
|
|
|
O=$DEST_DIR/dist-output
|
2001-11-25 11:53:41 -05:00
|
|
|
|
2002-05-20 23:40:10 -04:00
|
|
|
cd $TMPDIR
|
2001-11-25 11:53:41 -05:00
|
|
|
|
2002-05-20 23:40:10 -04:00
|
|
|
echo "Building wget dist in $TMPDIR/$SUBDIR."
|
|
|
|
echo "Output from commands is in $O."
|
2001-11-25 11:53:41 -05:00
|
|
|
|
|
|
|
echo "-----------" >$O
|
|
|
|
|
2002-05-20 23:27:17 -04:00
|
|
|
# Checkout clean sources from the repository.
|
2003-09-23 15:51:10 -04:00
|
|
|
echo $e_n "Exporting ($EXPORT_TAG) out the CVS tree to $TMPDIR/$SUBDIR... $e_c"
|
2002-05-20 23:27:17 -04:00
|
|
|
cvs -d $CVSROOT export $EXPORT_TAG -d $SUBDIR wget 1>>$O 2>&1
|
|
|
|
echo "done."
|
2001-11-25 11:53:41 -05:00
|
|
|
|
2002-05-20 23:27:17 -04:00
|
|
|
cd $SUBDIR
|
2001-11-25 11:53:41 -05:00
|
|
|
|
|
|
|
# Remove the dummy `Branches' directory.
|
|
|
|
rm -rf Branches 1>>$O 2>&1
|
|
|
|
|
2002-05-20 23:27:17 -04:00
|
|
|
# Force the version if required.
|
|
|
|
if test x"$VERSION" != x
|
|
|
|
then
|
|
|
|
echo "Forcing version to $VERSION."
|
2003-10-01 16:44:15 -04:00
|
|
|
echo "char *version_string = \"$VERSION\";" > src/version.c
|
|
|
|
echo "@set VERSION $VERSION" > doc/version.texi
|
2002-05-20 23:27:17 -04:00
|
|
|
fi
|
|
|
|
|
2001-11-25 11:53:41 -05:00
|
|
|
# Create configure and friends.
|
2002-05-20 23:46:57 -04:00
|
|
|
if test ! -f configure; then
|
2001-11-25 11:53:41 -05:00
|
|
|
echo $e_n "Creating \`configure' from \`configure.in'... $e_c"
|
2002-06-15 16:27:19 -04:00
|
|
|
$MAKE -f Makefile.cvs 1>>$O 2>&1
|
2001-11-25 11:53:41 -05:00
|
|
|
echo "done."
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove `Makefile' if it already exists.
|
|
|
|
if test -f Makefile; then
|
2002-06-15 16:27:19 -04:00
|
|
|
echo $e_n "Cleaning old Makefiles with \`$MAKE distclean'... $e_c"
|
|
|
|
$MAKE distclean 1>>$O 2>&1
|
2001-11-25 11:53:41 -05:00
|
|
|
echo "done."
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create a new `Makefile'.
|
|
|
|
echo $e_n "Running configure... $e_c"
|
|
|
|
CFLAGS=-g ./configure 1>>$O 2>&1
|
|
|
|
echo "done."
|
|
|
|
|
|
|
|
# Now build the MO files.
|
|
|
|
echo $e_n "Building MO files out of PO files... $e_c"
|
|
|
|
cd po
|
2002-06-15 16:27:19 -04:00
|
|
|
$MAKE 1>>$O 2>&1
|
2001-11-25 11:53:41 -05:00
|
|
|
cd ..
|
|
|
|
echo "done."
|
|
|
|
|
|
|
|
# Now build the Info documentation and the man page.
|
|
|
|
echo $e_n "Building Info and man documentation... $e_c"
|
|
|
|
cd doc
|
2002-06-15 16:27:19 -04:00
|
|
|
$MAKE 1>>$O 2>&1
|
2001-11-25 11:53:41 -05:00
|
|
|
cd ..
|
|
|
|
echo "done."
|
|
|
|
|
|
|
|
# Create the distribution file.
|
|
|
|
echo $e_n "Creating distribution tarball... $e_c"
|
2002-06-15 16:27:19 -04:00
|
|
|
$MAKE dist 1>>$O 2>&1
|
2003-09-23 16:00:59 -04:00
|
|
|
archive=`echo wget-*.tar.gz`
|
2003-09-23 16:06:50 -04:00
|
|
|
mv "$archive" $DEST_DIR
|
|
|
|
echo "$archive"
|
2001-11-25 11:53:41 -05:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
2002-05-20 23:27:17 -04:00
|
|
|
if test $DEBUG = no; then
|
|
|
|
rm -rf $SUBDIR 1>>$O 2>&1
|
2001-11-25 11:53:41 -05:00
|
|
|
fi
|