blob: 4cf641f3ca66be34716eda816daa94d997a0d986 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit linux-info systemd udev xorg-2
DESCRIPTION="Driver for Wacom tablets and drawing devices"
HOMEPAGE="http://linuxwacom.sourceforge.net/"
LICENSE="GPL-2"
EGIT_REPO_URI="git://git.code.sf.net/p/linuxwacom/${PN}"
[[ ${PV} != 9999* ]] && \
SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
KEYWORDS="~alpha amd64 arm ia64 ppc ppc64 sparc x86"
IUSE="debug"
RDEPEND="dev-libs/libwacom
virtual/libudev:=
>=x11-base/xorg-server-1.7
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
x11-libs/libXrandr
x11-libs/libXinerama"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
pkg_setup() {
linux-info_pkg_setup
XORG_CONFIGURE_OPTIONS=(
--with-systemd-unit-dir="$(systemd_get_systemunitdir)"
--with-udev-rules-dir="$(get_udevdir)/rules.d"
$(use_enable debug)
)
}
src_install() {
xorg-2_src_install
rm -rf "${ED}"/usr/share/hal
}
pkg_pretend() {
linux-info_pkg_setup
if kernel_is lt 3 17; then
if ! linux_config_exists \
|| ! linux_chkconfig_present TABLET_USB_WACOM \
|| ! linux_chkconfig_present INPUT_EVDEV; then
echo
ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
ewarn " Device Drivers --->"
ewarn " Input device support --->"
ewarn " <*> Event interface"
ewarn " [*] Tablets --->"
ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
echo
fi
else
if ! linux_config_exists \
|| ! linux_chkconfig_present HID_WACOM; then
echo
ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
ewarn " Device Drivers --->"
ewarn " HID support --->"
ewarn " Special HID drivers --->"
ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
echo
fi
fi
}
|