summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorheinz <heinz>2007-05-19 22:36:11 +0000
committerheinz <heinz>2007-05-19 22:36:11 +0000
commita830ed30773e4e498fdda0cbbedf51db06daf5fe (patch)
tree7942b711736a3568024708c29590460335ca5ca2 /games
parentbf28946b778d58eefe855c67a0ae1839226c7d28 (diff)
downloadpkgsrc-a830ed30773e4e498fdda0cbbedf51db06daf5fe.tar.gz
Prepared package for installation to DESTDIR. Package not declared ready
because there is still the pkgsrc issue of wrong permissions recorded in +INSTALL scripts.
Diffstat (limited to 'games')
-rw-r--r--games/rocksndiamonds/Makefile18
1 files changed, 11 insertions, 7 deletions
diff --git a/games/rocksndiamonds/Makefile b/games/rocksndiamonds/Makefile
index a9fb3298631..7be12fd95cb 100644
--- a/games/rocksndiamonds/Makefile
+++ b/games/rocksndiamonds/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.34 2007/03/18 18:29:38 adam Exp $
+# $NetBSD: Makefile,v 1.35 2007/05/19 22:36:11 heinz Exp $
DISTNAME= rocksndiamonds-3.2.3
CATEGORIES= games x11
@@ -8,9 +8,11 @@ MAINTAINER= heinz@NetBSD.org
HOMEPAGE= http://www.artsoft.org/rocksndiamonds/
COMMENT= Game like Boulder Dash, Emerald Mine, or Sokoban
+PKG_DESTDIR_SUPPORT= # wrong permissions in +INSTALL script
+
USE_TOOLS+= gmake
-INSTALLATION_DIRS+= ${PKGMANDIR}/man6
+INSTALLATION_DIRS+= bin ${PKGMANDIR}/man6
PKG_GROUPS+= ${GAMEGRP}
PKG_USERS+= ${GAMEOWN}:${GAMEGRP}
@@ -58,21 +60,23 @@ MAKE_FLAGS+= X11_LIBS=-lX11
.include "options.mk"
do-install:
- ${INSTALL_GAME} ${WRKSRC}/rocksndiamonds ${PREFIX}/bin/
+ ${INSTALL_GAME} ${WRKSRC}/rocksndiamonds ${DESTDIR:Q}${PREFIX:Q}/bin/
${INSTALL_MAN} ${WRKSRC}/rocksndiamonds.1 \
- ${PREFIX}/${PKGMANDIR}/man6/rocksndiamonds.6
- ${INSTALL_DATA_DIR} ${SHAREDIR}
+ ${DESTDIR:Q}${PREFIX:Q}/${PKGMANDIR}/man6/rocksndiamonds.6
+ ${INSTALL_DATA_DIR} ${DESTDIR:Q}${SHAREDIR:Q}
# auto-generated PLIST
rm -f ${WRKDIR}/PLIST.F ${WRKDIR}/PLIST.D
set -e; \
cd ${WRKSRC} && \
for d in sounds graphics levels music; do \
find "$${d}" -type d -print | { while read subdir; do \
- ${INSTALL_DATA_DIR} ${SHAREDIR}/"$${subdir}"; \
+ ${INSTALL_DATA_DIR} \
+ ${DESTDIR:Q}${SHAREDIR:Q}/"$${subdir}"; \
${ECHO} "@dirrm ${SHARESUBDIR}/$${subdir}"; \
done ; } | sort -r >> ${WRKDIR}/PLIST.D; \
find "$${d}" -type f -print | while read f; do \
- ${INSTALL_DATA} "$${f}" ${SHAREDIR}/"$${f}"; \
+ ${INSTALL_DATA} "$${f}" \
+ ${DESTDIR:Q}${SHAREDIR:Q}/"$${f}"; \
${ECHO} ${SHARESUBDIR}/"$${f}" >> ${WRKDIR}/PLIST.F;\
done ; \
done