summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authoradam <adam>2008-01-17 21:22:35 +0000
committeradam <adam>2008-01-17 21:22:35 +0000
commit4dede5e021e3286c7c59dfc7cdadb33bf15da6f0 (patch)
tree94f34121390fe040a479df683a2e07ce4b9eef3a /games
parentd2cd51a6eec12c592f4811b770a80e7efef4b94c (diff)
downloadpkgsrc-4dede5e021e3286c7c59dfc7cdadb33bf15da6f0.tar.gz
Changes 0.11.0:
New Games: - Added support for Elvira: Mistress of the Dark. - Added support for Elvira 2: The Jaws of Cerberus. - Added support for I Have no Mouth, and I Must Scream (demo and full game). - Added support for preAGI game Mickey's Space Adventure. - Added support for preAGI game Troll's Tale. - Added support for preAGI game Winnie the Pooh in the Hundred Acre Wood. - Added support for Amiga version of Waxworks. - Added support for Lure of the Temptress. General: - Added ARM assembly routines for code in the sound mixer and SCUMM video playback, resulting in some nice speedups on several ports. - Improved the way keyboard input is handled internally, resolving some odd quirks in some game / port combinations. - Added optional 'confirm exit' dialog to the SDL backend. - Added support for TiMidity++ MIDI server. - Added DMedia MIDI driver for IRIX. - Improved detection of new game variants and localized versions. - Completely reworked internal access to files. (GSoC Task) - Added option to delete games from the list with Del key. - Added support for "~/" prefix being substituted by $HOME in paths on POSIX systems (Linux, Mac OS X etc.).
Diffstat (limited to 'games')
-rw-r--r--games/scummvm/Makefile8
-rw-r--r--games/scummvm/distinfo14
-rw-r--r--games/scummvm/patches/patch-aa12
-rw-r--r--games/scummvm/patches/patch-ac18
-rw-r--r--games/scummvm/patches/patch-ad8
5 files changed, 30 insertions, 30 deletions
diff --git a/games/scummvm/Makefile b/games/scummvm/Makefile
index 8d89815e40f..b38a9501afb 100644
--- a/games/scummvm/Makefile
+++ b/games/scummvm/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.51 2007/09/07 16:53:16 adam Exp $
+# $NetBSD: Makefile,v 1.52 2008/01/17 21:22:35 adam Exp $
-DISTNAME= scummvm-0.10.0
+DISTNAME= scummvm-0.11.0
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scummvm/}
EXTRACT_SUFX= .tar.bz2
@@ -13,8 +13,8 @@ USE_DIRS+= xdg-1.1
USE_LANGUAGES= c c++
USE_TOOLS+= gmake
HAS_CONFIGURE= yes
-CONFIGURE_ARGS+= --mandir=${PREFIX:Q}/${PKGMANDIR:Q}
-CONFIGURE_ARGS+= --prefix=${PREFIX:Q}
+CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
+CONFIGURE_ARGS+= --prefix=${PREFIX}
BUILDLINK_API_DEPENDS.zlib+= zlib>=1.2.1
UNLIMIT_RESOURCES= datasize
diff --git a/games/scummvm/distinfo b/games/scummvm/distinfo
index 2643a38e94f..f8be0dc98f0 100644
--- a/games/scummvm/distinfo
+++ b/games/scummvm/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.26 2007/07/01 10:12:02 adam Exp $
+$NetBSD: distinfo,v 1.27 2008/01/17 21:22:35 adam Exp $
-SHA1 (scummvm-0.10.0.tar.bz2) = f0c4885300ea8d6a804eb4f3ece86f85bab44e6d
-RMD160 (scummvm-0.10.0.tar.bz2) = 6de5ecbf1006f47287fd665acaf6af1fdaf27b8b
-Size (scummvm-0.10.0.tar.bz2) = 4756977 bytes
-SHA1 (patch-aa) = 438f42038670feb28a784cb3ae8859d0c350503d
-SHA1 (patch-ac) = 4ea76bbfed8fe57173dc4f0c42e0fcba18cee2f3
-SHA1 (patch-ad) = a38f54b18fc1e330913980f7b9c50eb0daec378c
+SHA1 (scummvm-0.11.0.tar.bz2) = 30ca9b90a3ef035051b28335c8127c07115396fe
+RMD160 (scummvm-0.11.0.tar.bz2) = 00dae6aa44fcf2c975a8a99449c63318ef1f6b1e
+Size (scummvm-0.11.0.tar.bz2) = 5620610 bytes
+SHA1 (patch-aa) = 2d47f055f899b7e8e04a53b1ccc742756b857d1a
+SHA1 (patch-ac) = 468c028df0ea84750582e9e311a32b81f96e4b2d
+SHA1 (patch-ad) = e1dcb9bb10478cfad125783ac8d6cdbca4999d15
diff --git a/games/scummvm/patches/patch-aa b/games/scummvm/patches/patch-aa
index 5598f91dd3d..fdb467152fb 100644
--- a/games/scummvm/patches/patch-aa
+++ b/games/scummvm/patches/patch-aa
@@ -1,13 +1,13 @@
-$NetBSD: patch-aa,v 1.17 2007/07/01 10:12:02 adam Exp $
+$NetBSD: patch-aa,v 1.18 2008/01/17 21:22:35 adam Exp $
---- Makefile.orig 2007-06-16 23:45:09.000000000 +0200
+--- Makefile.orig 2008-01-13 00:08:51.000000000 +0100
+++ Makefile
@@ -9,7 +9,7 @@ srcdir ?= .
DEFINES := -DHAVE_CONFIG_H
LDFLAGS :=
INCLUDES := -I. -I$(srcdir) -I$(srcdir)/engines
--LIBS :=
-+LIBS := ${LIBOSSAUDIO}
- OBJS :=
+-LIBS :=
++LIBS := ${LIBOSSAUDIO}
+ OBJS :=
+ DEPDIR := .deps
- MODULES :=
diff --git a/games/scummvm/patches/patch-ac b/games/scummvm/patches/patch-ac
index ab42f492dcc..190650a2349 100644
--- a/games/scummvm/patches/patch-ac
+++ b/games/scummvm/patches/patch-ac
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.4 2007/07/01 10:12:03 adam Exp $
+$NetBSD: patch-ac,v 1.5 2008/01/17 21:22:35 adam Exp $
---- common/unzip.h.orig 2007-06-16 23:27:34.000000000 +0200
+--- common/unzip.h.orig 2008-01-13 00:08:46.000000000 +0100
+++ common/unzip.h
-@@ -138,9 +138,9 @@ typedef struct unz_file_info_s
+@@ -141,9 +141,9 @@ typedef struct unz_file_info_s
tm_unz tmu_date;
} unz_file_info;
@@ -14,7 +14,7 @@ $NetBSD: patch-ac,v 1.4 2007/07/01 10:12:03 adam Exp $
/*
Compare two filename (fileName1,fileName2).
If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
-@@ -151,7 +151,7 @@ extern int ZEXPORT unzStringFileNameComp
+@@ -154,7 +154,7 @@ extern int ZEXPORT unzStringFileNameComp
*/
@@ -23,7 +23,7 @@ $NetBSD: patch-ac,v 1.4 2007/07/01 10:12:03 adam Exp $
/*
Open a Zip file. path contain the full pathname (by example,
on a Windows NT computer "c:\\zlib\\zlib111.zip" or on an Unix computer
-@@ -162,24 +162,24 @@ extern unzFile ZEXPORT unzOpen OF((const
+@@ -165,24 +165,24 @@ extern unzFile ZEXPORT unzOpen OF((const
of this unzip package.
*/
@@ -53,7 +53,7 @@ $NetBSD: patch-ac,v 1.4 2007/07/01 10:12:03 adam Exp $
/*
Get the global comment string of the ZipFile, in the szComment buffer.
uSizeBuf is the size of the szComment buffer.
-@@ -190,22 +190,22 @@ extern int ZEXPORT unzGetGlobalComment O
+@@ -193,22 +193,22 @@ extern int ZEXPORT unzGetGlobalComment O
/***************************************************************************/
/* Unzip package allow you browse the directory of the zipfile */
@@ -80,7 +80,7 @@ $NetBSD: patch-ac,v 1.4 2007/07/01 10:12:03 adam Exp $
/*
Try locate the file szFileName in the zipfile.
For the iCaseSensitivity signification, see unzStringFileNameCompare
-@@ -216,14 +216,14 @@ extern int ZEXPORT unzLocateFile OF((unz
+@@ -219,14 +219,14 @@ extern int ZEXPORT unzLocateFile OF((unz
*/
@@ -97,7 +97,7 @@ $NetBSD: patch-ac,v 1.4 2007/07/01 10:12:03 adam Exp $
/*
Get Info about the current file
if pfile_info!=NULL, the *pfile_info structure will contain somes info about
-@@ -242,22 +242,22 @@ extern int ZEXPORT unzGetCurrentFileInfo
+@@ -245,22 +245,22 @@ extern int ZEXPORT unzGetCurrentFileInfo
from it, and close it (you can close it before reading all the file)
*/
@@ -124,7 +124,7 @@ $NetBSD: patch-ac,v 1.4 2007/07/01 10:12:03 adam Exp $
/*
Read bytes from the current file (opened by unzOpenCurrentFile)
buf contain buffer where data must be copied
-@@ -269,19 +269,19 @@ extern int ZEXPORT unzReadCurrentFile OF
+@@ -272,19 +272,19 @@ extern int ZEXPORT unzReadCurrentFile OF
(UNZ_ERRNO for IO error, or zLib error for uncompress error)
*/
diff --git a/games/scummvm/patches/patch-ad b/games/scummvm/patches/patch-ad
index ebddd153511..4d8e460c7d6 100644
--- a/games/scummvm/patches/patch-ad
+++ b/games/scummvm/patches/patch-ad
@@ -1,8 +1,8 @@
-$NetBSD: patch-ad,v 1.2 2007/07/01 10:12:03 adam Exp $
+$NetBSD: patch-ad,v 1.3 2008/01/17 21:22:35 adam Exp $
---- common/unzip.cpp.orig 2007-06-16 23:27:34.000000000 +0200
+--- common/unzip.cpp.orig 2008-01-13 00:08:45.000000000 +0100
+++ common/unzip.cpp
-@@ -455,7 +455,7 @@ local void unzlocal_DosDateToTmuDate (uL
+@@ -458,7 +458,7 @@ local void unzlocal_DosDateToTmuDate (uL
/*
Get Info about the current file in the zipfile, with internal only info
*/
@@ -11,7 +11,7 @@ $NetBSD: patch-ad,v 1.2 2007/07/01 10:12:03 adam Exp $
unz_file_info *pfile_info,
unz_file_info_internal
*pfile_info_internal,
-@@ -464,7 +464,7 @@ local int unzlocal_GetCurrentFileInfoInt
+@@ -467,7 +467,7 @@ local int unzlocal_GetCurrentFileInfoInt
void *extraField,
uLong extraFieldBufferSize,
char *szComment,