Date: Thu, 17 Dec 2015 10:21:11 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403899 - head/audio/ladspa Message-ID: <201512171021.tBHALBR5005427@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Dec 17 10:21:10 2015 New Revision: 403899 URL: https://svnweb.freebsd.org/changeset/ports/403899 Log: - Unsilence installation commands - Fix library installation and stripping PR: 205141 Submitted by: amdmi3 Approved by: arved (maintainer) Modified: head/audio/ladspa/Makefile Modified: head/audio/ladspa/Makefile ============================================================================== --- head/audio/ladspa/Makefile Thu Dec 17 10:00:27 2015 (r403898) +++ head/audio/ladspa/Makefile Thu Dec 17 10:21:10 2015 (r403899) @@ -3,6 +3,7 @@ PORTNAME= ladspa PORTVERSION= 1.13 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.ladspa.org/download/ DISTNAME= ladspa_sdk_${PORTVERSION} @@ -29,13 +30,13 @@ post-patch: ${WRKSRC}/src/makefile do-install: - @${INSTALL_DATA} ${WRKSRC}/src/ladspa.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/src/ladspa.h ${STAGEDIR}${PREFIX}/include .for file in ${PROGRAM_FILES} - @${INSTALL_PROGRAM} ${WRKSRC}/bin/${file} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${file} ${STAGEDIR}${PREFIX}/bin .endfor @${MKDIR} ${PLUGIN_DIR} .for file in ${PLUGIN_FILES} - @${INSTALL_DATA} ${WRKSRC}/plugins/${file} ${PLUGIN_DIR} + ${INSTALL_LIB} ${WRKSRC}/plugins/${file} ${PLUGIN_DIR} .endfor .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512171021.tBHALBR5005427>