summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorkristerw <kristerw@pkgsrc.org>2001-05-23 21:52:55 +0000
committerkristerw <kristerw@pkgsrc.org>2001-05-23 21:52:55 +0000
commit4385d67abcef013bce98926023b4244ee9e0fb3d (patch)
treed9d7dc8bc27353eaa107ae189d1a4da0ca59cb91 /emulators
parentd1937b79001d28954f5393837e1f83a0173909aa (diff)
downloadpkgsrc-4385d67abcef013bce98926023b4244ee9e0fb3d.tar.gz
Update xmame to 0.37b14.2.
This contains everything from MAME 0.37b14 except for 'steadykey' support. The Unix-specific changes that affect NetBSD are: - The sound device is now released when the emulation is paused. (Shyouzou Sugitani) - Added -hotrod for HotRod and HotRod SE support. Set it to 1 for HotRod, 2 for HotRod SE. - Fixed a bug in logerror() that could cause a crash. (Pete French)
Diffstat (limited to 'emulators')
-rw-r--r--emulators/xmame/Makefile4
-rw-r--r--emulators/xmame/distinfo7
-rw-r--r--emulators/xmame/patches/patch-ab22
3 files changed, 5 insertions, 28 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile
index 08cf769a139..6df361b294b 100644
--- a/emulators/xmame/Makefile
+++ b/emulators/xmame/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.46 2001/04/04 22:14:13 kristerw Exp $
+# $NetBSD: Makefile,v 1.47 2001/05/23 21:52:55 kristerw Exp $
#
-DISTNAME= xmame-0.37b13.1
+DISTNAME= xmame-0.37b14.2
CATEGORIES= emulators games x11
MASTER_SITES= http://x.mame.net/download/
EXTRACT_SUFX= .tar.bz2
diff --git a/emulators/xmame/distinfo b/emulators/xmame/distinfo
index 119acae20a4..2d36daba5e0 100644
--- a/emulators/xmame/distinfo
+++ b/emulators/xmame/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.3 2001/05/21 07:12:49 mrg Exp $
+$NetBSD: distinfo,v 1.4 2001/05/23 21:52:55 kristerw Exp $
-SHA1 (xmame-0.37b13.1.tar.bz2) = 88447c926ff3604e2325aafad73b1e50069c2fcf
-Size (xmame-0.37b13.1.tar.bz2) = 4894634 bytes
+SHA1 (xmame-0.37b14.2.tar.bz2) = 35f5bb71bc8da9c75c80fccb28804b31a06e016f
+Size (xmame-0.37b14.2.tar.bz2) = 4826277 bytes
SHA1 (patch-aa) = 12378648c0158c91dae233b84a2543090e5b7839
-SHA1 (patch-ab) = 18971a44ea477e9b72b6f5e1ed44504e2c3edc06
SHA1 (patch-ae) = e4dc55f21759f50b0c48816314ebdc4039d2490f
SHA1 (patch-am) = 27908ecd35407621eae4c777de3079279f58176e
diff --git a/emulators/xmame/patches/patch-ab b/emulators/xmame/patches/patch-ab
deleted file mode 100644
index febeb76f9f0..00000000000
--- a/emulators/xmame/patches/patch-ab
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ab,v 1.7 2001/03/31 18:59:30 kristerw Exp $
---- src/drawgfx.c.orig Wed Mar 28 07:30:13 2001
-+++ src/drawgfx.c Fri Mar 30 23:26:46 2001
-@@ -2,6 +2,9 @@
-
- #include "driver.h"
-
-+/* The heavy use of INLINE in this file causes memory explosion in egcs. */
-+#undef INLINE
-+#define INLINE static
-
- #ifdef LSB_FIRST
- #define SHIFT0 0
-@@ -34,7 +37,7 @@
- return (*((UINT8 *)address ) << SHIFT0) +
- (*((UINT8 *)address+1) << SHIFT1) +
- (*((UINT8 *)address+2) << SHIFT2) +
-- (*((UINT8 *)address+3) << SHIFT3) );
-+ (*((UINT8 *)address+3) << SHIFT3);
- }
- else
- return *(UINT32 *)address;