diff options
author | Thibaut Notteboom <tib@tibux.org> | 2012-12-26 08:05:34 +0100 |
---|---|---|
committer | Matteo Bernardini <ponce@slackbuilds.org> | 2012-12-26 21:36:43 +0100 |
commit | e0777db10608c668a7b7084157d50ed50733b10e (patch) | |
tree | 6bb0262bfa0447ee6d874b6a8abaf09d295f0145 /libraries | |
parent | 27e09d40a44b79704cc7ccfca13884e628d58e92 (diff) |
libraries/xml-security-c: Added (Apache XML security C++ library).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/xml-security-c/README | 6 | ||||
-rw-r--r-- | libraries/xml-security-c/slack-desc | 19 | ||||
-rw-r--r-- | libraries/xml-security-c/xml-security-c.SlackBuild | 96 | ||||
-rw-r--r-- | libraries/xml-security-c/xml-security-c.info | 10 |
4 files changed, 131 insertions, 0 deletions
diff --git a/libraries/xml-security-c/README b/libraries/xml-security-c/README new file mode 100644 index 000000000000..bf00eb325743 --- /dev/null +++ b/libraries/xml-security-c/README @@ -0,0 +1,6 @@ +The xml-security-c library is a C++ implementation of the XML Digital +Signature and Encryption specifications. The library makes use of the +Apache XML project's Xerces-C XML Parser and Xalan-C XSLT processor. +The latter is used for processingXPath and XSLT transforms. + +xalan-c is an optional dependency (autodetected). diff --git a/libraries/xml-security-c/slack-desc b/libraries/xml-security-c/slack-desc new file mode 100644 index 000000000000..441f9757cdcb --- /dev/null +++ b/libraries/xml-security-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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +xml-security-c: xml-security-c (Apache XML security C++ library) +xml-security-c: +xml-security-c: The xml-security-c library is a C++ implementation of the XML Digital +xml-security-c: Signature and Encryption specifications. The library makes use of the +xml-security-c: Apache XML project's Xerces-C XML Parser and Xalan-C XSLT processor. +xml-security-c: The latter is used for processingXPath and XSLT transforms. +xml-security-c: +xml-security-c: homepage: http://santuario.apache.org/cindex.html +xml-security-c: +xml-security-c: +xml-security-c: diff --git a/libraries/xml-security-c/xml-security-c.SlackBuild b/libraries/xml-security-c/xml-security-c.SlackBuild new file mode 100644 index 000000000000..5567b541863b --- /dev/null +++ b/libraries/xml-security-c/xml-security-c.SlackBuild @@ -0,0 +1,96 @@ +#!/bin/sh + +# Slackware build script for XML-Security-C + +# Copyright 2012 Thibaut Notteboom, Paris, FRANCE +# 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=xml-security-c +VERSION=${VERSION:-1.7.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +if [ -x /usr/bin/Xalan ]; then XALAN=""; else XALAN="out"; fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib$LIBDIRSUFFIX \ + --disable-static \ + --with$XALAN-xalan \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + CHANGELOG.txt INSTALL.txt LICENSE.txt NOTICE.txt \ + $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-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/xml-security-c/xml-security-c.info b/libraries/xml-security-c/xml-security-c.info new file mode 100644 index 000000000000..5eb72d8ce26d --- /dev/null +++ b/libraries/xml-security-c/xml-security-c.info @@ -0,0 +1,10 @@ +PRGNAM="xml-security-c" +VERSION="1.7.0" +HOMEPAGE="http://santuario.apache.org/cindex.html" +DOWNLOAD="http://mir2.ovh.net/ftp.apache.org/dist/santuario/c-library/xml-security-c-1.7.0.tar.gz" +MD5SUM="dbd258c8dff2c1c4a4ed082c8128900a" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="xerces-c" +MAINTAINER="Thibaut Notteboom" +EMAIL="tib@tibux.org" |