freebsd-ports/textproc/rasqal/Makefile
Raphael Kubo da Costa a5ff8ea968 Update to 0.9.33.
From the release announcement:
  The main changes in this version since the last release 2014-02-23 are:
  * Added support for reading and writing boolean result formats.
  * Fixed several query engine operator evaluations (AVG, STRBEFORE,
    STRAFTER, CONCAT)
  * Updated query results class constructor and methods, deprecating older.
  * Portability fixes for ICC, clang and GCC 5.
  * New internal test runner utility
  * Variable bindings query results can be formatted in mKR CSV format.
  * Multiple other fixes and improvements including fixing reported issues:
    0000546, 0000568, 0000583 and 0000588.

  For full details see the Rasqal 0.9.33 release notes at
  http://librdf.org/rasqal/RELEASE.html#rel0_9_33
2014-12-24 11:55:33 +00:00

44 lines
1.1 KiB
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= rasqal
PORTVERSION= 0.9.33
CATEGORIES= textproc
MASTER_SITES= http://download.librdf.org/source/ \
SF/librdf/${PORTNAME}/${PORTVERSION}
MAINTAINER= kde@FreeBSD.org
COMMENT= High-level interface for RDF
# Even though GPLv3 is not explicitly mentioned in the port's LICENSE.html, one
# of its licenses is "GPLv2 or newer", which includes GPLv3.
LICENSE= APACHE20 GPLv2 GPLv3 LGPL21
LICENSE_COMB= dual
LIB_DEPENDS= libraptor2.so:${PORTSDIR}/textproc/raptor2 \
libpcre.so:${PORTSDIR}/devel/pcre
USES= gmake libtool pathfix perl5 pkgconfig
USE_OPENSSL= yes
USE_PERL5= build
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
OPTIONS_RADIO= DEC
OPTIONS_RADIO_DEC= GMP MPFR
GMP_DESC= Use GMP library for decimals
MPFR_DESC= Use MPFR library for decimals
GMP_CONFIGURE_ON= --with-decimal=gmp --with-gmp=${LOCALBASE}
GMP_LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp
MPFR_CONFIGURE_ON= --with-decimal=mpfr --with-mpfr=${LOCALBASE}
MPFR_LIB_DEPENDS= libmpfr.so:${PORTSDIR}/math/mpfr
.include <bsd.port.options.mk>
.if empty(PORT_OPTIONS:MMPFR) && empty(PORT_OPTIONS:MGMP)
CONFIGURE_ARGS+=--with-decimal=none
.endif
.include <bsd.port.mk>