summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-frameworks/ki18n/Manifest1
-rw-r--r--kde-frameworks/ki18n/ki18n-6.15.0.ebuild46
2 files changed, 47 insertions, 0 deletions
diff --git a/kde-frameworks/ki18n/Manifest b/kde-frameworks/ki18n/Manifest
new file mode 100644
index 00000000000..a7fec5e7794
--- /dev/null
+++ b/kde-frameworks/ki18n/Manifest
@@ -0,0 +1 @@
+DIST ki18n-6.15.0.tar.xz 3090300 BLAKE2B 93a77fb8fb98a7905f6bc6c4d4768aaa556487974d097501fba3185866a1afdddb6032dff10d5019c94969d5e0851bb38af6006f3356b86977fc797f6c063990 SHA512 240ea424e9d2bd4d0de9885a743aaf41391b6d6bfee71c11140c724056a6f6095fcfb3b9d0fc2cac0a3b7e6ce8a5bdeb52ced50bf32df9cd1e3c5f7aa996178b
diff --git a/kde-frameworks/ki18n/ki18n-6.15.0.ebuild b/kde-frameworks/ki18n/ki18n-6.15.0.ebuild
new file mode 100644
index 00000000000..abd7bb0450c
--- /dev/null
+++ b/kde-frameworks/ki18n/ki18n-6.15.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org python-single-r1
+
+DESCRIPTION="Framework based on Gettext for internationalizing user interface text"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+ >=dev-qt/qtbase-${QTMIN}:6[widgets]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ sys-devel/gettext
+ virtual/libintl
+"
+DEPEND="${COMMON_DEPEND}
+ test? ( >=dev-qt/qtbase-${QTMIN}:6[concurrent] )
+"
+RDEPEND="${COMMON_DEPEND}
+ app-text/iso-codes
+"
+
+CMAKE_SKIP_TESTS=(
+ # bug 876496
+ kcatalogtest
+ # requires LANG fr_CH. bugs 823816
+ kcountrytest
+ kcountrysubdivisiontest
+ # flaky, bug 948895
+ ki18n-klocalizedstringtest
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DPython3_EXECUTABLE="${PYTHON}"
+ )
+ ecm_src_configure
+}