diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-19 08:34:02 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-19 08:34:02 +0000 |
commit | 66ca81894f5132c3c5d845ea773f1931c324c463 (patch) | |
tree | 13811d22d12683d4c36368a07c5a571a80036ed0 | |
parent | 64bfbaea960540b63b3119242cff3f4ae845c595 (diff) |
Support staging
Notes
Notes:
svn path=/head/; revision=345020
-rw-r--r-- | devel/cvs2p4/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/devel/cvs2p4/Makefile b/devel/cvs2p4/Makefile index d93acc9b5c68..2c5cfe221092 100644 --- a/devel/cvs2p4/Makefile +++ b/devel/cvs2p4/Makefile @@ -19,7 +19,6 @@ PKGMESSAGE= ${WRKDIR}/pkg-message PERFORCE_PORT?= 1666 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} \ -e 's,!!PREFIX!!,${PREFIX},g;' \ @@ -29,10 +28,7 @@ post-patch: @${FIND} ${WRKSRC} -name '*.bak' -delete do-install: - ${MKDIR} ${PREFIX}/${PORTNAME} - ${CP} -R ${WRKSRC}/* ${PREFIX}/${PORTNAME}/ - -post-install: - @${CAT} ${PKGMESSAGE} + ${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME} + ${CP} -R ${WRKSRC}/* ${STAGEDIR}${PREFIX}/${PORTNAME}/ .include <bsd.port.mk> |