mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
56 lines
1.5 KiB
Bash
56 lines
1.5 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.16.0
|
|
QTMIN=6.9.1
|
|
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/kcolorscheme-${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"
|
|
)
|
|
|
|
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
|
|
}
|