mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-25 08:28:12 +02:00
55 lines
1.4 KiB
Bash
55 lines
1.4 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
ECM_HANDBOOK="forceoptional"
|
|
KFMIN=6.10.0
|
|
QTMIN=6.8.1
|
|
inherit ecm plasma.kde.org xdg
|
|
|
|
DESCRIPTION="Wacom system settings module that supports different button/pen layout profiles"
|
|
HOMEPAGE="https://userbase.kde.org/Wacomtablet"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="6"
|
|
KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
|
|
IUSE=""
|
|
|
|
# slot op: Uses Qt6::GuiPrivate for qtx11extras_p.h
|
|
RDEPEND="
|
|
>=dev-libs/libwacom-0.30:=
|
|
>=dev-qt/qtbase-${QTMIN}:6=[dbus,gui,widgets]
|
|
>=dev-qt/qtdeclarative-${QTMIN}:6
|
|
>=kde-frameworks/kcmutils-${KFMIN}:6
|
|
>=kde-frameworks/kconfig-${KFMIN}:6
|
|
>=kde-frameworks/kconfigwidgets-${KFMIN}:6
|
|
>=kde-frameworks/kcoreaddons-${KFMIN}:6
|
|
>=kde-frameworks/kdbusaddons-${KFMIN}:6
|
|
>=kde-frameworks/kglobalaccel-${KFMIN}:6
|
|
>=kde-frameworks/ki18n-${KFMIN}:6
|
|
>=kde-frameworks/kio-${KFMIN}:6
|
|
>=kde-frameworks/knotifications-${KFMIN}:6
|
|
>=kde-frameworks/kwidgetsaddons-${KFMIN}:6
|
|
>=kde-frameworks/kwindowsystem-${KFMIN}:6
|
|
>=kde-frameworks/kxmlgui-${KFMIN}:6
|
|
>=kde-plasma/libplasma-${KDE_CATV}:6
|
|
>=kde-plasma/plasma5support-${KDE_CATV}:6
|
|
>=x11-drivers/xf86-input-wacom-0.20.0
|
|
x11-libs/libXi
|
|
x11-libs/libxcb
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
x11-base/xorg-proto
|
|
x11-libs/libX11
|
|
"
|
|
BDEPEND="sys-devel/gettext"
|
|
|
|
src_test() {
|
|
# test needs DBus, bug 675548
|
|
local myctestargs=(
|
|
-E "(Test.KDED.DBusTabletService)"
|
|
)
|
|
|
|
ecm_src_test
|
|
}
|