diff options
author | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2013-11-23 23:45:59 +0000 |
---|---|---|
committer | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2013-11-23 23:45:59 +0000 |
commit | 7a20e4e35aae80a8ba151d8f2df75153daa13098 (patch) | |
tree | cca2c3dbdf54932514688783619aca6260e534d8 /games/quake-reaper | |
parent | 7cbeacae408a7791c2644259774bb0c5847c0982 (diff) | |
download | ports-7a20e4e35aae80a8ba151d8f2df75153daa13098.tar.gz ports-7a20e4e35aae80a8ba151d8f2df75153daa13098.zip |
Notes
Diffstat (limited to 'games/quake-reaper')
-rw-r--r-- | games/quake-reaper/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/games/quake-reaper/Makefile b/games/quake-reaper/Makefile index dce82503bb6d..bc2ade03fd02 100644 --- a/games/quake-reaper/Makefile +++ b/games/quake-reaper/Makefile @@ -22,20 +22,16 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include "${.CURDIR}/../quake-data/Makefile.include" -.include <bsd.port.options.mk> do-install: - @${MKDIR} ${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} .for f in Autoexec.cfg PROGS.DAT - ${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR}/${f:L} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DATADIR}/${f:L} +.endfor + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in B08chg.txt Dedserv.txt Reaprb80.txt Skinspec.txt + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/${f:L} .endfor -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} -. for f in B08chg.txt Dedserv.txt Reaprb80.txt Skinspec.txt - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/${f:L} -. endfor -.endif .include <bsd.port.mk> |