1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
#!/bin/bash
# This will prepare a distribution tarball directly from the svn sources of
# the PLplot project.
# CAVEAT: this script silently and completely deletes a directory called
# /tmp/plplot-dist-prep
# Copyright (C) 2003, 2004 Rafael Laboissiere
# Copyright (C) 2006, 2013 Alan W. Irwin
#
# This file is part of PLplot.
#
# PLplot is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as published
# by the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# PLplot 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 Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with PLplot; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# $Id: make_tarball.sh 12554 2013-09-30 07:01:15Z airwin $
usage () {
local prog=`basename $0`
echo "Usage: $prog [-n] \\"
echo " [-c [-i prefix] [-o cmake options]] \\"
echo " $prog -d"
echo " $prog -h"
echo
echo "Option -n prevents pre-building anything including the DocBook manual."
echo "When option -c is given, the generated tarball is"
echo " unpacked, configured with cmake and built with make, and"
echo " the ctest (build-tree tests) is run afterward."
echo " If the -i prefix option is specified in addition to -c,"
echo " the configuration is done with the specified install prefix"
echo " and make install is run after ctest."
echo " WARNING: the prefix directory is completely removed before the"
echo " install so be careful what you specify for the -i option."
echo " If the -o cmake options option is specified in addition to -c,"
echo " those options are used for the configuration of the unpacked"
echo " tarball."
echo "Option -d prints the default values."
echo "Option -h prints this usage information."
exit $1
}
DOC_ARG=${DOC_ARG:--DBUILD_DOC=ON}
# Just easier to always keep this temporary directory in the same location
SVNTMPDIR=/tmp/plplot-dist-prep
# Put here extra cmake options that should always be used when
# generating a tarball
config_opt=""
# Put here extra make options
# Parallel builds for extra speed on multiprocessing boxes
make_opt="-j3"
print_defaults () {
local v
for v in DOC_ARG SVN_URL ; do
eval "echo $v=\\\"\$$v\\\""
done
exit 0
}
do_check=no
prefix=""
PREBUILD_ARG="-DPREBUILD_DIST=ON"
PREBUILT_DOC_ARG="-DPREBUILT_DOC=ON"
do_prebuild_dist=yes
while getopts "cdhi:no:u:" option
do
case $option in
c) do_check=yes ;;
d) print_defaults ;;
h) usage 0 ;;
i) test -n "$OPTARG" || usage 1 ; prefix=$OPTARG ;;
n) DOC_ARG=;PREBUILD_ARG=;PREBUILT_DOC_ARG=;do_prebuild_dist=no ;;
o) config_opt="$config_opt $OPTARG" ;;
*) usage 1 ;;
esac
done
cleanup ( ) {
rm -rf $SVNTMPDIR
}
# Find absolute PATH of script without using readlink (since readlink is
# not available on all platforms). Followed advice at
# http://fritzthomas.com/open-source/linux/551-how-to-get-absolute-path-within-shell-script-part2/
ORIGINAL_PATH="$(pwd)"
cd "$(dirname $0)"
# Absolute Path of the script
SCRIPT_PATH="$(pwd)"
cd "${ORIGINAL_PATH}"
# Assumption: top-level source tree is parent directory of where script
# is located.
SOURCE_TREE="$(dirname ${SCRIPT_PATH})"
cleanup
mkdir $SVNTMPDIR
cd $SVNTMPDIR
svn export $SOURCE_TREE plplot \
&& mkdir build_dir \
&& cd build_dir \
&& cmake -DCMAKE_VERBOSE_MAKEFILE=ON \
${PREBUILD_ARG} ${DOC_ARG} -DBUILD_DOX_DOC=ON \
../plplot >& cmake.out \
&& echo "Making distribution." \
&& (if [ "$do_prebuild_dist" = "yes" ] ; then
make ${make_opt} prebuild_dist >& make_prebuild_dist.out
fi) \
&& make ${make_opt} package_source >& make_package_source.out \
&& TARBALL=`ls plplot-*.tar.gz` \
&& DISTDIR=`echo $TARBALL | sed s/.tar.gz//` \
&& mv $TARBALL .. \
&& cd .. \
&& echo "distribution tarball: $TARBALL" \
&& test "$do_check" = "yes" \
&& tar xfz $TARBALL \
&& mkdir ctest_build_dir \
&& ( cd ctest_build_dir \
&& cmake ${config_opt} -DCMAKE_INSTALL_PREFIX:PATH=${prefix} \
-DCMAKE_VERBOSE_MAKEFILE=ON ${PREBUILT_DOC_ARG} -DBUILD_DOX_DOC=ON \
-DBUILD_TEST=ON \
../plplot >& cmake.out \
&& make ${make_opt} >& make.out \
&& ctest >& ctest.out \
&& test -n "$prefix" \
&& rm -rf ${prefix} \
&& make ${make_opt} install >& make_install.out )
|