diff options
author | Heinz Wiesinger <HMWiesinger@gmx.at> | 2010-05-11 22:24:27 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:24:27 +0200 |
commit | e85138a8c5b871fc36576ea8038ec5bce0b643f8 (patch) | |
tree | 86c3f9601abe086a1e7f06192a3f76c4c2ce7068 /libraries/xerces-c/xerces-c.SlackBuild | |
parent | 77deb3463d6c26a4a5cd4ee930d109b070d541ca (diff) | |
download | slackbuilds-e85138a8c5b871fc36576ea8038ec5bce0b643f8.tar.gz |
libraries/xerces-c: Updated for version 2.8.0
Diffstat (limited to 'libraries/xerces-c/xerces-c.SlackBuild')
-rw-r--r-- | libraries/xerces-c/xerces-c.SlackBuild | 70 |
1 files changed, 45 insertions, 25 deletions
diff --git a/libraries/xerces-c/xerces-c.SlackBuild b/libraries/xerces-c/xerces-c.SlackBuild index 2beb0f65e6..c4720ff651 100644 --- a/libraries/xerces-c/xerces-c.SlackBuild +++ b/libraries/xerces-c/xerces-c.SlackBuild @@ -1,64 +1,84 @@ #!/bin/sh # Slackware build script for xerces-c -# Written by ppr:kut <hmwiesinger@gmx.at> -set -e +# Copyright 2008 Heinz Wiesinger <hmwiesinger@gmx.at> +# All rights reserved. +# +# 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. PRGNAM=xerces-c -VERSION=src_2_8_0 -PKGVER=2.8.0 +VERSION=2.8.0 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} +SRCVER=$(echo $VERSION | tr . _) + if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" fi +set -e + rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvzf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION +rm -rf $PRGNAM-src_$SRCVER +tar xvzf $CWD/$PRGNAM-src_$SRCVER.tar.gz +cd $PRGNAM-src_$SRCVER chown -R root:root . chmod -R u+w,go+r-w,a-s . cd src/xercesc/ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ - XERCESCROOT="$TMP/$PRGNAM-$VERSION" \ - ICUROOT=/usr \ - ./runConfigure -p linux -c gcc -x g++ -m inmem -n socket -t icu -r pthread -P /usr - - XERCESCROOT="$TMP/$PRGNAM-$VERSION" \ - ICUROOT=/usr \ - make - - XERCESCROOT="$TMP/$PRGNAM-$VERSION" \ + XERCESCROOT="$TMP/$PRGNAM-src_$SRCVER" \ + ./runConfigure -p linux -c gcc -x g++ -m inmem -n socket -t native -r pthreads -P /usr + +# 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 - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) +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-$PKGVER +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a KEYS LICENSE* NOTICE Readme.html STATUS credits.txt \ - $PKG/usr/doc/$PRGNAM-$PKGVER -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$PKGVER/$PRGNAM.SlackBuild + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKGVER-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |