svn commit: r379432 - head/audio/slv2
John Marino
marino at FreeBSD.org
Fri Feb 20 13:51:54 UTC 2015
Author: marino
Date: Fri Feb 20 13:51:53 2015
New Revision: 379432
URL: https://svnweb.freebsd.org/changeset/ports/379432
QAT: https://qat.redports.org/buildarchive/r379432/
Log:
audio/slv2: Set the make environment on the do-build target
While here, unmask all the build and install commands.
Modified:
head/audio/slv2/Makefile
Modified: head/audio/slv2/Makefile
==============================================================================
--- head/audio/slv2/Makefile Fri Feb 20 13:41:42 2015 (r379431)
+++ head/audio/slv2/Makefile Fri Feb 20 13:51:53 2015 (r379432)
@@ -38,16 +38,18 @@ post-patch:
's|^#define _XOPEN_SOURCE .*||' ${WRKSRC}/src/plugin.c
do-configure:
- @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} --prefix=${PREFIX} configure)
+ (cd ${WRKSRC} && ${PYTHON_CMD} \
+ waf ${WAF_VERBOSE} --prefix=${PREFIX} configure)
do-build:
- @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} ${WAF_JOBS} build)
+ (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} \
+ waf ${WAF_VERBOSE} ${WAF_JOBS} build)
do-install:
- @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} \
- --destdir=${STAGEDIR} install)
+ (cd ${WRKSRC} && ${PYTHON_CMD} \
+ waf ${WAF_VERBOSE} --destdir=${STAGEDIR} install)
.for file in lv2_inspect lv2_jack_host lv2_list lv2_simple_jack_host
- @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${file}
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${file}
.endfor
.include <bsd.port.post.mk>
More information about the svn-ports-all
mailing list