summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2015-04-21 17:07:29 +0000
committerjoerg <joerg@pkgsrc.org>2015-04-21 17:07:29 +0000
commit9397f2270a9715e7dd9a28e9e507ca648ebda2f2 (patch)
treecf7cb77d7bf3e94c298320e9af0b1406fa3db32e /emulators
parent30f4af55ba80179664f244718f98364066e84b03 (diff)
downloadpkgsrc-9397f2270a9715e7dd9a28e9e507ca648ebda2f2.tar.gz
Support building on ARM.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/openmsx/distinfo4
-rw-r--r--emulators/openmsx/patches/patch-build_detectsys.py12
2 files changed, 13 insertions, 3 deletions
diff --git a/emulators/openmsx/distinfo b/emulators/openmsx/distinfo
index e41f6c67cb7..b0f70759b8a 100644
--- a/emulators/openmsx/distinfo
+++ b/emulators/openmsx/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.12 2013/09/20 23:04:59 joerg Exp $
+$NetBSD: distinfo,v 1.13 2015/04/21 17:07:29 joerg Exp $
SHA1 (openmsx-0.9.0.tar.gz) = a8e396d5feb60bd7df8fbef0b5e6d41e5b0e5826
RMD160 (openmsx-0.9.0.tar.gz) = 9b7f01ba3dcedf5ebba920983938a25db561c26d
Size (openmsx-0.9.0.tar.gz) = 2963005 bytes
-SHA1 (patch-build_detectsys.py) = 9d88783a8c00a074e5dc149fce2dbeb20d12cb9e
+SHA1 (patch-build_detectsys.py) = 3c67ce4978c5fe33eb63495ab7d8af42de49420f
SHA1 (patch-build_libraries.py) = 2981999e58e12986fd8b45df656cc898094ffe9b
SHA1 (patch-build_probe.py) = c083d5950dae95f12d4c0b5c7d1a2cac89ad786e
SHA1 (patch-build_version.py) = 2b3e53a0499befb8c18760e80fdbc279cc6aefc8
diff --git a/emulators/openmsx/patches/patch-build_detectsys.py b/emulators/openmsx/patches/patch-build_detectsys.py
index ae99d9805f3..61e012c8a41 100644
--- a/emulators/openmsx/patches/patch-build_detectsys.py
+++ b/emulators/openmsx/patches/patch-build_detectsys.py
@@ -1,9 +1,19 @@
-$NetBSD: patch-build_detectsys.py,v 1.1 2012/08/26 09:07:23 marino Exp $
+$NetBSD: patch-build_detectsys.py,v 1.2 2015/04/21 17:07:29 joerg Exp $
Set os to "dragonfly" when built on "DragonFly"
+Support evbarm and similar variants.
--- build/detectsys.py.orig 2012-08-12 12:29:37.000000000 +0000
+++ build/detectsys.py
+@@ -23,7 +23,7 @@ def detectCPU():
+ return 'x86'
+ elif cpu.startswith('ppc') or cpu.endswith('ppc') or cpu.startswith('power'):
+ return 'ppc64' if cpu.endswith('64') else 'ppc'
+- elif cpu.startswith('arm'):
++ elif cpu.startswith('arm') or cpu.endswith('arm'):
+ return 'arm'
+ elif cpu.startswith('mips'):
+ return 'mipsel' if cpu.endswith('el') else 'mips'
@@ -58,7 +58,7 @@ def detectOS():
Raises ValueError if no known OS is detected.
'''