summaryrefslogtreecommitdiff
path: root/kde-frameworks/kcrash/kcrash-6.0.0.ebuild
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-02-21 21:18:12 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-02-22 10:45:24 +0100
commit9047b2d9e2349e33b14e80a236c6ef8afab948b7 (patch)
treee3f30da7d2816e44bdf952b1513066724f8776a2 /kde-frameworks/kcrash/kcrash-6.0.0.ebuild
parent49b9e64003b906455bc4e83a9be08aed16c8d60f (diff)
downloadkde-9047b2d9e2349e33b14e80a236c6ef8afab948b7.tar.gz
kde-9047b2d9e2349e33b14e80a236c6ef8afab948b7.tar.bz2
kde-9047b2d9e2349e33b14e80a236c6ef8afab948b7.zip
kde-frameworks/kcrash: 6.0.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kcrash/kcrash-6.0.0.ebuild')
-rw-r--r--kde-frameworks/kcrash/kcrash-6.0.0.ebuild36
1 files changed, 36 insertions, 0 deletions
diff --git a/kde-frameworks/kcrash/kcrash-6.0.0.ebuild b/kde-frameworks/kcrash/kcrash-6.0.0.ebuild
new file mode 100644
index 00000000000..66b242efadc
--- /dev/null
+++ b/kde-frameworks/kcrash/kcrash-6.0.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.6.2
+inherit ecm frameworks.kde.org
+
+DESCRIPTION="Framework for intercepting and handling application crashes"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64"
+IUSE="X"
+
+# requires running Plasma environment
+RESTRICT="test"
+
+RDEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[gui]
+ =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
+}