mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 17:05:49 +02:00
64 lines
1.7 KiB
Bash
64 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="optional"
|
|
ECM_TEST="true"
|
|
KFMIN=6.13.0
|
|
QTMIN=6.7.2
|
|
inherit ecm gear.kde.org
|
|
|
|
DESCRIPTION="KDE's terminal emulator"
|
|
HOMEPAGE="https://apps.kde.org/konsole/ https://konsole.kde.org"
|
|
|
|
LICENSE="GPL-2" # TODO: CHECK
|
|
SLOT="6"
|
|
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv ~x86"
|
|
IUSE="X"
|
|
|
|
DEPEND="
|
|
dev-libs/icu:=
|
|
>=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets,xml]
|
|
>=dev-qt/qtmultimedia-${QTMIN}:6
|
|
>=kde-frameworks/kbookmarks-${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/kglobalaccel-${KFMIN}:6
|
|
>=kde-frameworks/kguiaddons-${KFMIN}:6
|
|
>=kde-frameworks/ki18n-${KFMIN}:6
|
|
>=kde-frameworks/kiconthemes-${KFMIN}:6
|
|
>=kde-frameworks/kio-${KFMIN}:6
|
|
>=kde-frameworks/kjobwidgets-${KFMIN}:6
|
|
>=kde-frameworks/knewstuff-${KFMIN}:6
|
|
>=kde-frameworks/knotifications-${KFMIN}:6
|
|
>=kde-frameworks/knotifyconfig-${KFMIN}:6
|
|
>=kde-frameworks/kparts-${KFMIN}:6
|
|
>=kde-frameworks/kpty-${KFMIN}:6
|
|
>=kde-frameworks/kservice-${KFMIN}:6
|
|
>=kde-frameworks/ktextwidgets-${KFMIN}:6
|
|
>=kde-frameworks/kwidgetsaddons-${KFMIN}:6
|
|
>=kde-frameworks/kwindowsystem-${KFMIN}:6[X?]
|
|
>=kde-frameworks/kxmlgui-${KFMIN}:6
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DWITH_X11=$(usex X)
|
|
)
|
|
ecm_src_configure
|
|
}
|
|
|
|
src_test() {
|
|
# DBusTest: drkonqi process interferes. bug 702690
|
|
# TerminalInterfaceTest: unbelievably flaky, bug 862594 and bug 662756
|
|
local myctestargs=(
|
|
-E "(DBusTest|TerminalInterfaceTest)"
|
|
)
|
|
|
|
ecm_src_test
|
|
}
|