diff options
author | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2013-11-17 11:52:51 +0800 |
---|---|---|
committer | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2013-11-17 11:52:51 +0800 |
commit | 2055444f87fb5adf531cbd4e258c6cc38121a07c (patch) | |
tree | 058e5f4a5d3edbdf05b22694d89b735d02914ac0 /games/imaze | |
parent | 3d10fdbf881315357e43797b7df4b00144ad1673 (diff) | |
download | freebsd-ports-gnome-2055444f87fb5adf531cbd4e258c6cc38121a07c.tar.gz freebsd-ports-gnome-2055444f87fb5adf531cbd4e258c6cc38121a07c.tar.zst freebsd-ports-gnome-2055444f87fb5adf531cbd4e258c6cc38121a07c.zip |
- Add stage support
Diffstat (limited to 'games/imaze')
-rw-r--r-- | games/imaze/Makefile | 21 | ||||
-rw-r--r-- | games/imaze/pkg-plist | 6 |
2 files changed, 16 insertions, 11 deletions
diff --git a/games/imaze/Makefile b/games/imaze/Makefile index 168552fda1f8..12c97617e6af 100644 --- a/games/imaze/Makefile +++ b/games/imaze/Makefile @@ -31,9 +31,8 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= ${TOOLKIT} X11Dir="${LOCALBASE}" CFlags="${CFLAGS}" MAKE_ENV= SOUNDDIR="${DATADIR}/sounds" -MAN6= genlab.6 imaze.6 imazesrv.6 imazestat.6 ninja.6 xlabed.6 +MAN_PAGES= genlab.6 imaze.6 imazesrv.6 imazestat.6 ninja.6 xlabed.6 -NO_STAGE= yes .include <bsd.port.options.mk> .if empty(PORT_OPTIONS:MAUDIO) @@ -60,17 +59,17 @@ TOOLKIT= xview do-install: .for i in genlab imaze imazesrv imazestat ninja xlabed - (cd ${WRKSRC}/source && ${INSTALL_PROGRAM} ${i} ${PREFIX}/bin) + (cd ${WRKSRC}/source && ${INSTALL_PROGRAM} ${i} ${STAGEDIR}${PREFIX}/bin) .endfor -.for i in ${MAN6} - (cd ${WRKSRC}/man6 && ${INSTALL_MAN} ${i} ${MAN6PREFIX}/man/man6) +.for i in ${MAN_PAGES} + (cd ${WRKSRC}/man6 && ${INSTALL_MAN} ${i} ${STAGEDIR}${MAN6PREFIX}/man/man6) .endfor - @${MKDIR} ${DATADIR} - (cd ${WRKSRC} && ${INSTALL_DATA} README ${DATADIR}) - @${MKDIR} ${DATADIR}/labs - (cd ${WRKSRC}/labs && ${INSTALL_DATA} *.lab ${DATADIR}/labs) - @${MKDIR} ${DATADIR}/sounds - (cd ${WRKSRC}/sounds && ${INSTALL_DATA} *.au ${DATADIR}/sounds) + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${INSTALL_DATA} README ${STAGEDIR}${DATADIR}) + @${MKDIR} ${STAGEDIR}${DATADIR}/labs + (cd ${WRKSRC}/labs && ${INSTALL_DATA} *.lab ${STAGEDIR}${DATADIR}/labs) + @${MKDIR} ${STAGEDIR}${DATADIR}/sounds + (cd ${WRKSRC}/sounds && ${INSTALL_DATA} *.au ${STAGEDIR}${DATADIR}/sounds) @${ECHO_MSG} "Please read the file \"${DATADIR}/README\"." .include <bsd.port.mk> diff --git a/games/imaze/pkg-plist b/games/imaze/pkg-plist index 2f9243d0fc53..5d829c5b1a36 100644 --- a/games/imaze/pkg-plist +++ b/games/imaze/pkg-plist @@ -4,6 +4,12 @@ bin/genlab bin/imazesrv bin/imazestat bin/xlabed +man/man6/genlab.6.gz +man/man6/imaze.6.gz +man/man6/imazesrv.6.gz +man/man6/imazestat.6.gz +man/man6/ninja.6.gz +man/man6/xlabed.6.gz share/imaze/labs/10x10.lab share/imaze/labs/12x12.lab share/imaze/labs/15x15.lab |