mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
483990fcf2
- Update raptor2 to 2.0.4. - Update rasqal to 0.9.27. - Update redland to 1.0.14. - Update redland-bindings to 1.0.13.1. - Update shared-desktop-ontologies to 0.8.0. [1] - Update soprano to 2.7.0 and disable clucene indexer. - Update strigi to 0.7.6. PR: 157022 [1] Submitted by: rakuco [1]
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: redland
|
|
# Date created: Nov 22, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rasqal
|
|
PORTVERSION= 0.9.27
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://download.librdf.org/source/ \
|
|
SF/librdf/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= A high-level interface for RDF
|
|
|
|
LIB_DEPENDS= raptor2.0:${PORTSDIR}/textproc/raptor2 \
|
|
pcre.0:${PORTSDIR}/devel/pcre
|
|
|
|
USE_GNOME= gnomehack lthack pkgconfig
|
|
USE_OPENSSL= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_PERL5_BUILD= yes
|
|
|
|
MAN1= rasqal-config.1 roqet.1
|
|
MAN3= librasqal.3
|
|
|
|
OPTIONS+= MPFR "Use MPFR library for decimals (implies GMP)" off
|
|
OPTIONS+= GMP "Use Gnu MP library for decimals" off
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# Set to mpfr if MPFR is on, gmp if only GMP is on and none if neither.
|
|
# This guards against $user setting both GMP and MPFR, since we can't be
|
|
# very verbose in explaining our options.
|
|
.if defined(WITH_MPFR)
|
|
CONFIGURE_ARGS+= --with-decimal=mpfr --with-mpfr=${LOCALBASE}
|
|
LIB_DEPENDS+= mpfr.4:${PORTSDIR}/math/mpfr
|
|
.elif defined(WITH_GMP)
|
|
CONFIGURE_ARGS+= --with-decimal=gmp
|
|
LIB_DEPENDS+= gmp.10:${PORTSDIR}/math/gmp
|
|
.else
|
|
CONFIGURE_ARGS+= --with-decimal=none
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|