summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>2000-08-10 11:56:32 +0000
committerwiz <wiz>2000-08-10 11:56:32 +0000
commit2c63d87bd511ba6197934f84597817d020891ab6 (patch)
tree7c35cc6cf62c4036d186dd1a0d1d9b766c6da677
parentf67308bb4d7d1a556ba7b674b4ba2e7ec0915733 (diff)
downloadpkgsrc-2c63d87bd511ba6197934f84597817d020891ab6.tar.gz
Update darcnes to 9a0804.
Changes since last version: o Changed the cpu6502 core to use lazy flag evaluation. o Changed the NES PPU to draw sprites from the tilecache. o Added a bitdepth-independant generic palette system. o Added CD audio playback to the PCD CD driver.
-rw-r--r--emulators/darcnes/Makefile6
-rw-r--r--emulators/darcnes/files/md54
-rw-r--r--emulators/darcnes/files/patch-sum3
-rw-r--r--emulators/darcnes/patches/patch-af20
4 files changed, 27 insertions, 6 deletions
diff --git a/emulators/darcnes/Makefile b/emulators/darcnes/Makefile
index 55cb9269d41..c72733af3f9 100644
--- a/emulators/darcnes/Makefile
+++ b/emulators/darcnes/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.10 2000/07/21 19:23:06 wiz Exp $
+# $NetBSD: Makefile,v 1.11 2000/08/10 11:56:32 wiz Exp $
-DISTNAME= dn9a0710
-PKGNAME= darcnes-20000710
+DISTNAME= dn9a0804
+PKGNAME= darcnes-20000804
WRKSRC= ${WRKDIR}/darcnes
CATEGORIES= emulators
MASTER_SITES= http://www.netway.com/~nyef/
diff --git a/emulators/darcnes/files/md5 b/emulators/darcnes/files/md5
index 9912567ab10..cc4a70076a5 100644
--- a/emulators/darcnes/files/md5
+++ b/emulators/darcnes/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.7 2000/07/21 19:23:07 wiz Exp $
+$NetBSD: md5,v 1.8 2000/08/10 11:56:34 wiz Exp $
-MD5 (dn9a0710.tgz) = be546fe82775f843106373d56797e5b5
+MD5 (dn9a0804.tgz) = 62c1765556b7f8e7f6fce1222b546b4a
diff --git a/emulators/darcnes/files/patch-sum b/emulators/darcnes/files/patch-sum
index 33b6fe24c1a..51ab80ea14b 100644
--- a/emulators/darcnes/files/patch-sum
+++ b/emulators/darcnes/files/patch-sum
@@ -1,7 +1,8 @@
-$NetBSD: patch-sum,v 1.6 2000/07/21 19:23:07 wiz Exp $
+$NetBSD: patch-sum,v 1.7 2000/08/10 11:56:34 wiz Exp $
MD5 (patch-aa) = d7c421217da9e197ad5e0a75a142981f
MD5 (patch-ad) = 75eec64ccc41f9cd860acde669b6137a
MD5 (patch-ae) = 6135951eb419ac279978285494db4e98
+MD5 (patch-af) = 7287d883488bb3f4163922eb21c10bfd
MD5 (patch-ag) = fa812e0a108929d5d9212d48cc1be2cb
MD5 (patch-ah) = ce787219a435675eb6f5ef772798aa52
diff --git a/emulators/darcnes/patches/patch-af b/emulators/darcnes/patches/patch-af
new file mode 100644
index 00000000000..b4e5b2aff27
--- /dev/null
+++ b/emulators/darcnes/patches/patch-af
@@ -0,0 +1,20 @@
+$NetBSD: patch-af,v 1.3 2000/08/10 11:56:34 wiz Exp $
+
+--- cd_unix.c.orig Sat Aug 5 03:43:04 2000
++++ cd_unix.c Thu Aug 10 13:49:33 2000
+@@ -62,7 +62,6 @@
+
+ void cd_play(u32 from, u32 to, int repeat)
+ {
+-#ifdef SYSTEM_FREEBSD
+ struct ioc_play_blocks playblocks;
+
+ /* FIXME: ignores the repeat flag */
+@@ -77,7 +76,6 @@
+ playblocks.len = to - from;
+
+ ioctl(cd_drive, CDIOCPLAYBLOCKS, &playblocks);
+-#endif
+ }
+
+ #ifdef SYSTEM_LINUX