From owner-svn-ports-all@FreeBSD.ORG Wed Oct 1 22:12:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D570BFBD; Wed, 1 Oct 2014 22:12:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 C3841314; Wed, 1 Oct 2014 22:12:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s91MCXtH045199; Wed, 1 Oct 2014 22:12:33 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s91MCXGO045197; Wed, 1 Oct 2014 22:12:33 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410012212.s91MCXGO045197@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 1 Oct 2014 22:12:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369773 - in head: . Mk 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.18-1 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: Wed, 01 Oct 2014 22:12:33 -0000 Author: bapt Date: Wed Oct 1 22:12:32 2014 New Revision: 369773 URL: https://svnweb.freebsd.org/changeset/ports/369773 QAT: https://qat.redports.org/buildarchive/r369773/ Log: Add BUNDLE_LIBS knob to prevent pkg(8) from automatically add provided shlibs Modified: head/CHANGES head/Mk/bsd.port.mk Modified: head/CHANGES ============================================================================== --- head/CHANGES Wed Oct 1 22:12:11 2014 (r369772) +++ head/CHANGES Wed Oct 1 22:12:32 2014 (r369773) @@ -10,6 +10,13 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20141002: +AUTHOR: bapt@FreeBSD.org + + New BUNDLE_LIBS knobs to allow a port to tell pkg(8) not to compute provided + libraries, this is to be used when a port bundles libraries it doesn't want + to expose to other ports. + 20141001: AUTHOR: tijl@FreeBSD.org Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 1 22:12:11 2014 (r369772) +++ head/Mk/bsd.port.mk Wed Oct 1 22:12:32 2014 (r369773) @@ -1546,6 +1546,11 @@ PKGNG_ORIGIN= ${PKG_ORIGIN} WITH_PKGNG?= yes WITH_PKG?= ${WITH_PKGNG} +.if defined(BUNDLE_LIBS) +PKG_NOTES+= no_provide_shlib +PKG_NOTE_no_provide_shlib= yes +.endif + .endif # End of pre-makefile section.