summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-11-02 23:14:48 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-11-02 23:22:26 +0100
commit48f433b58c4981064b47c936e399da8447be5392 (patch)
tree8d8aad86314a7d972339e032c47080547141597e
parent41f4b41faa63f58e8cf6ed06fcc990154c6e0a23 (diff)
downloadkde-48f433b58c4981064b47c936e399da8447be5392.tar.gz
kde-48f433b58c4981064b47c936e399da8447be5392.tar.bz2
kde-48f433b58c4981064b47c936e399da8447be5392.zip
kde-frameworks/kcrash: 6.8.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/kcrash/Manifest1
-rw-r--r--kde-frameworks/kcrash/kcrash-6.8.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..083b024ea5f
--- /dev/null
+++ b/kde-frameworks/kcrash/Manifest
@@ -0,0 +1 @@
+DIST kcrash-6.8.0.tar.xz 27952 BLAKE2B 8e301768540472b72d241cbcd17a78785075c55e1f38b651f647db571e71514bdca5f4b107c7851c03d623f5b1490ee79fcadc7d8b1c00b0c840e865ba595ccf SHA512 b87e54c37e4d00798f2bbfe293ea16d893dec646c318fff1c07a71cc0483c189a1830691d8cb2e1001d56f42f7169c8e72187af3588f46a6c61cbe41d8795d2f
diff --git a/kde-frameworks/kcrash/kcrash-6.8.0.ebuild b/kde-frameworks/kcrash/kcrash-6.8.0.ebuild
new file mode 100644
index 00000000000..7b1c11008db
--- /dev/null
+++ b/kde-frameworks/kcrash/kcrash-6.8.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
+}