freebsd-ports/audio/lv2core/Makefile
Doug Barton ce7d0b1f2e For the ports that are maintained by ports@ that have pkgconfig as their
only USE_GNOME feature, convert to a BUILD_DEPENDS. This avoids both the
bug of the bogus run depend introduced by bsd.gnome.mk, and also avoids
needlessly pulling that file in.
2012-07-22 23:23:59 +00:00

54 lines
1.2 KiB
Makefile

# New ports collection makefile for: lv2core
# Date created: 2008-11-20
# Whom: xaimus <xaimus@gmail.com>
#
# $FreeBSD$
#
PORTNAME= lv2core
PORTVERSION= 6.0
CATEGORIES= audio
MASTER_SITES= http://lv2plug.in/spec/
MAINTAINER= ports@FreeBSD.org
COMMENT= LV2 Core Package
LICENSE= BSD
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= pkg-config>0:${PORTSDIR}/devel/pkg-config
USE_BZIP2= yes
USE_PYTHON_BUILD= yes
MAKE_JOBS_SAFE= yes
.include <bsd.port.pre.mk>
.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 '/autowaf.build_pc/s|^|#|' ${WRKSRC}/wscript
@(cd ${WRKSRC} && ${SED} -e \
's|@PREFIX@|${PREFIX}| ; \
s|@EXEC_PREFIX@|${PREFIX}| ; \
s|@LIBDIR@|${PREFIX}/lib| ; \
s|@INCLUDEDIR@|${PREFIX}/include| ; \
s|@LV2CORE_VERSION@|${PORTVERSION}|' < lv2core.pc.in > lv2core.pc)
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)
${INSTALL_DATA} ${WRKSRC}/lv2core.pc ${PREFIX}/libdata/pkgconfig
.include <bsd.port.post.mk>