diff options
author | wg <wg@FreeBSD.org> | 2014-07-04 06:15:05 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2014-07-04 06:15:05 +0800 |
commit | f8e7f9589a5618fc8a91313b4ae548f51208cdae (patch) | |
tree | 53a42ae9564262ec885f80b4e3f31819f6d32adf /games | |
parent | 7c14aa287f7276c016da30295e546c7a1f066a36 (diff) | |
download | freebsd-ports-gnome-f8e7f9589a5618fc8a91313b4ae548f51208cdae.tar.gz freebsd-ports-gnome-f8e7f9589a5618fc8a91313b4ae548f51208cdae.tar.zst freebsd-ports-gnome-f8e7f9589a5618fc8a91313b4ae548f51208cdae.zip |
games/quake2-matrix: support stage
Diffstat (limited to 'games')
-rw-r--r-- | games/quake2-matrix/Makefile | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/games/quake2-matrix/Makefile b/games/quake2-matrix/Makefile index 98e8f7e7713e..c9c5cc396bf3 100644 --- a/games/quake2-matrix/Makefile +++ b/games/quake2-matrix/Makefile @@ -18,23 +18,20 @@ ALL_TARGET= release DOCSDIR= ${PREFIX}/share/doc/${LATEST_LINK} -NO_STAGE= yes -.include "${.CURDIR}/../quake2-data/Makefile.include" +OPTIONS_DEFINE= DOCS -.include <bsd.port.pre.mk> +.include "${.CURDIR}/../quake2-data/Makefile.include" post-patch: @${REINPLACE_CMD} -e 's/__linux__/__unix__/' \ ${BUILD_WRKSRC}/q_shared.[ch] do-install: - ${MKDIR} ${Q2DIR}/${PORTNAME} + @${MKDIR} ${STAGEDIR}${Q2DIR}/${PORTNAME} ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/release/matrix/game.so \ - ${Q2DIR}/${PORTNAME} - cd ${WRKSRC} && ${INSTALL_DATA} *.cfg *.ini *.pak ${Q2DIR}/${PORTNAME} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR} -.endif - -.include <bsd.port.post.mk> + ${STAGEDIR}${Q2DIR}/${PORTNAME} + cd ${WRKSRC} && ${INSTALL_DATA} *.cfg *.ini *.pak ${STAGEDIR}${Q2DIR}/${PORTNAME} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> |