audio/patchage: Set environment during make and install phases
While here, unsuppress the commands so the build gets logged.
This commit is contained in:
parent
7ed27548d3
commit
fc91dee08b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=379894
1 changed files with 5 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue