libraries/redland: Updated for version 1.0.9

This commit is contained in:
Heinz Wiesinger 2010-05-12 17:42:10 +02:00 committed by David Somero
parent e6840b4ba8
commit a1e674cc2c
3 changed files with 19 additions and 12 deletions

View file

@ -5,5 +5,4 @@ each of the RDF concepts in its own class via an object based API,
reflected into the language APIs, currently C#, Java, Perl, PHP,
Python, Ruby and Tcl.
This requires raptor and rasqal, both of which are available at
SlackBuilds.org.
This requires raptor and rasqal.

View file

@ -2,7 +2,7 @@
# Slackware build script for redland
# Copyright 2007-2008 Heinz Wiesinger <hmwiesinger@gmx.at>
# Copyright 2007-2009 Heinz Wiesinger <pprkut@liwjatan.at>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,9 +23,9 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=redland
VERSION=1.0.8
VERSION=1.0.9
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
CWD=$(pwd)
@ -52,6 +52,13 @@ cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
# Fix loading of modular storage engine from external applications
# like SVN revision 15171
for i in MYSQL POSTGRESQL SQLITE TSTORE; do
sed -i "s/LIBADD = @${i}_LIBS@/LIBADD = @${i}_LIBS@ librdf.la/" \
src/Makefile.in
done
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
@ -60,7 +67,8 @@ CXXFLAGS="$SLKCFLAGS" \
--localstatedir=/var \
--mandir=/usr/man \
--disable-static \
--with-threads
--with-threads \
--build=$ARCH-slackware-linux
make
make install-strip DESTDIR=$PKG

View file

@ -1,8 +1,8 @@
PRGNAM="redland"
VERSION="1.0.8"
VERSION="1.0.9"
HOMEPAGE="http://librdf.org/"
DOWNLOAD="http://download.librdf.org/source/redland-1.0.8.tar.gz"
MD5SUM="ca66e26082cab8bb817185a116db809b"
MAINTAINER="ppr:kut"
EMAIL="HMWiesinger@gmx.at"
APPROVED="Erik Hanson"
DOWNLOAD="http://download.librdf.org/source/redland-1.0.9.tar.gz"
MD5SUM="e5ef0c29c55b4f0f5aeed7955b4d383b"
MAINTAINER="pprkut"
EMAIL="pprkut@liwjatan.at"
APPROVED="dsomero"