pkgsrc-Changes archive

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

CVS commit: pkgsrc/games/openjk



Module Name:    pkgsrc
Committed By:   nia
Date:           Sat Sep 25 05:40:00 UTC 2021

Modified Files:
        pkgsrc/games/openjk: distinfo
Added Files:
        pkgsrc/games/openjk/patches: patch-CMakeLists.txt

Log Message:
openjk: Cope with NetBSD calling 32-bit arm earm.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/openjk/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/games/openjk/patches/patch-CMakeLists.txt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/openjk/distinfo
diff -u pkgsrc/games/openjk/distinfo:1.1 pkgsrc/games/openjk/distinfo:1.2
--- pkgsrc/games/openjk/distinfo:1.1    Sun Nov  3 12:12:56 2019
+++ pkgsrc/games/openjk/distinfo        Sat Sep 25 05:40:00 2021
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.1 2019/11/03 12:12:56 nia Exp $
+$NetBSD: distinfo,v 1.2 2021/09/25 05:40:00 nia Exp $
 
 SHA1 (openjk-0.0.0.20191030-4881be7478a833791d127fce7563de252d2246f7.tar.gz) = 353e4014b3f1bf87cd0e50b995a40cc1eac220ff
 RMD160 (openjk-0.0.0.20191030-4881be7478a833791d127fce7563de252d2246f7.tar.gz) = 56fe62caa27f4d9023701d39d6884fb4e1bc55f2
 SHA512 (openjk-0.0.0.20191030-4881be7478a833791d127fce7563de252d2246f7.tar.gz) = 
2b98203573ec20acc3154acf701dcb2c378fa3cd93bb36e58a4ed89bbab15e0119fc4e8e2fb808a213e65ffb8ce12c5038763e5ef2285bad064e82599603e562
 Size (openjk-0.0.0.20191030-4881be7478a833791d127fce7563de252d2246f7.tar.gz) = 13394830 bytes
+SHA1 (patch-CMakeLists.txt) = a0f41a5322cb8cdaaa9b2eb966b1f897115dd81d
 SHA1 (patch-CMakeModules_InstallConfig.cmake) = e7231d65a1504c1f87eebe4abfe3188a551f306b

Added files:

Index: pkgsrc/games/openjk/patches/patch-CMakeLists.txt
diff -u /dev/null pkgsrc/games/openjk/patches/patch-CMakeLists.txt:1.1
--- /dev/null   Sat Sep 25 05:40:01 2021
+++ pkgsrc/games/openjk/patches/patch-CMakeLists.txt    Sat Sep 25 05:40:00 2021
@@ -0,0 +1,15 @@
+$NetBSD: patch-CMakeLists.txt,v 1.1 2021/09/25 05:40:00 nia Exp $
+
+Cope with NetBSD calling 32-bit ARM "earm".
+
+--- CMakeLists.txt.orig        2019-10-30 05:48:12.000000000 +0000
++++ CMakeLists.txt
+@@ -114,7 +114,7 @@ if(WIN32)
+       endif()
+ else()
+       set(X86 OFF)
+-      if(CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
++      if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm|earm)")
+               set(Architecture "arm")
+       elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^i.86$")
+               set(X86 ON)



Home | Main Index | Thread Index | Old Index