pkgsrc/textproc/redland/buildlink3.mk
markd 0304b4e11d Import redland 1.0.7
Redland is a set of free software libraries that provide support for the
Resource Description Framework (RDF).
* Modular, object based libraries and APIs for manipulating the RDF graph,
  triples, URIs and Literals.
* Storage for graphs in memory and persistently with Sleepycat/Berkeley DB,
  MySQL 3-5, PostgreSQL, AKT Triplestore, SQLite, files or URIs.
* Support for multiple syntaxes for reading and writing RDF as RDF/XML,
  N-Triples and Turtle Terse RDF Triple Language, RSS and Atom syntaxes via
  the Raptor RDF Parser Toolkit.
* Querying with SPARQL and RDQL using the Rasqal RDF Query Library.
* Data aggregation and recording provenance support with Redland contexts.
* Language Bindings in Perl, PHP, Python and Ruby via the Redland Bindings
  package.
* Command line utility programs rdfproc (RDF), rapper (parsing) and roqet
  (query).
* Portable, fast and with no known memory leaks.
2008-11-04 10:39:40 +00:00

24 lines
761 B
Makefile

# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/11/04 10:39:40 markd Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
REDLAND_BUILDLINK3_MK:= ${REDLAND_BUILDLINK3_MK}+
.if ${BUILDLINK_DEPTH} == "+"
BUILDLINK_DEPENDS+= redland
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nredland}
BUILDLINK_PACKAGES+= redland
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}redland
.if ${REDLAND_BUILDLINK3_MK} == "+"
BUILDLINK_API_DEPENDS.redland+= redland>=1.0.7
BUILDLINK_PKGSRCDIR.redland?= ../../textproc/redland
.endif # REDLAND_BUILDLINK3_MK
.include "../../security/openssl/buildlink3.mk"
.include "../../textproc/raptor/buildlink3.mk"
.include "../../textproc/rasqal/buildlink3.mk"
.include "../../mk/bdb.buildlink3.mk"
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}