gentoo-ebuilds/media-plugins/frei0r-plugins/files/frei0r-plugins-2.3.3-cmake4.patch
Alfred Wingate 3e74e17dbe
media-plugins/frei0r-plugins: add 2.3.3
Long overdue bump after they moved their releases to GitHub.

Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/42011
Closes: https://github.com/gentoo/gentoo/pull/42011
Signed-off-by: Sam James <sam@gentoo.org>
2025-05-11 01:28:29 +01:00

21 lines
718 B
Diff

https://bugs.gentoo.org/951350
https://github.com/dyne/frei0r/commit/31efba74b26c161125c6c41d381dcf3f6207a728
https://github.com/dyne/frei0r/pull/205
From 31efba74b26c161125c6c41d381dcf3f6207a728 Mon Sep 17 00:00:00 2001
From: Dan Dennedy <dan@dennedy.org>
Date: Wed, 2 Apr 2025 14:04:17 -0700
Subject: [PATCH] Fix configuring with CMake version 4
See https://cmake.org/cmake/help/latest/release/4.0.html#deprecated-and-
removed-features
> Compatibility with versions of CMake older than 3.5 has been removed.
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION 3.1)
+cmake_minimum_required (VERSION 3.5)
list (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)