summaryrefslogtreecommitdiff
path: root/kde-frameworks/kcrash
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 20:16:17 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 20:16:17 +0100
commit668a62e5396f11eda19768df138cd2ce6db3c693 (patch)
treea2dd1efd90110b5305fce22f66360b7791bb5da0 /kde-frameworks/kcrash
parentab07dafa21143530c76caeaa6ee0b8100f1f8403 (diff)
downloadkde-668a62e5396f11eda19768df138cd2ce6db3c693.tar.gz
kde-668a62e5396f11eda19768df138cd2ce6db3c693.tar.bz2
kde-668a62e5396f11eda19768df138cd2ce6db3c693.zip
kde-frameworks/kcrash: 6.9.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kcrash')
-rw-r--r--kde-frameworks/kcrash/Manifest1
-rw-r--r--kde-frameworks/kcrash/kcrash-6.9.0.ebuild36
2 files changed, 37 insertions, 0 deletions
diff --git a/kde-frameworks/kcrash/Manifest b/kde-frameworks/kcrash/Manifest
new file mode 100644
index 00000000000..d8c3d5f81f6
--- /dev/null
+++ b/kde-frameworks/kcrash/Manifest
@@ -0,0 +1 @@
+DIST kcrash-6.9.0.tar.xz 27984 BLAKE2B dc1523e7e2bf15794c7737f62970602e9afdf04666f758d201520ccae0bbcedb07248792a15067a2a499d7d94fd360476834b28fe3fae0142f016c40abe4cb43 SHA512 beda3c9890a6e3526e8f051039982862c841824ce22115405e9d3454e0056b7c93f2817d7e72517ef987b20d3d635167be3313072a419de062fe46ff659e76c6
diff --git a/kde-frameworks/kcrash/kcrash-6.9.0.ebuild b/kde-frameworks/kcrash/kcrash-6.9.0.ebuild
new file mode 100644
index 00000000000..7b1c11008db
--- /dev/null
+++ b/kde-frameworks/kcrash/kcrash-6.9.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_TEST="forceoptional"
+PVCUT=$(ver_cut 1-2)
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org
+
+DESCRIPTION="Framework for intercepting and handling application crashes"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="X"
+
+# requires running Plasma environment
+RESTRICT="test"
+
+RDEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[gui,opengl]
+ =kde-frameworks/kcoreaddons-${PVCUT}*:6
+ X? ( x11-libs/libX11 )
+"
+DEPEND="${RDEPEND}
+ X? ( x11-base/xorg-proto )
+ test? ( >=dev-qt/qtbase-${QTMIN}:6[widgets] )
+"
+BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
+
+src_configure() {
+ local mycmakeargs=(
+ -DWITH_X11=$(usex X)
+ )
+ ecm_src_configure
+}