svn commit: r337572 - head/audio/amb-plugins

Baptiste Daroussin bapt at FreeBSD.org
Thu Dec 26 17:38:28 UTC 2013


Author: bapt
Date: Thu Dec 26 17:38:27 2013
New Revision: 337572
URL: http://svnweb.freebsd.org/changeset/ports/337572

Log:
  Support stage

Modified:
  head/audio/amb-plugins/Makefile

Modified: head/audio/amb-plugins/Makefile
==============================================================================
--- head/audio/amb-plugins/Makefile	Thu Dec 26 17:37:22 2013	(r337571)
+++ head/audio/amb-plugins/Makefile	Thu Dec 26 17:38:27 2013	(r337572)
@@ -19,7 +19,6 @@ RUN_DEPENDS:=	${BUILD_DEPENDS}
 LICENSE=	GPLv2 GPLv3
 LICENSE_COMB=	dual
 
-NO_STAGE=	yes
 USES=		gmake
 USE_BZIP2=	yes
 
@@ -33,12 +32,12 @@ post-patch:
 		s|g++[[:space:]]|$$(CXX) |g' ${WRKSRC}/Makefile
 
 do-install:
-	@${MKDIR} ${PREFIX}/lib/ladspa
+	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/ladspa
 .for i in 0 1 2 3
-	${INSTALL_DATA} ${WRKSRC}/ambisonic${i}.so ${PREFIX}/lib/ladspa
+	${INSTALL_DATA} ${WRKSRC}/ambisonic${i}.so ${STAGEDIR}${PREFIX}/lib/ladspa
 .endfor
-	@${MKDIR} ${PREFIX}/share/ladspa/rdf
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/ladspa/rdf
 	${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/fa-plugins.rdf \
-		${PREFIX}/share/ladspa/rdf
+		${STAGEDIR}${PREFIX}/share/ladspa/rdf
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list