pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/freeglut



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed Aug 13 06:05:51 UTC 2025

Modified Files:
        pkgsrc/graphics/freeglut: Makefile PLIST distinfo
Added Files:
        pkgsrc/graphics/freeglut/patches: patch-CMakeLists.txt
Removed Files:
        pkgsrc/graphics/freeglut/patches: patch-src_x11_fg__joystick__x11.c

Log Message:
freeglut: update to 3.6.0.

2024-06-08  John Tsiombikas <nuclear%member.fsf.org@localhost>

        freeglut 3.6 changes:

        * New platforms: Nintendo Gamecube and Nintendo Wii.
        * Minimum cmake version raised to 3.1.
        * Make XInput an optional dependency.
        * Fix incorrect modifier bit mapped to GLUT_ACTIVE_SUPER on X11.
        * Add support for ARM64 MSVC targets.
        * Fix for unicode builds on windows.
        * Fix build on some versions of MinGW carrying an incorrect winuser.h.
        * Fix menu-related memory leak when an error occurs.
        * Various build improvements & fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 pkgsrc/graphics/freeglut/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/graphics/freeglut/PLIST
cvs rdiff -u -r1.21 -r1.22 pkgsrc/graphics/freeglut/distinfo
cvs rdiff -u -r0 -r1.5 pkgsrc/graphics/freeglut/patches/patch-CMakeLists.txt
cvs rdiff -u -r1.6 -r0 \
    pkgsrc/graphics/freeglut/patches/patch-src_x11_fg__joystick__x11.c

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

Modified files:

Index: pkgsrc/graphics/freeglut/Makefile
diff -u pkgsrc/graphics/freeglut/Makefile:1.37 pkgsrc/graphics/freeglut/Makefile:1.38
--- pkgsrc/graphics/freeglut/Makefile:1.37      Sun Aug 25 06:18:50 2024
+++ pkgsrc/graphics/freeglut/Makefile   Wed Aug 13 06:05:51 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.37 2024/08/25 06:18:50 wiz Exp $
+# $NetBSD: Makefile,v 1.38 2025/08/13 06:05:51 wiz Exp $
 
-DISTNAME=      freeglut-3.4.0
-PKGREVISION=   1
+DISTNAME=      freeglut-3.6.0
 CATEGORIES=    graphics
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=freeglut/}
 

Index: pkgsrc/graphics/freeglut/PLIST
diff -u pkgsrc/graphics/freeglut/PLIST:1.11 pkgsrc/graphics/freeglut/PLIST:1.12
--- pkgsrc/graphics/freeglut/PLIST:1.11 Wed May  3 15:20:41 2023
+++ pkgsrc/graphics/freeglut/PLIST      Wed Aug 13 06:05:51 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2023/05/03 15:20:41 triaxx Exp $
+@comment $NetBSD: PLIST,v 1.12 2025/08/13 06:05:51 wiz Exp $
 include/GL/freeglut.h
 include/GL/freeglut_ext.h
 include/GL/freeglut_std.h
@@ -11,6 +11,6 @@ lib/cmake/FreeGLUT/FreeGLUTTargets.cmake
 lib/libglut.a
 lib/libglut.so
 lib/libglut.so.3
-lib/libglut.so.3.12.0
+lib/libglut.so.3.12.1
 lib/pkgconfig/freeglut.pc
 lib/pkgconfig/glut.pc

Index: pkgsrc/graphics/freeglut/distinfo
diff -u pkgsrc/graphics/freeglut/distinfo:1.21 pkgsrc/graphics/freeglut/distinfo:1.22
--- pkgsrc/graphics/freeglut/distinfo:1.21      Mon Apr 28 17:41:46 2025
+++ pkgsrc/graphics/freeglut/distinfo   Wed Aug 13 06:05:51 2025
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.21 2025/04/28 17:41:46 tnn Exp $
+$NetBSD: distinfo,v 1.22 2025/08/13 06:05:51 wiz Exp $
 
-BLAKE2s (freeglut-3.4.0.tar.gz) = 710aa8aa2705736bfd941e0b94c4503235f82d1b687a40d891fd0c727b4b5fb7
-SHA512 (freeglut-3.4.0.tar.gz) = 4bb6d6c086bac7a9c0ec78062dce58987555785abe6375f462ee249f65210a964a28fb10ba7ee8a42d7fafb00eb8d196eb403d65d255f02f88467369c187228b
-Size (freeglut-3.4.0.tar.gz) = 413389 bytes
+BLAKE2s (freeglut-3.6.0.tar.gz) = fda9dca50785a350f31526ce9cb01b35ef049c865d75a437027277abc708b6cb
+SHA512 (freeglut-3.6.0.tar.gz) = ceb5dd9ea86e915acb177e405e79b92f77cf3213ba21fe200491d0b1150dd9c81835b71cb8a928bd514eb719626ff802250429df2f6dfa33f8e181c3f74b2dd0
+Size (freeglut-3.6.0.tar.gz) = 429619 bytes
+SHA1 (patch-CMakeLists.txt) = a990fc1eb0d552207106608bebffb52713622718
 SHA1 (patch-src_egl_fg__init__egl.h) = ddd37492e223d6dbd5e01d9696a3eb06ae9f468b
-SHA1 (patch-src_x11_fg__joystick__x11.c) = ac82cffd2a9cd6b801cbe1519ee84ef8738f7f82

Added files:

Index: pkgsrc/graphics/freeglut/patches/patch-CMakeLists.txt
diff -u /dev/null pkgsrc/graphics/freeglut/patches/patch-CMakeLists.txt:1.5
--- /dev/null   Wed Aug 13 06:05:51 2025
+++ pkgsrc/graphics/freeglut/patches/patch-CMakeLists.txt       Wed Aug 13 06:05:51 2025
@@ -0,0 +1,12 @@
+$NetBSD: patch-CMakeLists.txt,v 1.5 2025/08/13 06:05:51 wiz Exp $
+
+https://github.com/freeglut/freeglut/commit/2294389397912c9a6505a88221abb7dca0a4fb79
+
+--- CMakeLists.txt.orig        2025-08-13 06:04:12.320685103 +0000
++++ CMakeLists.txt
+@@ -1,4 +1,4 @@
+-CMAKE_MINIMUM_REQUIRED(VERSION 3.1 FATAL_ERROR)
++CMAKE_MINIMUM_REQUIRED(VERSION 3.1...3.5 FATAL_ERROR)
+ PROJECT(freeglut LANGUAGES C)
+ 
+ if (POLICY CMP0072)



Home | Main Index | Thread Index | Old Index