summaryrefslogtreecommitdiff
path: root/kde-frameworks/kcrash
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-07-06 00:28:42 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2024-07-08 22:11:28 +0200
commit2f904c792d9df8bcd6875a314f3cabda0c4e15d3 (patch)
tree69e6d9664b0d1c0bf430889faddbdd71efa98594 /kde-frameworks/kcrash
parentfbb5df3479bd1369e918455aacb791340e0ec6a6 (diff)
downloadkde-2f904c792d9df8bcd6875a314f3cabda0c4e15d3.tar.gz
kde-2f904c792d9df8bcd6875a314f3cabda0c4e15d3.tar.bz2
kde-2f904c792d9df8bcd6875a314f3cabda0c4e15d3.zip
kde-frameworks/kcrash: 6.4.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.4.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..e0f8d5adb41
--- /dev/null
+++ b/kde-frameworks/kcrash/Manifest
@@ -0,0 +1 @@
+DIST kcrash-6.4.0.tar.xz 29012 BLAKE2B 190400165d7429c7873cd13130ebe72a920983aa75da5e2b40bcaf3c6c29d39bbb7e264e3e5bcf7dad260bad1524e8b863c95023336a60b81b702c359fdee6f4 SHA512 a838e02279d7e3055ffe49ee56f3df03634919b4599c3e04943b8789f7caafaa2ffee6fe3798903502b7981c0cfe980ef5224f1736e9dbe3ef6cc426816356dc
diff --git a/kde-frameworks/kcrash/kcrash-6.4.0.ebuild b/kde-frameworks/kcrash/kcrash-6.4.0.ebuild
new file mode 100644
index 00000000000..dd02fd35a8a
--- /dev/null
+++ b/kde-frameworks/kcrash/kcrash-6.4.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 ~arm64 ~riscv"
+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
+}