diff options
author | wiz <wiz> | 2000-10-28 23:04:31 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-10-28 23:04:31 +0000 |
commit | d82e9124e3b1409b613fa5f002ed39ce730414c0 (patch) | |
tree | 76a0b8468febe124d9cff090d02462d2fa9e20b5 /emulators/darcnes | |
parent | 95d86b438e195682d415ab6d339bd752144289ca (diff) | |
download | pkgsrc-d82e9124e3b1409b613fa5f002ed39ce730414c0.tar.gz |
Update to darcnes-20001011. Changes are some CPU fixes and some code
shuffling (for details visit the homepage).
Diffstat (limited to 'emulators/darcnes')
-rw-r--r-- | emulators/darcnes/Makefile | 6 | ||||
-rw-r--r-- | emulators/darcnes/files/md5 | 4 | ||||
-rw-r--r-- | emulators/darcnes/files/patch-sum | 4 | ||||
-rw-r--r-- | emulators/darcnes/patches/patch-af | 23 |
4 files changed, 25 insertions, 12 deletions
diff --git a/emulators/darcnes/Makefile b/emulators/darcnes/Makefile index c72733af3f9..be02629dcb6 100644 --- a/emulators/darcnes/Makefile +++ b/emulators/darcnes/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.11 2000/08/10 11:56:32 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2000/10/28 23:04:31 wiz Exp $ -DISTNAME= dn9a0804 -PKGNAME= darcnes-20000804 +DISTNAME= dn9a1011 +PKGNAME= darcnes-20001011 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 cc4a70076a5..53a48131f70 100644 --- a/emulators/darcnes/files/md5 +++ b/emulators/darcnes/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.8 2000/08/10 11:56:34 wiz Exp $ +$NetBSD: md5,v 1.9 2000/10/28 23:04:31 wiz Exp $ -MD5 (dn9a0804.tgz) = 62c1765556b7f8e7f6fce1222b546b4a +MD5 (dn9a1011.tgz) = 80c81d8634debdac6a7a1e32442facaf diff --git a/emulators/darcnes/files/patch-sum b/emulators/darcnes/files/patch-sum index 51ab80ea14b..9a9340745f3 100644 --- a/emulators/darcnes/files/patch-sum +++ b/emulators/darcnes/files/patch-sum @@ -1,8 +1,8 @@ -$NetBSD: patch-sum,v 1.7 2000/08/10 11:56:34 wiz Exp $ +$NetBSD: patch-sum,v 1.8 2000/10/28 23:04:31 wiz Exp $ MD5 (patch-aa) = d7c421217da9e197ad5e0a75a142981f MD5 (patch-ad) = 75eec64ccc41f9cd860acde669b6137a MD5 (patch-ae) = 6135951eb419ac279978285494db4e98 -MD5 (patch-af) = 7287d883488bb3f4163922eb21c10bfd +MD5 (patch-af) = f29fcc18ad2480ed7a2a980ff3f6176d MD5 (patch-ag) = fa812e0a108929d5d9212d48cc1be2cb MD5 (patch-ah) = ce787219a435675eb6f5ef772798aa52 diff --git a/emulators/darcnes/patches/patch-af b/emulators/darcnes/patches/patch-af index b4e5b2aff27..512040ac3af 100644 --- a/emulators/darcnes/patches/patch-af +++ b/emulators/darcnes/patches/patch-af @@ -1,16 +1,29 @@ -$NetBSD: patch-af,v 1.3 2000/08/10 11:56:34 wiz Exp $ +$NetBSD: patch-af,v 1.4 2000/10/28 23:04:31 wiz Exp $ ---- cd_unix.c.orig Sat Aug 5 03:43:04 2000 -+++ cd_unix.c Thu Aug 10 13:49:33 2000 +--- cd_unix.c.orig Sun Aug 20 03:25:53 2000 ++++ cd_unix.c @@ -62,7 +62,6 @@ - void cd_play(u32 from, u32 to, int repeat) + void cd_play_track(u8 track) + { +-#ifdef SYSTEM_FREEBSD + struct ioc_play_track playtrack; + + /* FIXME: CD keeps playing after program quits */ +@@ -74,12 +73,10 @@ + playtrack.end_index = 1; + + ioctl(cd_drive, CDIOCPLAYTRACKS, &playtrack); +-#endif + } + + void cd_play_lba(u32 from, u32 to, int repeat) { -#ifdef SYSTEM_FREEBSD struct ioc_play_blocks playblocks; /* FIXME: ignores the repeat flag */ -@@ -77,7 +76,6 @@ +@@ -94,7 +91,6 @@ playblocks.len = to - from; ioctl(cd_drive, CDIOCPLAYBLOCKS, &playblocks); |