aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/gwenview-kimageannotator.patch
blob: 92b994a0b50ed38324fec89cfaf74a332f566b28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Submitted By:            Douglas R. Reno <renodr at linuxfromscratch dot org>
Date:                    2024-02-26
Initial Package Version: 23.08.5
Upstream Status:         Rejected (Qt6 port is primary now)
Origin:                  Self
Description:             Fixes building Gwenview with recent kImageAnnotator
                         and kColorPicker versions by adjusting their paths
                         and FOUND variables so that the correct libraries are
                         selected.

--- gwenview-23.08.5.orig/CMakeLists.txt	2024-02-26 15:02:29.702754535 -0600
+++ gwenview-23.08.5/CMakeLists.txt	2024-02-26 15:09:48.012866877 -0600
@@ -166,11 +166,11 @@ if(NOT WITHOUT_X11)
 endif()
 
 if (QT_MAJOR_VERSION STREQUAL "5")
-    find_package(kImageAnnotator)
-    set_package_properties(kImageAnnotator PROPERTIES URL "https://github.com/ksnip/kImageAnnotator" DESCRIPTION "The kImageAnnotator library provides tools to annotate" TYPE REQUIRED)
-    if(kImageAnnotator_FOUND)
-        set(KIMAGEANNOTATOR_FOUND 1)
-        find_package(kColorPicker REQUIRED)
+    find_package(kImageAnnotator-Qt5)
+    set_package_properties(kImageAnnotator-Qt5 PROPERTIES URL "https://github.com/ksnip/kImageAnnotator" DESCRIPTION "The kImageAnnotator library provides tools to annotate" TYPE REQUIRED)
+    if(kImageAnnotator-Qt5_FOUND)
+        set(kImageAnnotator_FOUND 1)
+        find_package(kColorPicker-Qt5 REQUIRED)
         if(NOT kImageAnnotator_VERSION VERSION_LESS 0.5.0)
             set(KIMAGEANNOTATOR_CAN_LOAD_TRANSLATIONS 1)
         endif()