pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/emulators/openmsx Support building on ARM.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3a967cf0b3a6
branches:  trunk
changeset: 650342:3a967cf0b3a6
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Tue Apr 21 17:07:29 2015 +0000

description:
Support building on ARM.

diffstat:

 emulators/openmsx/distinfo                         |   4 ++--
 emulators/openmsx/patches/patch-build_detectsys.py |  12 +++++++++++-
 2 files changed, 13 insertions(+), 3 deletions(-)

diffs (39 lines):

diff -r d988365dcf82 -r 3a967cf0b3a6 emulators/openmsx/distinfo
--- a/emulators/openmsx/distinfo        Tue Apr 21 17:04:25 2015 +0000
+++ b/emulators/openmsx/distinfo        Tue Apr 21 17:07:29 2015 +0000
@@ -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 -r d988365dcf82 -r 3a967cf0b3a6 emulators/openmsx/patches/patch-build_detectsys.py
--- a/emulators/openmsx/patches/patch-build_detectsys.py        Tue Apr 21 17:04:25 2015 +0000
+++ b/emulators/openmsx/patches/patch-build_detectsys.py        Tue Apr 21 17:07:29 2015 +0000
@@ -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.
        '''



Home | Main Index | Thread Index | Old Index