openbsd-ports/textproc/rasqal/Makefile
sthen 631e9a988c import textproc/rasqal, split from redland. ok landry@
- merged from openbsd-wip and dlg@ diffs.

Rasqal is a C library that handles Resource Description Framework
(RDF) query language syntaxes, query construction and execution of
queries returning results as bindings, boolean, RDF graphs/triples
or syntaxes. The supported query languages are SPARQL 1.0, RDQL,
Draft SPARQL Query 1.1, Update 1.1 Syntax and Experimental SPARQL
extensions (LAQRS). Rasqal can write binding query results in the
SPARQL XML, SPARQL JSON, CSV, TSV, HTML, ASCII tables, RDF/XML and
Turtle / N3 and read them in SPARQL XML, RDF/XML and Turtle / N3.

Rasqal was designed to work closely with the Redland RDF library
and the Raptor RDF Syntax Library but is entirely separate from
both.
2012-11-12 13:36:55 +00:00

49 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2012/11/12 13:36:55 sthen Exp $
COMMENT= RDF Query Library for Redland
DISTNAME= rasqal-0.9.29
CATEGORIES= textproc
SHARED_LIBS += rasqal 2.0 # 3.0
HOMEPAGE= http://librdf.org/rasqal/
MASTER_SITES= http://download.librdf.org/source/
# LGPL 2.1+, GPL 2+ or Apache 2+
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB += c crypto curl gcrypt gmp gpg-error idn m mpfr raptor2
WANTLIB += ssl xml2 xslt yajl z
MODULES= devel/gettext
USE_LIBTOOL= Yes
BUILD_DEPENDS= textproc/raptor
LIB_DEPENDS= devel/mpfr \
devel/libyajl \
net/curl \
security/libgcrypt \
textproc/libxml \
textproc/libxslt \
textproc/raptor
CONFIGURE_STYLE= gnu autoconf
AUTOCONF_VERSION= 2.69
SEPARATE_BUILD= Yes
CONFIGURE_ARGS= --disable-gtk-doc \
--with-digest-library=gcrypt \
--with-mpfr=${LOCALBASE} \
--with-random-approach=random
# Avoid problems when ${LOCALBASE}/uuid.h is installed too
CONFIGURE_ARGS+= --with-uuid-library=internal
.include <bsd.port.mk>