diff options
Diffstat (limited to 'libraries/xerces-c/xerces-c.SlackBuild')
-rw-r--r-- | libraries/xerces-c/xerces-c.SlackBuild | 101 |
1 files changed, 47 insertions, 54 deletions
diff --git a/libraries/xerces-c/xerces-c.SlackBuild b/libraries/xerces-c/xerces-c.SlackBuild index be03bff879b73..932caaf00fd26 100644 --- a/libraries/xerces-c/xerces-c.SlackBuild +++ b/libraries/xerces-c/xerces-c.SlackBuild @@ -2,29 +2,15 @@ # Slackware build script for xerces-c -# Copyright 2008 Heinz Wiesinger <hmwiesinger@gmx.at> -# All rights reserved. +# Copyright 2012 Robert Allen <slacker@slaphappygeeks.com> +# All rights reserved +# Including Creator Endowed Unalienable Rights # -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# This script is placed into the public domain by the author PRGNAM=xerces-c -VERSION=2.8.0 -BUILD=${BUILD:-3} +VERSION=3.1.1 +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -40,7 +26,12 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -SRCVER=$(echo $VERSION | tr . _) +############################################################################## +# WITHSAMPLES=1 will install samples to /usr/share/xerces-c-.../samples/ +# WITHDOCS=1 will install HTML docs to /usr/share/xerces-c-.../manual/ +WITHSAMPLES=${WITHSAMPLES:-0} +WITHDOCS=${WITHDOCS:-0} +############################################################################## if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" @@ -56,52 +47,54 @@ elif [ "$ARCH" = "x86_64" ]; then BITS=64 fi -set -e +set -eu rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-src_$SRCVER -tar xvzf $CWD/$PRGNAM-src_$SRCVER.tar.gz -cd $PRGNAM-src_$SRCVER +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . -cd src/xercesc/ - CFLAGS="$SLKCFLAGS" \ - CXXFLAGS="$SLKCFLAGS" \ - XERCESCROOT="$TMP/$PRGNAM-src_$SRCVER" \ - ./runConfigure \ - -p linux \ - -c gcc \ - -x g++ \ - -m inmem \ - -n socket \ - -t native \ - -r pthreads \ - -b $BITS \ - -P /usr \ - -C libdir=/usr/lib${LIBDIRSUFFIX} - -# I could not get this to compile with more than 1 job, XGizzmo - XERCESCROOT="$TMP/$PRGNAM-src_$SRCVER" \ - make -j1 - - XERCESCROOT="$TMP/$PRGNAM-src_$SRCVER" \ - ICUROOT=/usr \ - make install DESTDIR=$PKG -cd - - -# For now, it seems that the libdir flag is ignored, so... -if [ "$ARCH" = "x86_64" ]; then - mv $PKG/usr/lib $PKG/usr/lib64 +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --build=$ARCH-slackware-linux + +make -j1 +make install DESTDIR=$PKG + +if [ "$WITHSAMPLES" = "1" ]; then + find samples/ -type d -name '.deps' -exec rm -r '{}' \+ + find samples/ -type d -name '.libs' -exec rm -r '{}' \+ + find samples/ -type f -name '.dirstamp' -exec rm '{}' \+ + find samples/ -type f -name 'Makefile*' -exec rm '{}' \+ + find samples/ -type f -name '*.o' -exec rm '{}' \+ + mkdir -p $PKG/usr/share/$PRGNAM-$VERSION/samples + mv $PKG/usr/bin $PKG/usr/share/$PRGNAM-$VERSION/samples + cp -a samples/data samples/src $PKG/usr/share/$PRGNAM-$VERSION/samples +else + rm -rf $PKG/usr/bin +fi + +if [ "$WITHDOCS" = "1" ]; then + mkdir -p $PKG/usr/share/$PRGNAM-$VERSION/manual + cp -rf doc/html/* $PKG/usr/share/$PRGNAM-$VERSION/manual/. fi find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a KEYS LICENSE* NOTICE Readme.html STATUS credits.txt \ +cp -a CREDITS README KEYS LICENSE NOTICE \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |