1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

audio/slv2: Set the make environment on the do-build target

While here, unmask all the build and install commands.
This commit is contained in:
John Marino 2015-02-20 13:51:53 +00:00
parent 719ae16c89
commit fae67ba03e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=379432

View File

@ -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>