freebsd-ports/textproc/rasqal/Makefile
Max Brazhnikov cb8b1428c6 KDE/FreeBSD team presents KDE SC 4.9.5 ports!
- kdebindings ports have been renamed to match upstream.
- kdemultimedia and kdenetwork have been split.
- New port games/pairs added.
- Trim Makefile header
- Convert to new option framework
- New USE_KDE4 components: libkcddb, libkcompactdisc
- Update:
	databases/akonadi to 1.9.0
	devel/grantlee to 0.3.0
	textproc/rasqal to 0.9.30
	textproc/redland-bindings to 1.0.16.1
	textproc/soprano to 2.9.0
	x11-toolkits/attica to 0.4.1

The area51 repository features commits by Schaich Alonso, avilla, dbn,
jhale, makc and rakuco.

Contributors:
- Oleg Sidorkin
- Tobias Berner
- Kurt Jaeger
2013-02-03 20:10:37 +00:00

45 lines
984 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= rasqal
PORTVERSION= 0.9.30
CATEGORIES= textproc
MASTER_SITES= http://download.librdf.org/source/ \
SF/librdf/${PORTNAME}/${PORTVERSION}
MAINTAINER= kde@FreeBSD.org
COMMENT= High-level interface for RDF
LIB_DEPENDS= raptor2:${PORTSDIR}/textproc/raptor2 \
pcre:${PORTSDIR}/devel/pcre
USE_GNOME= gnomehack lthack
USE_OPENSSL= yes
USE_PERL5_BUILD=yes
USE_PKGCONFIG= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_LDCONFIG= yes
MAN1= rasqal-config.1 roqet.1
MAN3= librasqal.3
OPTIONS_RADIO= DEC
OPTIONS_RADIO_DEC= GMP MPFR
GMP_DESC= Use GMP library for decimals
MPFR_DESC= Use MPFR library for decimals
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMPFR}
CONFIGURE_ARGS+=--with-decimal=mpfr --with-mpfr=${LOCALBASE}
LIB_DEPENDS+= mpfr:${PORTSDIR}/math/mpfr
.elif ${PORT_OPTIONS:MGMP}
CONFIGURE_ARGS+=--with-decimal=gmp
LIB_DEPENDS+= gmp:${PORTSDIR}/math/gmp
.else
CONFIGURE_ARGS+=--with-decimal=none
.endif
.include <bsd.port.mk>