From owner-svn-ports-all@freebsd.org Thu Dec 17 10:21:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E0F6A4A4D5; Thu, 17 Dec 2015 10:21:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1ABF41446; Thu, 17 Dec 2015 10:21:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBHALBQi005428; Thu, 17 Dec 2015 10:21:11 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBHALBR5005427; Thu, 17 Dec 2015 10:21:11 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201512171021.tBHALBR5005427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 17 Dec 2015 10:21:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403899 - head/audio/ladspa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Dec 2015 10:21:12 -0000 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