Add BUNDLE_LIBS knob to prevent pkg(8) from automatically add provided shlibs

This commit is contained in:
Baptiste Daroussin 2014-10-01 22:12:32 +00:00
parent ca11fc5279
commit fb56c84735
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369773
2 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,13 @@ in the release notes and/or placed into UPDATING.
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

View File

@ -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.