summaryrefslogtreecommitdiff
path: root/emulators/gxemul
diff options
context:
space:
mode:
authorJoseph Koshy <jkoshy@FreeBSD.org>2006-11-08 04:54:00 +0000
committerJoseph Koshy <jkoshy@FreeBSD.org>2006-11-08 04:54:00 +0000
commit7a5341a07bc06eb9af72e8a75e1d07d54953faf5 (patch)
tree1642a945b944cda8f1eb94432fca6be7d41c5ceb /emulators/gxemul
parentDeprecate and mark for expiration on 2007-01-07. Only usable python (diff)
Upgrade to v0.4.3. Upstream changes include:
- SH4 emulation now allows NetBSD/dreamcast to reach userland. - A framework to let emulated clocks run at same speed as the host clock has been added. - The built-in debugger's expression syntax has been changed. - Better MIPS emulation for some combination of emulated processor and guest operating system. - Bug fixes.
Notes
Notes: svn path=/head/; revision=176782
Diffstat (limited to 'emulators/gxemul')
-rw-r--r--emulators/gxemul/Makefile3
-rw-r--r--emulators/gxemul/distinfo6
-rw-r--r--emulators/gxemul/files/patch-src-machines-machine_evbmips.c14
3 files changed, 4 insertions, 19 deletions
diff --git a/emulators/gxemul/Makefile b/emulators/gxemul/Makefile
index 51ab16e0c9bc..48043217217d 100644
--- a/emulators/gxemul/Makefile
+++ b/emulators/gxemul/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= gxemul
-PORTVERSION= 0.4.2
-PORTREVISION= 1
+PORTVERSION= 0.4.3
CATEGORIES= emulators
MASTER_SITES= http://gavare.se/gxemul/src/ \
${MASTER_SITE_LOCAL}
diff --git a/emulators/gxemul/distinfo b/emulators/gxemul/distinfo
index c83e3bafefea..0aaa93194cc6 100644
--- a/emulators/gxemul/distinfo
+++ b/emulators/gxemul/distinfo
@@ -1,3 +1,3 @@
-MD5 (gxemul-0.4.2.tar.gz) = 036021e777b9c5a646ab7e03b53a708a
-SHA256 (gxemul-0.4.2.tar.gz) = 8b4655ebb9e1bbd3f873a8f1c6767a3442340c7e20a996fe9e6609ea5f09446a
-SIZE (gxemul-0.4.2.tar.gz) = 1909826
+MD5 (gxemul-0.4.3.tar.gz) = 4d719fde71784ead1c85c78b2a9c37a8
+SHA256 (gxemul-0.4.3.tar.gz) = 589e2577e5f4c93c2a08775c03800f09d59a3bf82187332e03353355006e8ad2
+SIZE (gxemul-0.4.3.tar.gz) = 2026817
diff --git a/emulators/gxemul/files/patch-src-machines-machine_evbmips.c b/emulators/gxemul/files/patch-src-machines-machine_evbmips.c
deleted file mode 100644
index 6fc61effca98..000000000000
--- a/emulators/gxemul/files/patch-src-machines-machine_evbmips.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/machines/machine_evbmips.c.orig Mon Jul 17 17:33:05 2006
-+++ src/machines/machine_evbmips.c Mon Jul 17 17:35:04 2006
-@@ -176,6 +176,11 @@
- snprintf(tmps, sizeof(tmps), "0x%08x", machine->physical_ram_in_mb<<20);
- add_environment_string_dual(cpu, &env, &tmpptr, "memsize", tmps);
-
-+#if 1 /* XXX: FreeBSD wants this to figure out the clock speed. */
-+ snprintf(tmps, sizeof(tmps), "%d", machine->emulated_hz/1000);
-+ add_environment_string_dual(cpu, &env, &tmpptr, "khz", tmps);
-+#endif
-+
- add_environment_string_dual(cpu, &env, &tmpptr, "yamonrev", "02.06");
-
- /* End of env: */