diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2014-04-17 12:20:56 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2014-04-17 12:20:56 +0000 |
commit | d6c09f429ffe59027276d1eafb51486f9d1f20ed (patch) | |
tree | 707745e6c464fdb497d57419240479836e51a188 /games/quake3-wfa | |
parent | 9f1f33a29900d74ab165d19f2a86d1495271fc44 (diff) | |
download | ports-d6c09f429ffe59027276d1eafb51486f9d1f20ed.tar.gz ports-d6c09f429ffe59027276d1eafb51486f9d1f20ed.zip |
Notes
Diffstat (limited to 'games/quake3-wfa')
-rw-r--r-- | games/quake3-wfa/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/games/quake3-wfa/Makefile b/games/quake3-wfa/Makefile index 5b73297711fa..9a895a2688cc 100644 --- a/games/quake3-wfa/Makefile +++ b/games/quake3-wfa/Makefile @@ -23,21 +23,15 @@ DATADIR= ${Q3DIR}/${PORTNAME} OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include "${.CURDIR}/../quake3-data/Makefile.include" -.include <bsd.port.options.mk> post-extract: @${RM} ${WRKSRC}/help/BobWFACfgV236.exe do-install: - @${MKDIR} ${DATADIR} -.for f in *.cfg *.pk3 - ${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR} -.endfor -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${CP} -a ${WRKSRC}/EnglishRadioHelp ${WRKSRC}/help ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${INSTALL_DATA} *.cfg *.pk3 ${STAGEDIR}${DATADIR}) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${CP} -a ${WRKSRC}/EnglishRadioHelp ${WRKSRC}/help ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |