pkgsrc-Changes archive

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

CVS commit: pkgsrc/games/eureka



Module Name:    pkgsrc
Committed By:   micha
Date:           Fri Mar 14 15:36:44 UTC 2025

Modified Files:
        pkgsrc/games/eureka: Makefile options.mk

Log Message:
games/eureka: Fix check of FLTK option

Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/games/eureka/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/games/eureka/options.mk

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

Modified files:

Index: pkgsrc/games/eureka/Makefile
diff -u pkgsrc/games/eureka/Makefile:1.15 pkgsrc/games/eureka/Makefile:1.16
--- pkgsrc/games/eureka/Makefile:1.15   Thu Feb 13 06:36:46 2025
+++ pkgsrc/games/eureka/Makefile        Fri Mar 14 15:36:44 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.15 2025/02/13 06:36:46 dholland Exp $
+# $NetBSD: Makefile,v 1.16 2025/03/14 15:36:44 micha Exp $
 
 DISTNAME=      eureka-2.0.2
-PKGREVISION=   2
+PKGREVISION=   3
 CATEGORIES=    games
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=ioan-chera/}
 GITHUB_PROJECT=        eureka-editor

Index: pkgsrc/games/eureka/options.mk
diff -u pkgsrc/games/eureka/options.mk:1.6 pkgsrc/games/eureka/options.mk:1.7
--- pkgsrc/games/eureka/options.mk:1.6  Fri Jan 31 15:54:44 2025
+++ pkgsrc/games/eureka/options.mk      Fri Mar 14 15:36:44 2025
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.6 2025/01/31 15:54:44 micha Exp $
+# $NetBSD: options.mk,v 1.7 2025/03/14 15:36:44 micha Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.eureka
 PKG_SUPPORTED_OPTIONS= opengl xdg-utils
@@ -12,7 +12,7 @@ PKG_SUGGESTED_OPTIONS=        opengl xdg-utils
 # If FLTK is compiled without opengl option, it is always disabled here too.
 # If FLTK is compiled with opengl option, disabling it here allows to force
 # usage of the software renderer (recommended without hardware acceleration).
-.if empty(PKG_OPTIONS.fltk13:Mopengl) || empty(PKG_OPTIONS:Mopengl)
+.if empty(PKG_OPTIONS.fltk:Mopengl) || empty(PKG_OPTIONS:Mopengl)
 CMAKE_CONFIGURE_ARGS+= -DENABLE_OPENGL=off
 .endif
 



Home | Main Index | Thread Index | Old Index