1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00

Add 'post-plist' target which can be hooked into to modify the plist without

needing to add more targets to STAGE_SEQ. This is especially useful for
customizing the ports tree/framework without modifying bsd.port.mk.

With hat:	portmgr
Discussed with:	mat
This commit is contained in:
Bryan Drewery 2015-01-09 21:12:53 +00:00
parent ea6554f44f
commit d47c8de374
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376659

View File

@ -5912,6 +5912,7 @@ _BUILD_SEQ= build-message pre-build pre-build-script do-build \
_STAGE_DEP= build
_STAGE_SEQ= stage-message stage-dir run-depends lib-depends apply-slist pre-install generate-plist \
pre-su-install
# post-plist must be after anything that modifies TMPPLIST
.if defined(NEED_ROOT)
_STAGE_SUSEQ= create-users-groups do-install \
kmod-post-install fix-perl-things \
@ -5920,7 +5921,7 @@ _STAGE_SUSEQ= create-users-groups do-install \
install-rc-script install-ldconfig-file install-license \
install-desktop-entries add-plist-info add-plist-docs \
add-plist-examples add-plist-data add-plist-post \
move-uniquefiles-plist
move-uniquefiles-plist post-plist
.if defined(DEVELOPER)
_STAGE_SUSEQ+= stage-qa
.endif
@ -5932,7 +5933,7 @@ _STAGE_SEQ+= create-users-groups do-install \
install-rc-script install-ldconfig-file install-license \
install-desktop-entries add-plist-info add-plist-docs \
add-plist-examples add-plist-data add-plist-post \
move-uniquefiles-plist
move-uniquefiles-plist post-plist
.if defined(DEVELOPER)
_STAGE_SEQ+= stage-qa
.endif