diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-03-20 23:25:13 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-03-20 23:25:13 +0800 |
commit | 41bb609d19bdcb41f6c19b251bf597ad20710462 (patch) | |
tree | 3db0a426b76146d247bb09f1824a2948ce7dc5a6 /games/xpired | |
parent | 244b46f36744c7811fd79a5d0e1d3f101601a352 (diff) | |
download | freebsd-ports-gnome-41bb609d19bdcb41f6c19b251bf597ad20710462.tar.gz freebsd-ports-gnome-41bb609d19bdcb41f6c19b251bf597ad20710462.tar.zst freebsd-ports-gnome-41bb609d19bdcb41f6c19b251bf597ad20710462.zip |
Support staging
Diffstat (limited to 'games/xpired')
-rw-r--r-- | games/xpired/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/games/xpired/Makefile b/games/xpired/Makefile index dc8867c8fae9..721e9771e649 100644 --- a/games/xpired/Makefile +++ b/games/xpired/Makefile @@ -14,15 +14,15 @@ COMMENT= An action-puzzle maze escape game (SDL) USE_SDL= gfx image mixer sdl WRKSRC= ${WRKDIR}/src -NO_STAGE= yes do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/xpired ${WRKSRC}/xpiredit ${PREFIX}/bin - @${MKDIR} ${DATADIR}/img - @${MKDIR} ${DATADIR}/snd + ${INSTALL_PROGRAM} ${WRKSRC}/xpired ${WRKSRC}/xpiredit \ + ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DATADIR}/img + @${MKDIR} ${STAGEDIR}${DATADIR}/snd .for files in xpired.lvl xpired.cfg bgimages.txt readme.txt xpired.dmo - @${INSTALL_DATA} ${WRKSRC}/${files} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/${files} ${STAGEDIR}${DATADIR} .endfor - @${INSTALL_DATA} ${WRKSRC}/img/* ${DATADIR}/img - @${INSTALL_DATA} ${WRKSRC}/snd/* ${DATADIR}/snd + ${INSTALL_DATA} ${WRKSRC}/img/* ${STAGEDIR}${DATADIR}/img + ${INSTALL_DATA} ${WRKSRC}/snd/* ${STAGEDIR}${DATADIR}/snd .include <bsd.port.mk> |