2013-01-31 14:38:42 +01:00
|
|
|
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
|
2008-11-16 16:48:41 +01:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= raul
|
2011-08-12 08:45:59 +02:00
|
|
|
PORTVERSION= 0.8.0
|
2013-01-31 14:38:42 +01:00
|
|
|
PORTREVISION= 1
|
2008-11-16 16:48:41 +01:00
|
|
|
CATEGORIES= audio
|
|
|
|
MASTER_SITES= http://download.drobilla.net/
|
|
|
|
|
2010-10-25 22:09:06 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2008-11-16 16:48:41 +01:00
|
|
|
COMMENT= C++ utility library primarily aimed at audio/musical applications
|
|
|
|
|
2011-08-12 08:45:59 +02:00
|
|
|
LICENSE= GPLv2 GPLv3
|
|
|
|
LICENSE_COMB= dual
|
2008-11-16 16:48:41 +01:00
|
|
|
|
2013-01-31 14:38:42 +01:00
|
|
|
LIB_DEPENDS= boost_date_time:${PORTSDIR}/devel/boost-libs
|
2011-08-12 08:45:59 +02:00
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_GNOME= glib20
|
|
|
|
USE_PYTHON_BUILD=yes
|
2008-11-16 16:48:41 +01:00
|
|
|
USE_LDCONFIG= yes
|
2011-08-12 08:45:59 +02:00
|
|
|
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
2008-11-16 16:48:41 +01:00
|
|
|
|
2008-12-19 21:08:38 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2011-08-12 08:45:59 +02:00
|
|
|
.if defined(BATCH) || defined(PACKAGE_BUILDING)
|
|
|
|
WAF_VERBOSE= --verbose
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(MAKE_JOBS_NUMBER)
|
|
|
|
WAF_JOBS= --jobs=${MAKE_JOBS_NUMBER}
|
2008-12-19 21:08:38 +01:00
|
|
|
.endif
|
|
|
|
|
2011-08-12 08:45:59 +02:00
|
|
|
post-patch:
|
|
|
|
@${REINPLACE_CMD} -e \
|
|
|
|
"s|$$[{]LIBDIRNAME[}]/pkgconfig|libdata/pkgconfig| ; \
|
|
|
|
s|-fshow-column'|-fshow-column ${CXXFLAGS}'|" \
|
|
|
|
${WRKSRC}/autowaf/autowaf.py
|
|
|
|
|
|
|
|
do-configure:
|
|
|
|
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} --prefix=${PREFIX} configure)
|
|
|
|
|
|
|
|
do-build:
|
|
|
|
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} ${WAF_JOBS} build)
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} install)
|
|
|
|
|
2008-12-19 21:08:38 +01:00
|
|
|
.include <bsd.port.post.mk>
|