diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2011-08-12 06:45:59 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2011-08-12 06:45:59 +0000 |
commit | 9fad05b0059d6f23e7bfe5614d98c39e000add65 (patch) | |
tree | dc7003267ddf2df22ff5a1e3c69e18433bf633d0 /audio/raul/Makefile | |
parent | 532f3da2672ee1d0258a756f86d7a59c1ad367d9 (diff) | |
download | ports-9fad05b0059d6f23e7bfe5614d98c39e000add65.tar.gz ports-9fad05b0059d6f23e7bfe5614d98c39e000add65.zip |
Notes
Diffstat (limited to 'audio/raul/Makefile')
-rw-r--r-- | audio/raul/Makefile | 45 |
1 files changed, 31 insertions, 14 deletions
diff --git a/audio/raul/Makefile b/audio/raul/Makefile index bb58ed7222b4..b386b0c45837 100644 --- a/audio/raul/Makefile +++ b/audio/raul/Makefile @@ -6,31 +6,48 @@ # PORTNAME= raul -PORTVERSION= 0.5.1 -PORTREVISION= 3 +PORTVERSION= 0.8.0 CATEGORIES= audio MASTER_SITES= http://download.drobilla.net/ MAINTAINER= ports@FreeBSD.org COMMENT= C++ utility library primarily aimed at audio/musical applications -LIB_DEPENDS= boost_date_time.4:${PORTSDIR}/devel/boost-libs \ - jack.0:${PORTSDIR}/audio/jack \ - lash.2:${PORTSDIR}/audio/lash \ - glibmm-2.4.1:${PORTSDIR}/devel/glibmm +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual -GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_GNOME= gnomehack +LIB_DEPENDS= boost_date_time.4:${PORTSDIR}/devel/boost-libs + +USE_BZIP2= yes +USE_GNOME= glib20 +USE_PYTHON_BUILD=yes USE_LDCONFIG= yes -CXXFLAGS+= ${CFLAGS} -CONFIGURE_ENV= "-I${LOCALBASE}/include" -CONFIGURE_ENV= "CXXFLAGS=${CFLAGS} -I${LOCALBASE}/include" + +CFLAGS+= -I${LOCALBASE}/include .include <bsd.port.pre.mk> -.if ${OSVERSION} < 700000 -BROKEN= Does not compile +.if defined(BATCH) || defined(PACKAGE_BUILDING) +WAF_VERBOSE= --verbose +.endif + +.if defined(MAKE_JOBS_NUMBER) +WAF_JOBS= --jobs=${MAKE_JOBS_NUMBER} .endif +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) + .include <bsd.port.post.mk> |