forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST wacomtablet-3.2.0-patchset-1.tar.xz 7796 BLAKE2B 4fa998a0f4376579d1e0d06a8aa9edababedca22d579dbdae651eee3699decc880a7a1d277f04c2bc24adba87908c07ab711989a5985b68af5b295d3b3260d33 SHA512 ff96f05831e4760ce99920061f0dc927aa6a2d5ef4b7443c3129bb1431262cb4bc1434097595976672393e3b611438014ccb528fc948e7c0407fc9a2d52ade8d | ||
DIST wacomtablet-3.2.0.tar.xz 728468 BLAKE2B f741c8989f94cdc5b4839df5d91a6728c48308880c489e031d4615a58e82dddda75dcd1cd04b941035c1aece3ed4f7889508629100852cbcaafc063d7e0f8d1e SHA512 acbabd6d6546bc85f0ed4e245668dc89b1c2ecaedd3754bf7ad8027b90f3ae81e5312395376de272dcbd416a9a1115bff2481351bd3f418bef7fa06d0db0c5a6 | ||
DIST wacomtablet-6.0.3.tar.xz 824944 BLAKE2B a1a1709d895525cd8f02391e755478d82e711bdfe42df84f4c2f000b79c60a0b7dc92cf727cb15905dfaf58cf871ffdfe45d2af0b25e47255d21695e548e4902 SHA512 d8b757eb675c06320df68a018e99523119d7d471924a3c80d77e7da88dfd1e5800aca0382bd66e21d0b37d454ee5eb0893d88929cf05a959d6ac5b7817d43e80 | ||
DIST wacomtablet-6.0.4.tar.xz 824848 BLAKE2B f39de4084f9411acace921f25610c29ac0bfe4950ec8cab675ce360b79788155b010226785e2e3978a10867b8f5856b90e92aa76325996025e2f9791a6c23008 SHA512 7e12a8b27b1c52f19b4847558ccdce86709eca06982798d9ada7a27cf954fa4f9c5b2c3e2f6d8593045c218a5256c3a87078823fd8d0901e2382172de21a4095 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_HANDBOOK="forceoptional" | ||
KFMIN=6.0 | ||
PVCUT=$(ver_cut 1-3) | ||
QTMIN=6.6.2 | ||
inherit ecm plasma.kde.org | ||
|
||
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" | ||
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-${PVCUT}:6 | ||
>=kde-plasma/plasma5support-${PVCUT}: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 | ||
} |