diff options
author | adam <adam@pkgsrc.org> | 2010-06-06 08:41:44 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-06-06 08:41:44 +0000 |
commit | cba66020a16c22d281207982fde52ff285ba21b2 (patch) | |
tree | 68b8f84d8c32fbf4304b62e67ff6587b14750b80 /games/rocksndiamonds/Makefile | |
parent | 46537fd6913604148a6d13f594fffe9887755d23 (diff) | |
download | pkgsrc-cba66020a16c22d281207982fde52ff285ba21b2.tar.gz |
Changes 3.3.0.0:
* fixed missing memory allocation in SP engine when saving engine data
for non-SP game engine snapshots (which also stores SP engine part)
* fixed problem with scrolling in native EM engine in multi-user mode
(this bug was just introduced with the experimental viewport stuff)
* fixed animation of splashing acid in EM engine with classic artwork
* fixed animation of cracking nut in EM engine with classic artwork
* fixed (implemented) single step mode in native EM and SP engines
* fixed "latest_engine" flag in classic levels (moved to single sets)
* updated SDL library DLLs for Windows to the latest release versions
(this fixed some mysterious crashes of the game on Windows systems)
* replaced EM and SP set in classic level set with native level files
* finally added a newly written "CREDITS" file to the game package
* removed sampled music loops from classic music set
Diffstat (limited to 'games/rocksndiamonds/Makefile')
-rw-r--r-- | games/rocksndiamonds/Makefile | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/games/rocksndiamonds/Makefile b/games/rocksndiamonds/Makefile index 89c0eb8d5dc..42968d26c24 100644 --- a/games/rocksndiamonds/Makefile +++ b/games/rocksndiamonds/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.41 2009/11/01 15:46:07 tnn Exp $ +# $NetBSD: Makefile,v 1.42 2010/06/06 08:41:44 adam Exp $ -DISTNAME= rocksndiamonds-3.2.6.0 -PKGREVISION= 2 +DISTNAME= rocksndiamonds-3.3.0.0 CATEGORIES= games x11 MASTER_SITES= http://www.artsoft.org/RELEASES/unix/rocksndiamonds/ @@ -45,7 +44,7 @@ OWN_DIRS_PERMS+= ${GAMES_USER} ${GAMES_GROUP} ${GAMEDIRMODE} SPECIAL_PERMS= bin/rocksndiamonds ${SETGID_GAMES_PERMS} -PLIST_SRC= PLIST ${WRKDIR}/PLIST.F ${WRKDIR}/PLIST.D +PLIST_SRC= PLIST ${WRKDIR}/PLIST.F .if ( ${MACHINE} == "i386" || ${MACHINE} == "prep" || ${MACHINE} == "cats" || \ ${MACHINE} == "shark" ) @@ -68,17 +67,17 @@ do-install: ${DESTDIR}${PREFIX}/${PKGMANDIR}/man6/rocksndiamonds.6 ${INSTALL_DATA_DIR} ${DESTDIR}${SHAREDIR} # auto-generated PLIST - rm -f ${WRKDIR}/PLIST.F ${WRKDIR}/PLIST.D + rm -f ${WRKDIR}/PLIST.F set -e; \ cd ${WRKSRC} && \ for d in sounds graphics levels music; do \ - find "$${d}" -type d -print | { while read subdir; do \ - ${INSTALL_DATA_DIR} \ + find "$${d}" -type d -print | while read subdir; do \ + ${INSTALL_DATA_DIR} \ ${DESTDIR}${SHAREDIR}/"$${subdir}"; \ - done ; } | sort -r >> ${WRKDIR}/PLIST.D; \ + done ; \ find "$${d}" -type f -print | while read f; do \ ${INSTALL_DATA} "$${f}" \ - ${DESTDIR}${SHAREDIR}/"$${f}"; \ + ${DESTDIR}${SHAREDIR}/"$${f}"; \ ${ECHO} ${SHARESUBDIR}/"$${f}" >> ${WRKDIR}/PLIST.F;\ done ; \ done |