diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-05-29 13:38:46 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-05-29 13:38:46 +0000 |
commit | 73fef465de3f8c85e01adb1052a21646c315cc62 (patch) | |
tree | 24739dab08b37ef56456bc82582994e5bfa89bb1 | |
parent | fe6de16ebe7189b4264d63290ed2dcffd3c34a20 (diff) | |
download | ports-73fef465de3f8c85e01adb1052a21646c315cc62.tar.gz ports-73fef465de3f8c85e01adb1052a21646c315cc62.zip |
Notes
-rw-r--r-- | games/xroads/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/games/xroads/Makefile b/games/xroads/Makefile index 9905547a7f3e..223354d63c16 100644 --- a/games/xroads/Makefile +++ b/games/xroads/Makefile @@ -13,19 +13,18 @@ COMMENT= Commodore 64 "Crossroads"-like video game for X Window System USE_XORG= x11 xpm xext -NO_STAGE= yes .include <bsd.port.pre.mk> do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xroads ${PREFIX}/bin - @${MKDIR} ${PREFIX}/share/xroads + ${INSTALL_PROGRAM} ${WRKSRC}/xroads ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/share/xroads .for file in 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 - ${INSTALL_DATA} ${WRKSRC}/map${file}.xrm ${PREFIX}/share/xroads + ${INSTALL_DATA} ${WRKSRC}/map${file}.xrm ${STAGEDIR}${PREFIX}/share/xroads .endfor .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/xroads + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/xroads .for file in BUGS CHANGELOG README - ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/xroads + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/share/doc/xroads .endfor .endif |