2003-11-19 13:48:47 +01:00
|
|
|
# $NetBSD: Makefile.common,v 1.4 2003/11/19 12:48:47 adam Exp $
|
2003-09-15 17:20:44 +02:00
|
|
|
#
|
|
|
|
|
2003-11-19 13:48:47 +01:00
|
|
|
DISTNAME= rocksndiamonds-3.0.7
|
2003-09-15 17:20:44 +02:00
|
|
|
CATEGORIES= games x11
|
|
|
|
MASTER_SITES= http://www.artsoft.org/RELEASES/unix/rocksndiamonds/
|
|
|
|
|
|
|
|
MAINTAINER= heinz-rnd@NetBSD.org
|
|
|
|
HOMEPAGE= http://www.artsoft.org/rocksndiamonds/
|
|
|
|
|
|
|
|
USE_BUILDLINK2= YES
|
|
|
|
USE_GMAKE= YES
|
|
|
|
USE_X11= YES
|
|
|
|
|
|
|
|
PLIST_SRC= ${WRKDIR}/PLIST ../rocksndiamonds/PLIST
|
|
|
|
PLIST_SUBST+= SCORE_PATH=${SCORE_PATH}
|
|
|
|
PLIST_SUBST+= ROCK_INSTALL_DIR="${INSTALL} -d -o games -g games -m 775"
|
|
|
|
|
|
|
|
.if ( ${MACHINE} == "i386" || ${MACHINE} == "prep" || ${MACHINE} == "cats" || \
|
|
|
|
${MACHINE} == "shark" )
|
|
|
|
MAKE_ENV+=HAVE_JOYSTICK=1
|
|
|
|
.endif
|
|
|
|
|
|
|
|
SCORE_PATH= /var/games/rocksndiamonds
|
|
|
|
|
|
|
|
pre-configure:
|
|
|
|
@${SED} -e "s,@SCORE_PATH@,${SCORE_PATH},g" \
|
|
|
|
${WRKSRC}/Makefile > ${WRKSRC}/Makefile.fixed && \
|
|
|
|
${MV} ${WRKSRC}/Makefile.fixed ${WRKSRC}/Makefile
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} -o games -g games -m 2755 \
|
|
|
|
${WRKSRC}/rocksndiamonds ${PREFIX}/bin/
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/rocksndiamonds.1 ${PREFIX}/man/man1/
|
|
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/rocksndiamonds
|
|
|
|
cd ${WRKSRC} && ${PAX} -rw sounds graphics levels music \
|
|
|
|
${PREFIX}/share/rocksndiamonds/
|
|
|
|
${CHOWN} -R games:games ${PREFIX}/share/rocksndiamonds
|
|
|
|
${CHMOD} -R a-w ${PREFIX}/share/rocksndiamonds
|
|
|
|
${INSTALL_DATA_DIR} ${SCORE_PATH}/scores
|
|
|
|
${CHMOD} 755 ${SCORE_PATH}
|
|
|
|
${CHMOD} 775 ${SCORE_PATH}/scores
|
|
|
|
# extract basenames of level subdirectories, levelinfo.conf is a file
|
|
|
|
LEVELDIRS=`${LS} -d ${WRKSRC}/levels/*/* | \
|
|
|
|
${SED} -e 's@^.*/\([^/]*\)$$@\1@' -e '/levelinfo\.conf/d'` && \
|
|
|
|
for directory in $${LEVELDIRS}; do \
|
|
|
|
${INSTALL_DATA_DIR} ${SCORE_PATH}/scores/$${directory}; \
|
|
|
|
${CHMOD} 775 ${SCORE_PATH}/scores/$${directory}; \
|
|
|
|
done
|
|
|
|
${CHOWN} -R games:games ${SCORE_PATH}
|
|
|
|
# auto-generated PLIST
|
|
|
|
${RM} -f ${WRKDIR}/PLIST
|
|
|
|
.for levdir in Boulderdash Classic_Games Contributions_1995-2000 \
|
|
|
|
Contributions_2001 Contributions_2002 Contributions_2003 Examples \
|
|
|
|
Tutorials
|
|
|
|
cd ${PREFIX} && \
|
|
|
|
${FIND} share/rocksndiamonds/levels/${levdir} -type f >>${WRKDIR}/PLIST
|
|
|
|
.endfor
|
|
|
|
.for directory in graphics music sounds
|
|
|
|
cd ${PREFIX} && \
|
|
|
|
${FIND} share/rocksndiamonds/${directory} -type f >>${WRKDIR}/PLIST
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|