1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/games/rnd_jue/Makefile
Rusmir Dusko 5c11de64b8 - Bump PORTREVISION
- Simplify master sites
- Change maintainer email to @FreeBSD.org
- USES gmake instead of USE_GMAKE
- Support STAGEDIR
- Add more levels
- Change pkg-plist, use for levels TMPPLIST

Approved by:	pawel / wg (mentors, implicit)
2013-11-05 23:38:08 +00:00

105 lines
3.3 KiB
Makefile

# Created by: nemysis <nemysis@gmx.ch>
# $FreeBSD$
PORTNAME= rnd_jue
PORTVERSION= 3.3.0.0
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= http://www.artsoft.org/RELEASES/unix/rocksndiamonds/:game \
http://www.bd-fans.com/Files/RnD/Levels/ \
SF/nemysisfreebsdp/${CATEGORIES}/rocksndiamonds/:icons
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}:game \
rocksndiamonds-3.3.1.0${EXTRACT_SUFX}:game \
${LEVELS_BD_FANS:S/$/.zip/} \
Tutorial_Alpha.zip \
${PORTNAME}_icons.tar.gz:icons
DIST_SUBDIR= rocksndiamonds
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
rocksndiamonds-3.3.1.0${EXTRACT_SUFX} \
${PORTNAME}_icons.tar.gz
MAINTAINER= nemysis@FreeBSD.org
COMMENT= Colorful Boulderdash'n'Emerald Mine'n'Sokoban'n'Stuff jue
LICENSE= GPLv2
LIB_DEPENDS+= libsmpeg.so:${PORTSDIR}/multimedia/smpeg
EXTRACT_DEPENDS+=${UNZIP_CMD}:${PORTSDIR}/archivers/unzip
USES= gmake
USE_SDL= image mixer net sdl
MAKE_ARGS= CC="${CC}" MAKE="${GMAKE}" OPTIONS="${CFLAGS}" \
RO_GAME_DIR="${DATADIR}" \
X11_PATH="${LOCALBASE}"
ALL_TARGET= sdl
SUB_FILES= pkg-message
LEVELS_BD_FANS= JuergenBonhagen rnd_the_h_world Walpurgis_Collection
PORTDOCS= *
DOCSRCDIR1= ${WRKSRC}
DOC_FILES1= CREDITS ChangeLog
DOCSRCDIR2= ${WRKSRC}/docs/elements
DOCSDIR2= ${DOCSDIR}/docs/elements
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
.include <bsd.port.options.mk>
post-extract-script:
@(cd ${WRKDIR}/rocksndiamonds* && ${COPYTREE_SHARE} levels ${WRKSRC})
.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)
@(cd ${WRKSRC}/levels/"Walpurgis Collection" && \
${RM} -fr "Walpurgis Gardens" "Walpurgis World")
@(cd ${WRKSRC}/levels/rnd_the_h_world && ${RM} -fr hwld_dceos)
@${RM} -f ${WRKDIR}/${PORTNAME}/Readme.txt
@${RM} -f ${WRKSRC}/levels/Readme.txt
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
@${REINPLACE_CMD} \
-e 's|machine/joystick.h|sys/joystick.h|' ${WRKSRC}/src/libgame/joystick.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
.for dir in graphics levels music sounds
@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${DATADIR})
.endfor
.for s in ${ICON_SIZES}
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}_${s}.png \
${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png
.endfor
${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \
${STAGEDIR}${PREFIX}/share/pixmaps/
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR}
@${MKDIR} ${STAGEDIR}${DOCSDIR2}
${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2}
@cd ${STAGEDIR}${PREFIX} && ${FIND} ${DATADIR_REL}/levels \
-type f >> ${TMPPLIST} && \
${FIND} ${DATADIR_REL}/levels -type d -o -type l | ${SORT} -r | \
${SED} 's|^|@dirrm |' >> ${TMPPLIST}
.include <bsd.port.mk>