mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 17:05:49 +02:00
60 lines
1.7 KiB
Bash
60 lines
1.7 KiB
Bash
# 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
|
|
}
|