audio/patchage: Set environment during make and install phases

While here, unsuppress the commands so the build gets logged.
This commit is contained in:
John Marino 2015-02-25 11:02:26 +00:00
parent 7ed27548d3
commit fc91dee08b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=379894

View file

@ -42,13 +42,15 @@ post-patch:
${WRKSRC}/autowaf/autowaf.py
do-configure:
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} --prefix=${PREFIX} \
(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} --prefix=${PREFIX} \
--mandir=${MANPREFIX}/man --no-alsa --no-lash configure)
do-build:
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} ${WAF_JOBS} build)
(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
./waf ${WAF_VERBOSE} ${WAF_JOBS} build)
do-install:
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} --destdir=${STAGEDIR} install)
(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
./waf ${WAF_VERBOSE} --destdir=${STAGEDIR} install)
.include <bsd.port.post.mk>