1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

- Fix the usage of 'python' to get rid of the implicit lang/python

dependency
This commit is contained in:
Marcus von Appen 2013-11-24 09:32:53 +00:00
parent 8a6a7bce2b
commit 6192d9ea1b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=334714

View File

@ -35,13 +35,13 @@ post-patch:
s|@LV2CORE_VERSION@|${PORTVERSION}|' < lv2core.pc.in > lv2core.pc)
do-configure:
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} --prefix=${PREFIX} configure)
@(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} --prefix=${PREFIX} configure)
do-build:
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} ${WAF_JOBS} build)
@(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} ${WAF_JOBS} build)
do-install:
@(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} install)
@(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} install)
${INSTALL_DATA} ${WRKSRC}/lv2core.pc ${PREFIX}/libdata/pkgconfig
.include <bsd.port.post.mk>