1PORTNAME= rasqal 2PORTVERSION= 0.9.33 3PORTREVISION= 2 4CATEGORIES= textproc 5MASTER_SITES= http://download.librdf.org/source/ \ 6 SF/librdf/${PORTNAME}/${PORTVERSION} 7 8MAINTAINER= ports@MidnightBSD.org 9COMMENT= High-level interface for RDF 10WWW= https://librdf.org/ 11 12LICENSE= Apache-2.0 gpl2 gpl3 lgpl2.1 13LICENSE_COMB= dual 14 15LIB_DEPENDS= libraptor2.so:textproc/raptor2 \ 16 libpcre.so:devel/pcre 17 18USES= gmake libtool pathfix perl5 pkgconfig ssl 19USE_PERL5= build 20GNU_CONFIGURE= yes 21USE_LDCONFIG= yes 22 23OPTIONS_RADIO= DEC 24OPTIONS_RADIO_DEC= GMP MPFR 25 26GMP_DESC= Use GMP library for decimals 27MPFR_DESC= Use MPFR library for decimals 28 29GMP_CONFIGURE_ON= --with-decimal=gmp --with-gmp=${LOCALBASE} 30GMP_LIB_DEPENDS= libgmp.so:math/gmp 31MPFR_CONFIGURE_ON= --with-decimal=mpfr --with-mpfr=${LOCALBASE} 32MPFR_LIB_DEPENDS= libmpfr.so:math/mpfr 33 34.include <bsd.mport.options.mk> 35 36.if empty(PORT_OPTIONS:MMPFR) && empty(PORT_OPTIONS:MGMP) 37CONFIGURE_ARGS+=--with-decimal=none 38.endif 39 40.include <bsd.port.mk> 41