summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-10-05 23:37:58 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-10-05 23:48:20 +0200
commit14fbc969e120b3540287765d5f229f909ae8e00c (patch)
treef3753cdc21cae436baed4e22fc9f5501b4a6d21b
parentd5ead90c8757844bdbacafbb9fd5fd10bf466451 (diff)
downloadkde-14fbc969e120b3540287765d5f229f909ae8e00c.tar.gz
kde-14fbc969e120b3540287765d5f229f909ae8e00c.tar.bz2
kde-14fbc969e120b3540287765d5f229f909ae8e00c.zip
kde-frameworks/kguiaddons: 6.19.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/kguiaddons/Manifest1
-rw-r--r--kde-frameworks/kguiaddons/kguiaddons-6.19.0.ebuild59
2 files changed, 60 insertions, 0 deletions
diff --git a/kde-frameworks/kguiaddons/Manifest b/kde-frameworks/kguiaddons/Manifest
new file mode 100644
index 00000000000..c52d0345503
--- /dev/null
+++ b/kde-frameworks/kguiaddons/Manifest
@@ -0,0 +1 @@
+DIST kguiaddons-6.19.0.tar.xz 90564 BLAKE2B 1b7351846b26be0d1ed23c0f3f1176962146d2932c439aeaaff1590a234b88ddd968f91afc86174c02f9b05d36f1bb1356d0fddb6b6de51961b89d98eb0a307e SHA512 ba50ab2743002c2c73ce273f23a60fec3bb7ec230bddc575a3e55cb5562d5e9f11fd10d9bb031d7ceea8233a823d9ab8f4f386bd26a9369ad10547df309cc63c
diff --git a/kde-frameworks/kguiaddons/kguiaddons-6.19.0.ebuild b/kde-frameworks/kguiaddons/kguiaddons-6.19.0.ebuild
new file mode 100644
index 00000000000..88f11ecb184
--- /dev/null
+++ b/kde-frameworks/kguiaddons/kguiaddons-6.19.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_PYTHON_BINDINGS="off"
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org xdg
+
+DESCRIPTION="Framework providing assorted high-level user interface components"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="dbus wayland X"
+
+# slot op: includes qpa/qplatformnativeinterface.h
+COMMON_DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[dbus?,gui]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ wayland? (
+ dev-libs/wayland
+ >=dev-qt/qtbase-${QTMIN}:6=[wayland]
+ )
+ X? (
+ >=dev-qt/qtbase-${QTMIN}:6[X]
+ x11-libs/libX11
+ )
+"
+DEPEND="${COMMON_DEPEND}
+ wayland? (
+ >=dev-libs/plasma-wayland-protocols-1.15.0
+ >=dev-libs/wayland-protocols-1.39
+ )
+ X? (
+ x11-base/xorg-proto
+ x11-libs/libxcb
+ )
+"
+RDEPEND="${COMMON_DEPEND}
+ !<kde-frameworks/kguiaddons-5.116.0-r2:5[-kf6compat(-)]
+"
+RDEPEND+=" wayland? ( || ( >=dev-qt/qtbase-6.10:6[wayland] <dev-qt/qtwayland-6.10:6 ) )"
+BDEPEND="
+ wayland? (
+ >=dev-qt/qtbase-${QTMIN}:6[wayland]
+ dev-util/wayland-scanner
+ )
+"
+BDEPEND+=" wayland? ( || ( >=dev-qt/qtbase-6.10:6[wayland] <dev-qt/qtwayland-6.10:6 ) )"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_GEO_SCHEME_HANDLER=ON
+ -DUSE_DBUS=$(usex dbus)
+ -DWITH_WAYLAND=$(usex wayland)
+ -DWITH_X11=$(usex X)
+ )
+ ecm_src_configure
+}