diff options
author | markd <markd> | 2009-07-23 09:33:20 +0000 |
---|---|---|
committer | markd <markd> | 2009-07-23 09:33:20 +0000 |
commit | 26f51d8e6bbf2105f02f4ac9ff292266fb104ea9 (patch) | |
tree | 40b23a43e5b0621c3d7325a566fd9ac4f114ee94 /textproc/redland/Makefile | |
parent | a334b9df8bcc16b8830f52dc9b105d999144d326 (diff) | |
download | pkgsrc-26f51d8e6bbf2105f02f4ac9ff292266fb104ea9.tar.gz |
Update redland to 1.0.9
Made the storages (triple stores) API public and the implementations
modular - can be compiled externally and dynamically loaded on demand.
Removed Raptor and Rasqal from sources - now external build
dependencies.
Add LICENSE.
Diffstat (limited to 'textproc/redland/Makefile')
-rw-r--r-- | textproc/redland/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/textproc/redland/Makefile b/textproc/redland/Makefile index c9bb9e6668e..503bf357539 100644 --- a/textproc/redland/Makefile +++ b/textproc/redland/Makefile @@ -1,12 +1,13 @@ -# $NetBSD: Makefile,v 1.4 2009/02/11 22:09:08 markd Exp $ +# $NetBSD: Makefile,v 1.5 2009/07/23 09:33:20 markd Exp $ -DISTNAME= redland-1.0.8 +DISTNAME= redland-1.0.9 CATEGORIES= textproc MASTER_SITES= http://download.librdf.org/source/ MAINTAINER= markd@NetBSD.org -HOMEPAGE= http://librdf.org +HOMEPAGE= http://librdf.org/ COMMENT= libraries that support the Resource Description Framework (RDF) +LICENSE= gnu-lgpl-v2.1 OR apache-2.0 PKG_DESTDIR_SUPPORT= user-destdir @@ -21,6 +22,8 @@ CONFIGURE_ARGS+= --with-bdb-dbname=${BDB_LIBS:Q} .endif CONFIGURE_ARGS+= --with-bdb-lib=${BDBBASE}/lib CONFIGURE_ARGS+= --with-bdb-include=${BDBBASE}/${BUILDLINK_INCDIRS.${BDB_TYPE}} +CONFIGURE_ARGS+= --with-ltdl-include=${BUILDLINK_PREFIX.libltdl}/include +CONFIGURE_ARGS+= --with-ltdl-lib=${BUILDLINK_PREFIX.libltdl}/lib CONFIGURE_ARGS+= --with-postgresql=no CONFIGURE_ARGS+= --with-mysql=no CONFIGURE_ARGS+= --with-sqlite=no @@ -33,6 +36,7 @@ PKGCONFIG_OVERRIDE+= redland.pc.in post-install: ${RMDIR} ${DESTDIR}${PREFIX}/lib/redland +.include "../../devel/libltdl/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" .include "../../textproc/raptor/buildlink3.mk" .include "../../textproc/rasqal/buildlink3.mk" |