diff options
author | Heinz Wiesinger <HMWiesinger@gmx.at> | 2010-05-11 20:01:05 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:01:05 +0200 |
commit | 7f9218533271ca964c75bb6b3b78810782c1662a (patch) | |
tree | eb3b9da9aa46a15db42acb9e49f2621ac6da5912 /libraries | |
parent | 602f558a2b6b88d8e9b8b89732250590c50d4316 (diff) | |
download | slackbuilds-7f9218533271ca964c75bb6b3b78810782c1662a.tar.gz |
libraries/xerces-c: Added to 12.0 repository
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/xerces-c/README | 8 | ||||
-rw-r--r-- | libraries/xerces-c/slack-desc | 19 | ||||
-rw-r--r-- | libraries/xerces-c/xerces-c.SlackBuild | 64 | ||||
-rw-r--r-- | libraries/xerces-c/xerces-c.info | 8 |
4 files changed, 99 insertions, 0 deletions
diff --git a/libraries/xerces-c/README b/libraries/xerces-c/README new file mode 100644 index 0000000000..72b9bb75ea --- /dev/null +++ b/libraries/xerces-c/README @@ -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
\ No newline at end of file diff --git a/libraries/xerces-c/slack-desc b/libraries/xerces-c/slack-desc new file mode 100644 index 0000000000..6ce71b3b44 --- /dev/null +++ b/libraries/xerces-c/slack-desc @@ -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: diff --git a/libraries/xerces-c/xerces-c.SlackBuild b/libraries/xerces-c/xerces-c.SlackBuild new file mode 100644 index 0000000000..2beb0f65e6 --- /dev/null +++ b/libraries/xerces-c/xerces-c.SlackBuild @@ -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 diff --git a/libraries/xerces-c/xerces-c.info b/libraries/xerces-c/xerces-c.info new file mode 100644 index 0000000000..032c0ebdea --- /dev/null +++ b/libraries/xerces-c/xerces-c.info @@ -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" |