diff options
author | wiz <wiz@pkgsrc.org> | 2010-10-16 16:40:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2010-10-16 16:40:03 +0000 |
commit | be1bcf09f31b837f5f5baefa46c902525c820560 (patch) | |
tree | 516928d5923ddf0b0b2a748684e30b1e05a6c574 /textproc/redland | |
parent | 8419af72c3077b4ee2439f2b97dde99ffddbb9b6 (diff) | |
download | pkgsrc-be1bcf09f31b837f5f5baefa46c902525c820560.tar.gz |
Update to 1.0.12:
2010-10-13 Redland Version 1.0.12 Released
Enable librdf.h to be used as the top-level header in addition to
redland.h
Fix linking issues when building with GNU ld with DT_NEEDED disabled
Fixed Issues: [1]#0000329, [2]#0000348 [3]#0000391, [4]#0000392 and
[5]#0000393.
2010-09-25 Redland Version 1.0.11 Released
Virtuoso storage backend querying now fully works.
Several new convenience APIs were added and others deprecated.
Support building with Raptor V2 API if configured with --with-raptor2.
Exports more functions to SWIG language bindings.
Switched to GIT version control [7]hosted by GitHub.
Many other bug fixes and improvements were made.
Fixed Issues: [8]#0000124, [9]#0000284, [10]#0000321, [11]#0000322,
[12]#0000334, [13]#0000338, [14]#0000341, [15]#0000344, [16]#0000350,
[17]#0000363, [18]#0000366, [19]#0000371, [20]#0000380, [21]#0000382
and [22]#0000383
Diffstat (limited to 'textproc/redland')
-rw-r--r-- | textproc/redland/Makefile | 6 | ||||
-rw-r--r-- | textproc/redland/distinfo | 9 | ||||
-rw-r--r-- | textproc/redland/patches/patch-ab | 15 |
3 files changed, 23 insertions, 7 deletions
diff --git a/textproc/redland/Makefile b/textproc/redland/Makefile index e9b8ba9995b..a9f893eab36 100644 --- a/textproc/redland/Makefile +++ b/textproc/redland/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.11 2010/06/06 17:41:34 adam Exp $ +# $NetBSD: Makefile,v 1.12 2010/10/16 16:40:03 wiz Exp $ -DISTNAME= redland-1.0.10 +DISTNAME= redland-1.0.12 CATEGORIES= textproc MASTER_SITES= http://download.librdf.org/source/ MAINTAINER= markd@NetBSD.org HOMEPAGE= http://librdf.org/ -COMMENT= libraries that support the Resource Description Framework (RDF) +COMMENT= Libraries supporting the Resource Description Framework (RDF) LICENSE= gnu-lgpl-v2.1 OR apache-2.0 PKG_DESTDIR_SUPPORT= user-destdir diff --git a/textproc/redland/distinfo b/textproc/redland/distinfo index 9508c763e7f..ac50bfa31f4 100644 --- a/textproc/redland/distinfo +++ b/textproc/redland/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.4 2010/01/25 20:08:28 markd Exp $ +$NetBSD: distinfo,v 1.5 2010/10/16 16:40:03 wiz Exp $ -SHA1 (redland-1.0.10.tar.gz) = e4ba2ef207f293a7740f45661ec90cf9698e217f -RMD160 (redland-1.0.10.tar.gz) = c19a0aa6c33a62719af1b2ba35ea064ffdf7e9f1 -Size (redland-1.0.10.tar.gz) = 1569554 bytes +SHA1 (redland-1.0.12.tar.gz) = 94b0f972a62c7eed0574c0e46c79cf78ece46570 +RMD160 (redland-1.0.12.tar.gz) = 1af4bd59ae8be265cfeb806eb7b99d8b32f231f5 +Size (redland-1.0.12.tar.gz) = 1552241 bytes SHA1 (patch-aa) = 8298d52f722bae2e9620a0e7edebc3b6b4c471ce +SHA1 (patch-ab) = 5fbf749858fbee77db31656a43161cf4944d5de7 diff --git a/textproc/redland/patches/patch-ab b/textproc/redland/patches/patch-ab new file mode 100644 index 00000000000..d646e4e4125 --- /dev/null +++ b/textproc/redland/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2010/10/16 16:40:03 wiz Exp $ + +Fix unportable test(1) construct. + +--- configure.orig 2010-10-16 16:30:21.000000000 +0000 ++++ configure +@@ -13884,7 +13884,7 @@ if test "${with_module_path+set}" = set; + withval=$with_module_path; REDLAND_MODULE_PATH="$witheval" + fi + +-if test "x$REDLAND_MODULE_PATH" == "x"; then ++if test "x$REDLAND_MODULE_PATH" = "x"; then + REDLAND_MODULE_PATH=$libdir"/redland" + if test "x$prefix" != "xNONE"; then + REDLAND_MODULE_PATH="/usr/local/lib/redland:"$REDLAND_MODULE_PATH |