summaryrefslogtreecommitdiff
path: root/games/rocksndiamonds
diff options
context:
space:
mode:
authorheinz <heinz>2003-12-17 21:30:39 +0000
committerheinz <heinz>2003-12-17 21:30:39 +0000
commit4748155e624ec043347429e045953f30250b3a28 (patch)
tree8b590ec71728fe7dce1ad372ebbce88e3d47933b /games/rocksndiamonds
parentbcf02386b0fe8804a6e1c96f9f7297bff46135d1 (diff)
downloadpkgsrc-4748155e624ec043347429e045953f30250b3a28.tar.gz
Let this work on Solaris (verified) and maybe Darwin (please test).
Create user and group if necessary, not every OS has "games:games".
Diffstat (limited to 'games/rocksndiamonds')
-rw-r--r--games/rocksndiamonds/Makefile8
-rw-r--r--games/rocksndiamonds/Makefile.common17
2 files changed, 19 insertions, 6 deletions
diff --git a/games/rocksndiamonds/Makefile b/games/rocksndiamonds/Makefile
index a7518704722..93b4b2ccf6c 100644
--- a/games/rocksndiamonds/Makefile
+++ b/games/rocksndiamonds/Makefile
@@ -1,9 +1,15 @@
-# $NetBSD: Makefile,v 1.16 2003/09/15 15:20:44 adam Exp $
+# $NetBSD: Makefile,v 1.17 2003/12/17 21:30:39 heinz Exp $
#
.include "Makefile.common"
COMMENT= Game like Boulder Dash, Emerald Mine, or Sokoban (X11 build)
+.if ${OPSYS} == "SunOS"
+ALL_TARGET= solaris
+.elif ${OPSYS} == "Darwin"
+ALL_TARGET= mac
+.else
ALL_TARGET= x11
+.endif
CONFLICTS= rocksndiamonds-sdl-[1-9]*
diff --git a/games/rocksndiamonds/Makefile.common b/games/rocksndiamonds/Makefile.common
index c7f3a8e591c..4ba8f5d623d 100644
--- a/games/rocksndiamonds/Makefile.common
+++ b/games/rocksndiamonds/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.5 2003/12/15 14:47:37 adam Exp $
+# $NetBSD: Makefile.common,v 1.6 2003/12/17 21:30:39 heinz Exp $
#
DISTNAME= rocksndiamonds-3.0.8
@@ -11,10 +11,17 @@ HOMEPAGE= http://www.artsoft.org/rocksndiamonds/
USE_BUILDLINK2= YES
USE_GMAKE= YES
USE_X11= YES
+USE_PKGINSTALL= 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"
+PLIST_SUBST+= ROCK_INSTALL_DIR="${INSTALL} -d -o ${RND_USER} -g ${RND_GROUP} -m 775"
+
+PKG_GROUPS= ${RND_GROUP}
+PKG_USERS= ${RND_USER}:${RND_GROUP}
+
+RND_USER= games
+RND_GROUP= games
.if ( ${MACHINE} == "i386" || ${MACHINE} == "prep" || ${MACHINE} == "cats" || \
${MACHINE} == "shark" )
@@ -29,13 +36,13 @@ pre-configure:
${MV} ${WRKSRC}/Makefile.fixed ${WRKSRC}/Makefile
do-install:
- ${INSTALL_PROGRAM} -o games -g games -m 2755 \
+ ${INSTALL_PROGRAM} -o ${RND_USER} -g ${RND_GROUP} -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
+ ${CHOWN} -R ${RND_USER}:${RND_GROUP} ${PREFIX}/share/rocksndiamonds
${CHMOD} -R a-w ${PREFIX}/share/rocksndiamonds
${INSTALL_DATA_DIR} ${SCORE_PATH}/scores
${CHMOD} 755 ${SCORE_PATH}
@@ -47,7 +54,7 @@ do-install:
${INSTALL_DATA_DIR} ${SCORE_PATH}/scores/$${directory}; \
${CHMOD} 775 ${SCORE_PATH}/scores/$${directory}; \
done
- ${CHOWN} -R games:games ${SCORE_PATH}
+ ${CHOWN} -R ${RND_USER}:${RND_GROUP} ${SCORE_PATH}
# auto-generated PLIST
${RM} -f ${WRKDIR}/PLIST
.for levdir in Boulderdash Classic_Games Contributions_1995-2000 \