svn commit: r334718 - head/audio/slv2

Marcus von Appen mva at FreeBSD.org
Sun Nov 24 11:49:08 UTC 2013


Author: mva
Date: Sun Nov 24 11:49:07 2013
New Revision: 334718
URL: http://svnweb.freebsd.org/changeset/ports/334718

Log:
  - Fix the usage of 'python' to get rid of the implicit lang/python
    dependency
  - Change LIB_DEPENDS to the new format

Modified:
  head/audio/slv2/Makefile

Modified: head/audio/slv2/Makefile
==============================================================================
--- head/audio/slv2/Makefile	Sun Nov 24 11:47:24 2013	(r334717)
+++ head/audio/slv2/Makefile	Sun Nov 24 11:49:07 2013	(r334718)
@@ -13,8 +13,8 @@ LICENSE=	GPLv2 # (or later)
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	${LOCALBASE}/include/lv2.h:${PORTSDIR}/audio/lv2core
-LIB_DEPENDS=	jack.0:${PORTSDIR}/audio/jack \
-		rdf.0:${PORTSDIR}/textproc/redland
+LIB_DEPENDS=	libjack.so:${PORTSDIR}/audio/jack \
+		librdf.so:${PORTSDIR}/textproc/redland
 
 USES=		pkgconfig
 NO_STAGE=	yes
@@ -41,13 +41,13 @@ post-patch:
 		's|^#define _XOPEN_SOURCE .*||' ${WRKSRC}/src/plugin.c
 
 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)
 .for file in lv2_inspect lv2_jack_host lv2_list lv2_simple_jack_host
 	@${STRIP_CMD} ${PREFIX}/bin/${file}
 .endfor


More information about the svn-ports-all mailing list