summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-apps/lokalize/Manifest1
-rw-r--r--kde-apps/lokalize/lokalize-25.04.3.ebuild60
2 files changed, 61 insertions, 0 deletions
diff --git a/kde-apps/lokalize/Manifest b/kde-apps/lokalize/Manifest
new file mode 100644
index 00000000000..d977eed89a9
--- /dev/null
+++ b/kde-apps/lokalize/Manifest
@@ -0,0 +1 @@
+DIST lokalize-25.04.3.tar.xz 2068224 BLAKE2B e9c36cae8f239a5d65eead8f67aa1e092af63e7702fe229aeabfb2704e7b88cfc8ef3d968e583d73907abf9f2c6d1e30568003b1f1a02012a171da647f676b0c SHA512 d1c523dd78a4524550dc6e073a49ffc0a6e4b44bcab9047d31492db9168f6a1f6a8445f7c4e93815e96274511ff1765b1427574d7c4ab654eab50997b9d17b9a
diff --git a/kde-apps/lokalize/lokalize-25.04.3.ebuild b/kde-apps/lokalize/lokalize-25.04.3.ebuild
new file mode 100644
index 00000000000..414ef867ad3
--- /dev/null
+++ b/kde-apps/lokalize/lokalize-25.04.3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="forceoptional"
+ECM_TEST="forceoptional"
+KFMIN=6.13.0
+QTMIN=6.7.2
+inherit ecm gear.kde.org optfeature xdg
+
+DESCRIPTION="Localization tool for KDE software and other free and open source software"
+HOMEPAGE="https://apps.kde.org/lokalize/ https://l10n.kde.org/tools/"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+DEPEND="
+ >=app-text/hunspell-1.2.8:=
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,sql,widgets,xml]
+ >=kde-frameworks/kcompletion-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kconfigwidgets-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kcrash-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kiconthemes-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/kitemviews-${KFMIN}:6
+ >=kde-frameworks/knotifications-${KFMIN}:6
+ >=kde-frameworks/kparts-${KFMIN}:6
+ >=kde-frameworks/ktextwidgets-${KFMIN}:6
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+ >=kde-frameworks/kxmlgui-${KFMIN}:6
+ >=kde-frameworks/sonnet-${KFMIN}:6
+"
+RDEPEND="${DEPEND}"
+
+CMAKE_SKIP_TESTS=(
+ # Unstable
+ # https://invent.kde.org/sdk/lokalize/-/issues/4
+ "tmjobstest"
+)
+
+src_prepare() {
+ ecm_src_prepare
+ # https://invent.kde.org/sdk/lokalize/-/commit/aaa29d78a81d2bc08c1d0efe715f819a0329e96e
+ cmake_comment_add_subdirectory scripts
+}
+
+pkg_postinst() {
+ if [[ -z "${REPLACING_VERSIONS}" ]]; then
+ optfeature "autofetch kde.org translations in new project wizard" dev-vcs/subversion
+ optfeature "spell and grammar checking" app-text/languagetool
+ fi
+ xdg_pkg_postinst
+}