libraries/xerces-c: Updated for version 2.8.0

This commit is contained in:
Heinz Wiesinger 2010-05-11 22:24:27 +02:00 committed by David Somero
parent 77deb3463d
commit e85138a8c5
3 changed files with 48 additions and 31 deletions

View file

@ -2,7 +2,4 @@ Xerces-C++ is a validating XML parser written in a
portable subset of C++. Xerces-C++ makes it easy to
give your application the ability to read and write XML
data. A shared library is provided for parsing, generating,
manipulating, and validating XML documents.
You'll need icu4c to build this, which is also available at
Slackbuilds.org
manipulating, and validating XML documents.

View file

@ -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

View file

@ -1,8 +1,8 @@
PRGNAM="xerces-c"
VERSION="2.8.0"
HOMEPAGE="http://xml.apache.org/xerces-c/"
DOWNLOAD="http://www.apache.org/dist/xerces/c/sources/xerces-c-src_2_8_0.tar.gz"
DOWNLOAD="http://apache.mirrors.tds.net/xerces/c/2/sources/xerces-c-src_2_8_0.tar.gz"
MD5SUM="5daf514b73f3e0de9e3fce704387c0d2"
MAINTAINER="ppr:kut"
EMAIL="HMWiesinger@gmx.at"
APPROVED="rworkman"
APPROVED="David Somero"