libraries/xerces-c: Added to 12.0 repository

This commit is contained in:
Heinz Wiesinger 2010-05-11 20:01:05 +02:00 committed by Robby Workman
parent 602f558a2b
commit 7f92185332
4 changed files with 99 additions and 0 deletions

View file

@ -0,0 +1,8 @@
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

View file

@ -0,0 +1,19 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
xerces-c: xerces-c (XML Parser)
xerces-c:
xerces-c: Xerces-C++ is a validating XML parser written in a
xerces-c: portable subset of C++. Xerces-C++ makes it easy to
xerces-c: give your application the ability to read and write XML
xerces-c: data. A shared library is provided for parsing, generating,
xerces-c: manipulating, and validating XML documents.
xerces-c:
xerces-c: Homepage: http://xml.apache.org/xerces-c/
xerces-c:
xerces-c:

View file

@ -0,0 +1,64 @@
#!/bin/sh
# Slackware build script for xerces-c
# Written by ppr:kut <hmwiesinger@gmx.at>
set -e
PRGNAM=xerces-c
VERSION=src_2_8_0
PKGVER=2.8.0
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvzf $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-$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" \
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
)
mkdir -p $PKG/usr/doc/$PRGNAM-$PKGVER
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
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

View file

@ -0,0 +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"
MD5SUM="5daf514b73f3e0de9e3fce704387c0d2"
MAINTAINER="ppr:kut"
EMAIL="HMWiesinger@gmx.at"
APPROVED="rworkman"