diff options
author | mich <mich@FreeBSD.org> | 2014-02-10 19:14:37 +0800 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2014-02-10 19:14:37 +0800 |
commit | 080a871a4448a02075e38e408b301e75af2ca158 (patch) | |
tree | 45c1f8d8b2c7c480b543e90f9265d51a03582c60 /games/0verkill | |
parent | 3b76c097b5ea55554d03cb398a810bc2e1cf5bba (diff) | |
download | freebsd-ports-gnome-080a871a4448a02075e38e408b301e75af2ca158.tar.gz freebsd-ports-gnome-080a871a4448a02075e38e408b301e75af2ca158.tar.zst freebsd-ports-gnome-080a871a4448a02075e38e408b301e75af2ca158.zip |
- Portlint reported some issues related to new options framework and direct use of reserved variables.
PR: ports/185754
Submitted by: Hardy Schumacher <hardy.schumacher@gmx.de>
Diffstat (limited to 'games/0verkill')
-rw-r--r-- | games/0verkill/Makefile | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/games/0verkill/Makefile b/games/0verkill/Makefile index 53b28265f8d6..03fdfe8a1874 100644 --- a/games/0verkill/Makefile +++ b/games/0verkill/Makefile @@ -31,23 +31,26 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/0verkill ${STAGEDIR}${PREFIX}/bin -.for file in avi bot editor server test_server - ${INSTALL_PROGRAM} ${WRKSRC}/${file} \ - ${STAGEDIR}${PREFIX}/bin/0verkill-${file} +.for filename in avi bot editor server test_server + ${INSTALL_PROGRAM} ${WRKSRC}/${filename} \ + ${STAGEDIR}${PREFIX}/bin/0verkill-${filename} .endfor .if ${PORT_OPTIONS:MX11} ${INSTALL_PROGRAM} ${WRKSRC}/x0verkill ${STAGEDIR}${PREFIX}/bin -.for file in avi editor - ${INSTALL_PROGRAM} ${WRKSRC}/x${file} \ - ${STAGEDIR}${PREFIX}/bin/x0verkill-${file} +.for filename in avi editor + ${INSTALL_PROGRAM} ${WRKSRC}/x${filename} \ + ${STAGEDIR}${PREFIX}/bin/x0verkill-${filename} .endfor .endif .for dir in data grx cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${DATADIR} .endfor + +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for file in AUTHORS README.html avi.txt bot.txt doc.html - ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${STAGEDIR}${DOCSDIR} +.for filename in AUTHORS README.html avi.txt bot.txt doc.html + ${INSTALL_DATA} ${WRKSRC}/doc/${filename} ${STAGEDIR}${DOCSDIR} .endfor +.endif .include <bsd.port.mk> |