Date: Fri, 9 Jan 2015 21:12:54 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376659 - head/Mk Message-ID: <201501092112.t09LCsO0088141@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Fri Jan 9 21:12:53 2015 New Revision: 376659 URL: https://svnweb.freebsd.org/changeset/ports/376659 QAT: https://qat.redports.org/buildarchive/r376659/ Log: 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 Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Fri Jan 9 20:59:09 2015 (r376658) +++ head/Mk/bsd.port.mk Fri Jan 9 21:12:53 2015 (r376659) @@ -5912,6 +5912,7 @@ _BUILD_SEQ= build-message pre-build pre _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-ins 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-inst 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501092112.t09LCsO0088141>