From owner-svn-ports-all@freebsd.org Sat Nov 5 01:19:20 2016 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 7A134C2F2AB; Sat, 5 Nov 2016 01:19:20 +0000 (UTC) (envelope-from jbeich@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 4BEADECF; Sat, 5 Nov 2016 01:19:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA51JJvO023761; Sat, 5 Nov 2016 01:19:19 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA51JJJw023760; Sat, 5 Nov 2016 01:19:19 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611050119.uA51JJJw023760@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 5 Nov 2016 01:19:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425366 - in head/audio/lv2: . files 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.23 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: Sat, 05 Nov 2016 01:19:20 -0000 Author: jbeich Date: Sat Nov 5 01:19:19 2016 New Revision: 425366 URL: https://svnweb.freebsd.org/changeset/ports/425366 Log: audio/lv2: fix substitution in lv2core.pc Only noticed by broken -export-symbols-regex (libtool) in audio/calf. --- /usr/local/libdata/pkgconfig/lv2core.pc before +++ /usr/local/libdata/pkgconfig/lv2core.pc after @@ -1,10 +1,10 @@ prefix=/usr/local -exec_prefix= -libdir=/usr/local/lib -includedir=/usr/local/include +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include Name: lv2core -Version: +Version: 12.0 Description: An audio plugin interface specification. Libs: Cflags: -I${includedir} PR: 213285 Submitted by: Michael Beer (maintainer) Deleted: head/audio/lv2/files/ Modified: head/audio/lv2/Makefile (contents, props changed) Modified: head/audio/lv2/Makefile ============================================================================== --- head/audio/lv2/Makefile Sat Nov 5 00:13:36 2016 (r425365) +++ head/audio/lv2/Makefile Sat Nov 5 01:19:19 2016 (r425366) @@ -3,6 +3,7 @@ PORTNAME= lv2 PORTVERSION= 1.14.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://lv2plug.in/spec/ @@ -38,6 +39,9 @@ EXAMPLES_USE= GNOME=cairo,gtk20 EXAMPLES_CONFIGURE_ENV= CC='${CC} -Wl,--as-needed' # Gtk deps post-install: + @${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/*.pc \ + ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ + @${RMDIR} ${STAGEDIR}${PREFIX}/lib/pkgconfig/ # Waf doesn't have built-in strip support @${FIND} ${STAGEDIR}${PREFIX}/lib/${PORTNAME} \ -name '*.so' -exec ${STRIP_CMD} {} +