pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
games/eureka: Update to 2.0.2
Module Name: pkgsrc-wip
Committed By: Michael Baeuerle <micha%NetBSD.org@localhost>
Pushed By: micha
Date: Fri Jul 12 13:24:46 2024 +0200
Changeset: 6166a6486fc5c8864fae20e2788c3ac062c097cd
Modified Files:
eureka-devel/COMMIT_MSG
eureka-devel/Makefile
eureka-devel/distinfo
eureka-devel/options.mk
eureka-devel/patches/patch-src_CMakeLists.txt
Log Message:
games/eureka: Update to 2.0.2
Disable downloads for Apple platforms.
(Since version 2.0.1)
* Fixed a crash happening when deleting all things from the map.
* Fixed a crash happening when deleting a group of linedefs.
* Fixed a bug where the linedef splitting hint wouldn't show up when
in FREE grid mode (introduced by 2.0.0).
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=6166a6486fc5c8864fae20e2788c3ac062c097cd
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
eureka-devel/COMMIT_MSG | 23 +++++++----------------
eureka-devel/Makefile | 2 +-
eureka-devel/distinfo | 8 ++++----
eureka-devel/options.mk | 2 +-
eureka-devel/patches/patch-src_CMakeLists.txt | 12 +++++++++++-
5 files changed, 24 insertions(+), 23 deletions(-)
diffs:
diff --git a/eureka-devel/COMMIT_MSG b/eureka-devel/COMMIT_MSG
index 1b867fe5fe..7f46cc08f5 100644
--- a/eureka-devel/COMMIT_MSG
+++ b/eureka-devel/COMMIT_MSG
@@ -1,21 +1,12 @@
-games/eureka: Update to 2.0.1
+games/eureka: Update to 2.0.2
-# CHANGES IN Eureka 2.0.1
+# CHANGES IN Eureka 2.0.2
-(Since version 2.0.0)
-
-## View
-
-* Corrected the copyright year for my contributions.
+(Since version 2.0.1)
## Bug fixes
-* Fixed a crash happening when selecting neighbor sectors while no-sided
- linedefs are in the map.
-* Fixed a regression from 1.27b where selected 1-sided lines in 3D view
- wouldn't change texture unless the side panel texture thumbnail also
- gets selected.
-
-## Development
-
-* Fixed some compilation errors on Linux.
+* Fixed a crash happening when deleting all things from the map.
+* Fixed a crash happening when deleting a group of linedefs.
+* Fixed a bug where the linedef splitting hint wouldn't show up when
+ in FREE grid mode (introduced by 2.0.0).
diff --git a/eureka-devel/Makefile b/eureka-devel/Makefile
index fd7d9aca32..39d70893e5 100644
--- a/eureka-devel/Makefile
+++ b/eureka-devel/Makefile
@@ -1,6 +1,6 @@
# $NetBSD$
-DISTNAME= eureka-2.0.1
+DISTNAME= eureka-2.0.2
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_GITHUB:=ioan-chera/}
GITHUB_PROJECT= eureka-editor
diff --git a/eureka-devel/distinfo b/eureka-devel/distinfo
index 0cd42e937f..519c999667 100644
--- a/eureka-devel/distinfo
+++ b/eureka-devel/distinfo
@@ -1,10 +1,10 @@
$NetBSD$
-BLAKE2s (eureka-2.0.1.tar.gz) = 7c566115453056d3efe853d88269d95dbdeac57248ee48b111d02b3ae9bd309c
-SHA512 (eureka-2.0.1.tar.gz) = 18f6ffd9e28a9679265670f1677564eb5319c2011a038cc9516f1768456028e58e50c4d5c70b15f0d0f25fdafed8762efde4b589a095418ae1ca3103f869d486
-Size (eureka-2.0.1.tar.gz) = 2387560 bytes
+BLAKE2s (eureka-2.0.2.tar.gz) = b29ad046135dc58ef7d874448373832e9f8d738b1ef2ac5dc1e8327cfaa79033
+SHA512 (eureka-2.0.2.tar.gz) = dc45d5a94bca0bc6c892ea90473d6c66e67326cf49797493b41ce5524a38196a31639db3579d1b4138b8dfd1570057a237817c668e47007a72a5b1f2f8991257
+Size (eureka-2.0.2.tar.gz) = 2388549 bytes
SHA1 (patch-CMakeLists.txt) = 0eda67e8a101d9299bc933f2f403b4e8b940a689
-SHA1 (patch-src_CMakeLists.txt) = 7291065f665f00e6d9eda2cbdf56769360b40691
+SHA1 (patch-src_CMakeLists.txt) = ba927270b9d63035b84134c683c74f89d5362124
SHA1 (patch-src_m__files.cc) = a547b17d578ada79e20d006f786b1a594ef34700
SHA1 (patch-src_m__strings.h) = e8b793e0a8943f3371792e07ac552e8e22e2c248
SHA1 (patch-src_main.cc) = fe5d1f35637010de7e56e7384a29045f64e9667a
diff --git a/eureka-devel/options.mk b/eureka-devel/options.mk
index 3a0a2979f8..66b8980c24 100644
--- a/eureka-devel/options.mk
+++ b/eureka-devel/options.mk
@@ -10,7 +10,7 @@ PKG_SUGGESTED_OPTIONS= opengl xdg-utils
# Add missing include path for FLTK (eureka does not use fltk-config)
.if empty(PKG_OPTIONS.fltk14-devel:Mcairo)
-CXXFLAGS=-I"${PREFIX}/include/cairo"
+CXXFLAGS= -I"${PREFIX}/include/cairo"
.endif
# opengl: Use OpenGL for rendering
diff --git a/eureka-devel/patches/patch-src_CMakeLists.txt b/eureka-devel/patches/patch-src_CMakeLists.txt
index 2d113a3479..bdbdbd4788 100644
--- a/eureka-devel/patches/patch-src_CMakeLists.txt
+++ b/eureka-devel/patches/patch-src_CMakeLists.txt
@@ -1,11 +1,21 @@
$NetBSD$
+Disable downloads for Apple platforms.
Remove" -Werror".
Add "-Wno-cast-function-type".
Remove duplicated flags (GCC fails because they are inserted with quotes).
---- src/CMakeLists.txt.orig 2024-07-04 06:00:57.000000000 +0000
+--- src/CMakeLists.txt.orig 2024-07-09 18:15:50.000000000 +0000
+++ src/CMakeLists.txt
+@@ -237,7 +237,7 @@ else()
+ target_compile_definitions(eurekasrc PUBLIC NO_OPENGL)
+ endif()
+
+-if(APPLE OR WIN32)
++if(WIN32)
+ message(STATUS "Using local FLTK for portability.")
+
+ set(LOCAL_FLTK_VERSION "1.3.8")
@@ -359,7 +359,7 @@ if(MSVC)
endif()
Home |
Main Index |
Thread Index |
Old Index