summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-frameworks/kpackage/Manifest1
-rw-r--r--kde-frameworks/kpackage/kpackage-6.17.0.ebuild37
2 files changed, 38 insertions, 0 deletions
diff --git a/kde-frameworks/kpackage/Manifest b/kde-frameworks/kpackage/Manifest
new file mode 100644
index 00000000000..c69dd4a856f
--- /dev/null
+++ b/kde-frameworks/kpackage/Manifest
@@ -0,0 +1 @@
+DIST kpackage-6.17.0.tar.xz 181660 BLAKE2B 9027142e4a3cf46be0d749e07c8b7753385fc1efef4bc3cd3d4046858a7750f170ed0d5659c933aaf4844433f3d6c5aeb8f1d793afb7c4911c4c280f6a70fd34 SHA512 56fffd969de2dbfed9456b5d5895c770ab2c72d9844f2afe6de5a46d7dd590d7643e88debab9b18288b43625fa4b011464f460a5f82c8158dd27421a552cdd44
diff --git a/kde-frameworks/kpackage/kpackage-6.17.0.ebuild b/kde-frameworks/kpackage/kpackage-6.17.0.ebuild
new file mode 100644
index 00000000000..89b707688bc
--- /dev/null
+++ b/kde-frameworks/kpackage/kpackage-6.17.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org
+
+DESCRIPTION="Framework to install and load packages of non binary content"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="man"
+
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[dbus]
+ =kde-frameworks/karchive-${KDE_CATV}*:6
+ =kde-frameworks/kcoreaddons-${KDE_CATV}*:6
+ =kde-frameworks/ki18n-${KDE_CATV}*:6
+"
+RDEPEND="${DEPEND}"
+BDEPEND="man? ( >=kde-frameworks/kdoctools-${KDE_CATV}:6 )"
+
+CMAKE_SKIP_TESTS=(
+ # bugs 650214, 939041
+ plasmoidpackagetest
+ # requires network access
+ testpackage-appstream
+)
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake_use_find_package man KF6DocTools)
+ )
+
+ ecm_src_configure
+}