mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update to version 0.9.11
PR: 40628 Submitted by: KATO Tsuguru <tkato@prontomail.com>
This commit is contained in:
parent
a135889b18
commit
c85753e63a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=63045
8 changed files with 66 additions and 18 deletions
|
@ -7,7 +7,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= redland
|
PORTNAME= redland
|
||||||
PORTVERSION= 0.9.10
|
PORTVERSION= 0.9.11
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
||||||
http://www.redland.opensource.ac.uk/dist/source/
|
http://www.redland.opensource.ac.uk/dist/source/
|
||||||
|
@ -15,16 +15,25 @@ MASTER_SITE_SUBDIR= librdf
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
|
|
||||||
LIB_DEPENDS= xmlparse.1:${PORTSDIR}/www/libwww \
|
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db \
|
||||||
|
gdbm.2:${PORTSDIR}/databases/gdbm \
|
||||||
expat.2:${PORTSDIR}/textproc/expat2 \
|
expat.2:${PORTSDIR}/textproc/expat2 \
|
||||||
gdbm:${PORTSDIR}/databases/gdbm \
|
xml2.5:${PORTSDIR}/textproc/libxml2 \
|
||||||
db2:${PORTSDIR}/databases/db
|
xmlparse.1:${PORTSDIR}/www/libwww
|
||||||
|
|
||||||
|
LIBWWW_CONFIG?= ${LOCALBASE}/bin/libwww-config
|
||||||
|
|
||||||
USE_OPENSSL= yes
|
USE_OPENSSL= yes
|
||||||
LIBWWW_CONFIG= ${LOCALBASE}/bin/libwww-config
|
USE_PERL5= yes
|
||||||
GNU_CONFIGURE= yes
|
USE_LIBTOOL= yes
|
||||||
CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} `${LIBWWW_CONFIG} --cflags` -I${LOCALBASE}/include/db2" \
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||||
LDFLAGS="`${LIBWWW_CONFIG} --libs`"
|
|
||||||
CONFIGURE_ARGS= --with-bdb=${LOCALBASE} --with-libwww
|
CONFIGURE_ARGS= --with-bdb=${LOCALBASE} --with-libwww
|
||||||
|
INSTALLS_SHLIB= yes
|
||||||
|
|
||||||
|
MAN3= redland.3
|
||||||
|
|
||||||
|
CPPFLAGS= -I${LOCALBASE}/include/db2 -I${LOCALBASE}/include \
|
||||||
|
`${LIBWWW_CONFIG} --cflags`
|
||||||
|
LDFLAGS= -L${LOCALBASE}/lib `${LIBWWW_CONFIG} --libs`
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (redland-0.9.10.tar.gz) = ad7016755bd1b4203649d002f8715193
|
MD5 (redland-0.9.11.tar.gz) = 3aa452e98b6a16f804843ba9df106daf
|
||||||
|
|
10
textproc/rasqal/files/patch-configure
Normal file
10
textproc/rasqal/files/patch-configure
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- configure.orig Sun Jun 9 05:34:13 2002
|
||||||
|
+++ configure Tue Jul 16 04:47:28 2002
|
||||||
|
@@ -5610,6 +5610,7 @@
|
||||||
|
|
||||||
|
# This can be used to rebuild libtool when needed
|
||||||
|
LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
|
||||||
|
+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
|
||||||
|
|
||||||
|
# Always use our own libtool.
|
||||||
|
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
|
@ -14,6 +14,9 @@ include/rdf_list.h
|
||||||
include/rdf_model.h
|
include/rdf_model.h
|
||||||
include/rdf_node.h
|
include/rdf_node.h
|
||||||
include/rdf_parser.h
|
include/rdf_parser.h
|
||||||
|
include/rdf_query.h
|
||||||
|
include/rdf_query_triples.h
|
||||||
|
include/rdf_serializer.h
|
||||||
include/rdf_statement.h
|
include/rdf_statement.h
|
||||||
include/rdf_storage.h
|
include/rdf_storage.h
|
||||||
include/rdf_storage_hashes.h
|
include/rdf_storage_hashes.h
|
||||||
|
@ -24,3 +27,5 @@ include/rdf_uri.h
|
||||||
include/rdf_utf8.h
|
include/rdf_utf8.h
|
||||||
include/redland.h
|
include/redland.h
|
||||||
lib/librdf.a
|
lib/librdf.a
|
||||||
|
lib/librdf.so
|
||||||
|
lib/librdf.so.0
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= redland
|
PORTNAME= redland
|
||||||
PORTVERSION= 0.9.10
|
PORTVERSION= 0.9.11
|
||||||
CATEGORIES= textproc
|
CATEGORIES= textproc
|
||||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
||||||
http://www.redland.opensource.ac.uk/dist/source/
|
http://www.redland.opensource.ac.uk/dist/source/
|
||||||
|
@ -15,16 +15,25 @@ MASTER_SITE_SUBDIR= librdf
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
|
|
||||||
LIB_DEPENDS= xmlparse.1:${PORTSDIR}/www/libwww \
|
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db \
|
||||||
|
gdbm.2:${PORTSDIR}/databases/gdbm \
|
||||||
expat.2:${PORTSDIR}/textproc/expat2 \
|
expat.2:${PORTSDIR}/textproc/expat2 \
|
||||||
gdbm:${PORTSDIR}/databases/gdbm \
|
xml2.5:${PORTSDIR}/textproc/libxml2 \
|
||||||
db2:${PORTSDIR}/databases/db
|
xmlparse.1:${PORTSDIR}/www/libwww
|
||||||
|
|
||||||
|
LIBWWW_CONFIG?= ${LOCALBASE}/bin/libwww-config
|
||||||
|
|
||||||
USE_OPENSSL= yes
|
USE_OPENSSL= yes
|
||||||
LIBWWW_CONFIG= ${LOCALBASE}/bin/libwww-config
|
USE_PERL5= yes
|
||||||
GNU_CONFIGURE= yes
|
USE_LIBTOOL= yes
|
||||||
CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} `${LIBWWW_CONFIG} --cflags` -I${LOCALBASE}/include/db2" \
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||||
LDFLAGS="`${LIBWWW_CONFIG} --libs`"
|
|
||||||
CONFIGURE_ARGS= --with-bdb=${LOCALBASE} --with-libwww
|
CONFIGURE_ARGS= --with-bdb=${LOCALBASE} --with-libwww
|
||||||
|
INSTALLS_SHLIB= yes
|
||||||
|
|
||||||
|
MAN3= redland.3
|
||||||
|
|
||||||
|
CPPFLAGS= -I${LOCALBASE}/include/db2 -I${LOCALBASE}/include \
|
||||||
|
`${LIBWWW_CONFIG} --cflags`
|
||||||
|
LDFLAGS= -L${LOCALBASE}/lib `${LIBWWW_CONFIG} --libs`
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (redland-0.9.10.tar.gz) = ad7016755bd1b4203649d002f8715193
|
MD5 (redland-0.9.11.tar.gz) = 3aa452e98b6a16f804843ba9df106daf
|
||||||
|
|
10
textproc/redland/files/patch-configure
Normal file
10
textproc/redland/files/patch-configure
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- configure.orig Sun Jun 9 05:34:13 2002
|
||||||
|
+++ configure Tue Jul 16 04:47:28 2002
|
||||||
|
@@ -5610,6 +5610,7 @@
|
||||||
|
|
||||||
|
# This can be used to rebuild libtool when needed
|
||||||
|
LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
|
||||||
|
+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
|
||||||
|
|
||||||
|
# Always use our own libtool.
|
||||||
|
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
|
@ -14,6 +14,9 @@ include/rdf_list.h
|
||||||
include/rdf_model.h
|
include/rdf_model.h
|
||||||
include/rdf_node.h
|
include/rdf_node.h
|
||||||
include/rdf_parser.h
|
include/rdf_parser.h
|
||||||
|
include/rdf_query.h
|
||||||
|
include/rdf_query_triples.h
|
||||||
|
include/rdf_serializer.h
|
||||||
include/rdf_statement.h
|
include/rdf_statement.h
|
||||||
include/rdf_storage.h
|
include/rdf_storage.h
|
||||||
include/rdf_storage_hashes.h
|
include/rdf_storage_hashes.h
|
||||||
|
@ -24,3 +27,5 @@ include/rdf_uri.h
|
||||||
include/rdf_utf8.h
|
include/rdf_utf8.h
|
||||||
include/redland.h
|
include/redland.h
|
||||||
lib/librdf.a
|
lib/librdf.a
|
||||||
|
lib/librdf.so
|
||||||
|
lib/librdf.so.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue