Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Feb 2015 13:51:53 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379432 - head/audio/slv2
Message-ID:  <201502201351.t1KDprqI078436@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Fri Feb 20 13:51:53 2015
New Revision: 379432
URL: https://svnweb.freebsd.org/changeset/ports/379432
QAT: https://qat.redports.org/buildarchive/r379432/

Log:
  audio/slv2: Set the make environment on the do-build target
  
  While here, unmask all the build and install commands.

Modified:
  head/audio/slv2/Makefile

Modified: head/audio/slv2/Makefile
==============================================================================
--- head/audio/slv2/Makefile	Fri Feb 20 13:41:42 2015	(r379431)
+++ head/audio/slv2/Makefile	Fri Feb 20 13:51:53 2015	(r379432)
@@ -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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502201351.t1KDprqI078436>