summaryrefslogtreecommitdiff
path: root/games/rocksndiamonds/Makefile.common
blob: d4b8794a2582fd7c69fc21f44dacd3356f1a12e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# $NetBSD: Makefile.common,v 1.4 2003/11/19 12:48:47 adam Exp $
#

DISTNAME=	rocksndiamonds-3.0.7
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"