postgis/make_dist.sh
Paul Ramsey 1de0d3d8ae Force generation of an svnrevision.h file when building in a repo and the svn executable is available.
Ensure that when building a tarball with make_dist.sh the revision is read from the tag in the remote svn repository.
This should cover both development and distribution cases.


git-svn-id: http://svn.osgeo.org/postgis/trunk@9079 b70326c6-7e19-0410-871a-916f4a2858ee
2012-02-07 23:27:57 +00:00

81 lines
1.4 KiB
Bash

#!/bin/sh
#
# USAGE:
#
# -- postgis-cvs.tar.gz
# sh make_dist.sh
#
# -- postgis-1.1.0.tar.gz
# sh make_dist.sh 1.1.0
#
# NOTE: will not work prior to 1.1.0
#
#
tag=trunk
version=cvs
if [ -n "$1" ]; then
version="$1"
#version=`echo $version | sed 's/RC/-rc/'`
#tag=pgis_`echo "$version" | sed 's/\./_/g'`
tag="tags/$version"
fi
outdir="postgis-$version"
package="postgis-$version.tar.gz"
if [ -d "$outdir" ]; then
echo "Output directory $outdir already exists."
exit 1
fi
echo "Exporting tag $tag"
svnurl="http://svn.osgeo.org/postgis/$tag"
svn export $svnurl "$outdir"
if [ $? -gt 0 ]; then
exit 1
fi
# remove .cvsignore, make_dist.sh and HOWTO_RELEASE
echo "Removing .cvsignore and make_dist.sh files"
find "$outdir" -name .cvsignore -exec rm {} \;
find "$outdir" -name .gitignore -exec rm {} \;
rm -f "$outdir"/make_dist.sh "$outdir"/HOWTO_RELEASE
# generating configure script and configuring
echo "Running autogen.sh; ./configure"
owd="$PWD"
cd "$outdir"
perl utils/svn_repo_revision.pl $svnurl
./autogen.sh
./configure
#make
cd "$owd"
# generating comments
echo "Generating documentation"
owd="$PWD"
cd "$outdir"/doc
make comments
if [ $? -gt 0 ]; then
exit 1
fi
make clean # won't drop the comment files
cd "$owd"
# Run make distclean
echo "Running make distclean"
owd="$PWD"
cd "$outdir"
make distclean
cd "$owd"
echo "Generating $package file"
tar czf "$package" "$outdir"
#echo "Cleaning up"
#rm -Rf "$outdir"