summaryrefslogtreecommitdiff
path: root/kde-apps/kio-extras/files/kio-extras-24.01.85-activities-optional.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-12-23 19:46:42 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-12-23 19:46:42 +0000
commit60360664173979c416f4acb44f2fb2368922742d (patch)
tree8776499f297aaa074d48bbb33c8c0c977aeb3b62 /kde-apps/kio-extras/files/kio-extras-24.01.85-activities-optional.patch
parented8299fef4175104e66b734cfc0482770614f398 (diff)
gentoo auto-resync : 23:12:2023 - 19:46:41
Diffstat (limited to 'kde-apps/kio-extras/files/kio-extras-24.01.85-activities-optional.patch')
-rw-r--r--kde-apps/kio-extras/files/kio-extras-24.01.85-activities-optional.patch48
1 files changed, 48 insertions, 0 deletions
diff --git a/kde-apps/kio-extras/files/kio-extras-24.01.85-activities-optional.patch b/kde-apps/kio-extras/files/kio-extras-24.01.85-activities-optional.patch
new file mode 100644
index 000000000000..73ce35a37188
--- /dev/null
+++ b/kde-apps/kio-extras/files/kio-extras-24.01.85-activities-optional.patch
@@ -0,0 +1,48 @@
+https://invent.kde.org/network/kio-extras/-/commit/d74e09cace0cd533648b37e81c9d07f9a7c82043
+
+From d74e09cace0cd533648b37e81c9d07f9a7c82043 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner <asturm@gentoo.org>
+Date: Sat, 16 Dec 2023 21:25:17 +0100
+Subject: [PATCH] Add BUILD_ACTIVITIES option (default=ON)
+
+Maybe we can keep this optional while the future of activities is still
+not entirely clear.
+
+Follow-up to f220e0ebf670e64f3e7dc4d8a75c3b5dd00bfe2c
+
+Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
+---
+ CMakeLists.txt | 11 +++++++----
+ 1 file changed, 7 insertions(+), 4 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 0e085b18c..6c5c43da9 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -68,9 +68,12 @@ file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h)
+ kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
+
+ if (NOT WIN32)
+- find_package(PlasmaActivities REQUIRED)
+- find_package(Qt6Sql REQUIRED)
+- find_package(PlasmaActivitiesStats REQUIRED)
++ option(BUILD_ACTIVITIES "Build recentlyused:/, activities:/ KIO workers and fileitem plugin." ON)
++ if(BUILD_ACTIVITIES)
++ find_package(Qt6Sql REQUIRED)
++ find_package(PlasmaActivities REQUIRED)
++ find_package(PlasmaActivitiesStats REQUIRED)
++ endif()
+ endif()
+
+ find_package(Phonon4Qt6 4.6.60 NO_MODULE)
+@@ -164,7 +167,7 @@ ecm_set_disabled_deprecation_versions(
+ add_subdirectory(doc)
+ add_subdirectory(kcms)
+
+-if(NOT WIN32)
++if(BUILD_ACTIVITIES)
+ add_subdirectory( activities )
+ add_subdirectory( recentlyused )
+ endif()
+--
+GitLab