diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-12-02 11:58:21 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-12-02 11:58:21 +0000 |
commit | 8b4093cba5775260e98d51f74cd187fb9af825a8 (patch) | |
tree | 4a28bf50f532fa82a149cbc3f9c041d48a23921b /textproc | |
parent | Fix build of x11-toolkits/qt5-charts after r427356. (diff) |
Do not use post-stage. Use post-install instead.
The only reason to use post-stage is because the port needs to do
"things" at a later time, like some plist manipulation.
While there, fold post-install in do-install targets when they are
defined.
PR: 214780
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=427552
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/expat2/Makefile | 2 | ||||
-rw-r--r-- | textproc/libwps03/Makefile | 2 | ||||
-rw-r--r-- | textproc/libxslt/Makefile | 2 | ||||
-rw-r--r-- | textproc/p5-Net-IDN-Encode/Makefile | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/textproc/expat2/Makefile b/textproc/expat2/Makefile index bfa81983e836..9e7c494009e3 100644 --- a/textproc/expat2/Makefile +++ b/textproc/expat2/Makefile @@ -17,7 +17,7 @@ ALL_TARGET= default USES= libtool pathfix tar:bz2 USE_LDCONFIG= yes -post-stage: +post-install: ${LN} -s libexpat.so.1 ${STAGEDIR}${PREFIX}/lib/libexpat.so.6 .include <bsd.port.mk> diff --git a/textproc/libwps03/Makefile b/textproc/libwps03/Makefile index 1cd7c484886c..1a7e23438295 100644 --- a/textproc/libwps03/Makefile +++ b/textproc/libwps03/Makefile @@ -32,7 +32,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs CONFIGURE_ARGS+= --with-sharedptr=boost .endif -post-stage: +post-install: @${RM} ${STAGEDIR}${PREFIX}/bin/* .include <bsd.port.post.mk> diff --git a/textproc/libxslt/Makefile b/textproc/libxslt/Makefile index 463b8ceb53d5..92f897eb7f99 100644 --- a/textproc/libxslt/Makefile +++ b/textproc/libxslt/Makefile @@ -50,7 +50,7 @@ post-patch: ${WRKSRC}/doc/Makefile.in .if !defined(MASTERDIR) -post-stage: +post-install: ${LN} -s libxslt.so.1 ${STAGEDIR}${PREFIX}/lib/libxslt.so.2 ${LN} -s libexslt.so.0 ${STAGEDIR}${PREFIX}/lib/libexslt.so.8 .endif diff --git a/textproc/p5-Net-IDN-Encode/Makefile b/textproc/p5-Net-IDN-Encode/Makefile index 52fbc9aafd7d..07c427aecdda 100644 --- a/textproc/p5-Net-IDN-Encode/Makefile +++ b/textproc/p5-Net-IDN-Encode/Makefile @@ -18,6 +18,7 @@ BUILD_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings USES= perl5 USE_PERL5= modbuild -post-stage: +post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Net/IDN/Punycode/Punycode.so + .include <bsd.port.mk> |