diff options
author | Rusmir Dusko <nemysis@FreeBSD.org> | 2014-03-06 16:35:42 +0000 |
---|---|---|
committer | Rusmir Dusko <nemysis@FreeBSD.org> | 2014-03-06 16:35:42 +0000 |
commit | abcb92d09e1f07b70c508ede252fc5ab004746d5 (patch) | |
tree | 3acd082d492147ee1d0b5f8f77235ea9f82a6b81 /games | |
parent | 17ee320da90172ea5cef93ff57a77ea58e7ab606 (diff) | |
download | ports-abcb92d09e1f07b70c508ede252fc5ab004746d5.tar.gz ports-abcb92d09e1f07b70c508ede252fc5ab004746d5.zip |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/rnd_jue/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/games/rnd_jue/Makefile b/games/rnd_jue/Makefile index 24ccc865310b..8b62efe17d85 100644 --- a/games/rnd_jue/Makefile +++ b/games/rnd_jue/Makefile @@ -49,8 +49,8 @@ DOC_FILES2= *.txt INSTALLS_ICONS= yes ICON_SIZES= 32x32 48x48 64x64 72x72 96x96 -DESKTOP_ENTRIES="R'n'D jue" "${COMMENT}" "${PORTNAME}" \ - "${PORTNAME}" "Game;ArcadeGame;" false +DESKTOP_ENTRIES="R'n'D jue" "" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" "" .include <bsd.port.options.mk> @@ -59,8 +59,10 @@ post-extract-script: .for l in ${LEVELS_BD_FANS:S/$/.zip/} @${UNZIP_CMD} -qo -d ${WRKSRC}/levels ${_DISTDIR}/${l} .endfor - @${UNZIP_CMD} -qo -d ${WRKSRC}/levels/Tutorials ${_DISTDIR}/Tutorial_Alpha.zip - @(cd ${WRKSRC}/levels/Tutorials && ${MV} "Tutorial Alpha" rnd_tutorial_alpha) + @${UNZIP_CMD} -qo -d ${WRKSRC}/levels/Tutorials \ + ${_DISTDIR}/Tutorial_Alpha.zip + @(cd ${WRKSRC}/levels/Tutorials && ${MV} \ + "Tutorial Alpha" rnd_tutorial_alpha) @(cd ${WRKSRC}/levels/"Walpurgis Collection" && \ ${RM} -fr "Walpurgis Gardens" "Walpurgis World") @@ -72,9 +74,11 @@ post-patch: @${REINPLACE_CMD} \ -e 's|sdl-config|$${SDL_CONFIG}|g' ${WRKSRC}/src/Makefile @${REINPLACE_CMD} \ - -e 's|machine/soundcard.h|sys/soundcard.h|' ${WRKSRC}/src/libgame/sound.c + -e 's|machine/soundcard.h|sys/soundcard.h|' \ + ${WRKSRC}/src/libgame/sound.c @${REINPLACE_CMD} \ - -e 's|machine/joystick.h|sys/joystick.h|' ${WRKSRC}/src/libgame/joystick.c + -e 's|machine/joystick.h|sys/joystick.h|' \ + ${WRKSRC}/src/libgame/joystick.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ |