pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/games/scummvm Changes 0.9.0:
details: https://anonhg.NetBSD.org/pkgsrc/rev/ba0c24dabd44
branches: trunk
changeset: 515511:ba0c24dabd44
user: adam <adam%pkgsrc.org@localhost>
date: Mon Jul 03 12:25:05 2006 +0000
description:
Changes 0.9.0:
New Games:
- Added kyra engine (for the Kyrandia series). Currently only the first
part of the series is supported.
- Added support for The Feeble Files
General:
- Fixed a bug that prevented you from overriding the scaler from the command
line for 640x480 games.
- Added subtitle configuration controls to the Launcher options dialogs.
- GUI was completely redesigned and is now themeable.
SCUMM:
- Rewrote the detection code, for improved accuracy and better support of
fan translations. It should now work much better on games with unknown
MD5.
- Added subtitle configuration controls to the options dialog.
- Fixed graphical glitches in several HE games.
- Fixed palette glitches in Big Thinkers 1st Grade.
- Fixed songs in the kitchen of Pajama Sam 1.
SAGA
- Fixed sound distortion in the Inherit the Earth demo.
Simon
- Improved Hebrew support
- Lots of long-overdue cleanups and re-structuring were made to accomodate
for The Feeble Files.
- Fixed a rare MIDI bug that would cause a channel to change volume without
adjusting it to the master volume.
- Fixed delay after introduction of Simon the Sorcerer 1 demo (With speech)
- Fixed music tempo in DOS versions of Simon the Sorcerer 1.
Broken Sword 1:
- Added support for the --save-slot option.
Broken Sword 2:
- Major rewrite of how game resources are accessed in memory. This
should fix alignment issues reported on some platforms.
- Missing data files are handled more gracefully.
diffstat:
games/scummvm/Makefile | 5 ++---
games/scummvm/distinfo | 12 ++++++------
games/scummvm/patches/patch-aa | 12 ++++++------
games/scummvm/patches/patch-ab | 6 +++---
4 files changed, 17 insertions(+), 18 deletions(-)
diffs (78 lines):
diff -r 8f1f22a84f3d -r ba0c24dabd44 games/scummvm/Makefile
--- a/games/scummvm/Makefile Mon Jul 03 11:53:56 2006 +0000
+++ b/games/scummvm/Makefile Mon Jul 03 12:25:05 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.44 2006/06/12 16:28:10 wiz Exp $
+# $NetBSD: Makefile,v 1.45 2006/07/03 12:25:05 adam Exp $
-DISTNAME= scummvm-0.8.2
-PKGREVISION= 1
+DISTNAME= scummvm-0.9.0
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scummvm/}
EXTRACT_SUFX= .tar.bz2
diff -r 8f1f22a84f3d -r ba0c24dabd44 games/scummvm/distinfo
--- a/games/scummvm/distinfo Mon Jul 03 11:53:56 2006 +0000
+++ b/games/scummvm/distinfo Mon Jul 03 12:25:05 2006 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.21 2006/02/09 08:24:48 adam Exp $
+$NetBSD: distinfo,v 1.22 2006/07/03 12:25:05 adam Exp $
-SHA1 (scummvm-0.8.2.tar.bz2) = c17605d761ea37c8fa49db1a4797b4b137629c56
-RMD160 (scummvm-0.8.2.tar.bz2) = dfc40778bee6156c816435086e5c5d42eef3e5de
-Size (scummvm-0.8.2.tar.bz2) = 2698022 bytes
-SHA1 (patch-aa) = 97356325935a406a8f19a6f594936b66a3231123
-SHA1 (patch-ab) = 370bd3585db73f9e8fd78e5d037ed7d2bdb23705
+SHA1 (scummvm-0.9.0.tar.bz2) = add7b5de06734326e9adacdd4d33264b1e563567
+RMD160 (scummvm-0.9.0.tar.bz2) = 3537c2c0c5ed92db50dea47836b1dca83b21e1f0
+Size (scummvm-0.9.0.tar.bz2) = 4305972 bytes
+SHA1 (patch-aa) = a0a0bfc0ddddb2c54044e2e667e6a8d2e5529a1c
+SHA1 (patch-ab) = 8769804560a8410da0a6f9e95a987fa6be630a6d
diff -r 8f1f22a84f3d -r ba0c24dabd44 games/scummvm/patches/patch-aa
--- a/games/scummvm/patches/patch-aa Mon Jul 03 11:53:56 2006 +0000
+++ b/games/scummvm/patches/patch-aa Mon Jul 03 12:25:05 2006 +0000
@@ -1,19 +1,19 @@
-$NetBSD: patch-aa,v 1.15 2005/10/31 09:05:34 adam Exp $
+$NetBSD: patch-aa,v 1.16 2006/07/03 12:25:05 adam Exp $
---- Makefile.orig 2005-10-29 03:00:57.000000000 +0200
+--- Makefile.orig 2006-06-21 23:19:07.000000000 +0200
+++ Makefile
@@ -9,7 +9,7 @@ srcdir ?= .
DEFINES := -DHAVE_CONFIG_H
LDFLAGS :=
- INCLUDES := -I. -I$(srcdir)
+ INCLUDES := -I. -I$(srcdir) -I$(srcdir)/engines
-LIBS :=
+LIBS := ${LIBOSSAUDIO}
OBJS :=
MODULES :=
-@@ -21,8 +21,7 @@ include config.mak
- # Uncomment this for stricter compile time code verification
- # CXXFLAGS+= -Werror
+@@ -18,8 +18,7 @@ MODULE_DIRS :=
+ # Load the make rules generated by configure
+ include config.mak
-CXXFLAGS:= -Wall $(CXXFLAGS)
-CXXFLAGS+= -O -Wuninitialized
diff -r 8f1f22a84f3d -r ba0c24dabd44 games/scummvm/patches/patch-ab
--- a/games/scummvm/patches/patch-ab Mon Jul 03 11:53:56 2006 +0000
+++ b/games/scummvm/patches/patch-ab Mon Jul 03 12:25:05 2006 +0000
@@ -1,6 +1,6 @@
-$NetBSD: patch-ab,v 1.5 2005/10/31 09:05:34 adam Exp $
+$NetBSD: patch-ab,v 1.6 2006/07/03 12:25:05 adam Exp $
---- common.rules.orig 2005-10-29 03:01:11.000000000 +0200
+--- common.rules.orig 2006-06-21 23:19:07.000000000 +0200
+++ common.rules
@@ -27,6 +27,8 @@ MODULE_LIB-$(MODULE) := $(MODULE)/lib$(n
# If not building as a plugin, add the object files to the main OBJS list
@@ -9,5 +9,5 @@
+CPPFLAGS+= -I$(BUILDLINK_DIR)/include
+
# Convenience library target
- $(MODULE_LIB-$(MODULE)): $(MODULE_OBJS)
+ $(MODULE_LIB-$(MODULE)): $(MODULE_OBJS-$(MODULE))
-$(RM) $@
Home |
Main Index |
Thread Index |
Old Index