Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-wacom/
Date: Sat, 29 May 2021 18:16:53
Message-Id: 1622312182.1dfbe2bc37533343b0f7772f4fa4a9ad3958b5f3.mattst88@gentoo
1 commit: 1dfbe2bc37533343b0f7772f4fa4a9ad3958b5f3
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 29 18:13:50 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat May 29 18:16:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dfbe2bc
7
8 x11-drivers/xf86-input-wacom: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-drivers/xf86-input-wacom/Manifest | 1 -
13 .../xf86-input-wacom-0.39.0.ebuild | 71 ----------------------
14 2 files changed, 72 deletions(-)
15
16 diff --git a/x11-drivers/xf86-input-wacom/Manifest b/x11-drivers/xf86-input-wacom/Manifest
17 index f7319084ebb..69c6988a049 100644
18 --- a/x11-drivers/xf86-input-wacom/Manifest
19 +++ b/x11-drivers/xf86-input-wacom/Manifest
20 @@ -1,2 +1 @@
21 -DIST xf86-input-wacom-0.39.0.tar.bz2 622440 BLAKE2B c0a76c36e03bc4153ac62fa61dc5a588588f5d4dfff0bc0710ef20cc4be9cb80e4fd972d1edc734a18155926c77c8a205e5a55e0e223dc2af96a193da1bdbcb3 SHA512 9ad92c86c4ba3587d68e2107057c89dfe8628c0a2ec882f5a424ab4983c18ff6048489d7f6d3a8de87403744f74de1982de25327fc955bb5c21346a242e0aaa3
22 DIST xf86-input-wacom-0.40.0.tar.bz2 629310 BLAKE2B 63b930d3cd786d825250048fdf368fff4e607a39bfabee44e42a2c3ce9693c44ec8966871759d06b823f0568c4e3c2aee003633b863f5437eedc3125f19dd351 SHA512 ce0a24e2e9b4768e7eb65a5c663b3adce856356da7b83a1367dd7e031525805fc26d0b7c8b176a21fcd949c757940e18fec51d7253da157c0ac43ca446c4e536
23
24 diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.39.0.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.39.0.ebuild
25 deleted file mode 100644
26 index ee39fbabc71..00000000000
27 --- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.39.0.ebuild
28 +++ /dev/null
29 @@ -1,71 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit linux-info systemd udev xorg-3
36 -
37 -DESCRIPTION="Driver for Wacom tablets and drawing devices"
38 -HOMEPAGE="https://linuxwacom.github.io/"
39 -LICENSE="GPL-2"
40 -EGIT_REPO_URI="https://github.com/linuxwacom/xf86-input-wacom"
41 -[[ ${PV} != 9999* ]] && \
42 - SRC_URI="https://github.com/linuxwacom/${PN}/releases/download/${P}/${P}.tar.bz2"
43 -
44 -KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86"
45 -IUSE="debug"
46 -
47 -RDEPEND="dev-libs/libwacom
48 - virtual/libudev:=
49 - >=x11-base/xorg-server-1.7
50 - x11-libs/libX11
51 - x11-libs/libXext
52 - x11-libs/libXi
53 - x11-libs/libXrandr
54 - x11-libs/libXinerama"
55 -DEPEND="${RDEPEND}
56 - x11-base/xorg-proto"
57 -
58 -pkg_pretend() {
59 - linux-info_pkg_setup
60 -
61 - if kernel_is lt 3 17; then
62 - if ! linux_config_exists \
63 - || ! linux_chkconfig_present TABLET_USB_WACOM \
64 - || ! linux_chkconfig_present INPUT_EVDEV; then
65 - echo
66 - ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
67 - ewarn " Device Drivers --->"
68 - ewarn " Input device support --->"
69 - ewarn " <*> Event interface"
70 - ewarn " [*] Tablets --->"
71 - ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
72 - echo
73 - fi
74 - else
75 - if ! linux_config_exists \
76 - || ! linux_chkconfig_present HID_WACOM; then
77 - echo
78 - ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
79 - ewarn " Device Drivers --->"
80 - ewarn " HID support --->"
81 - ewarn " Special HID drivers --->"
82 - ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
83 - echo
84 - fi
85 - fi
86 -}
87 -
88 -pkg_setup() {
89 - linux-info_pkg_setup
90 - xorg-3_pkg_setup
91 -}
92 -
93 -src_configure() {
94 - local XORG_CONFIGURE_OPTIONS=(
95 - --with-systemd-unit-dir="$(systemd_get_systemunitdir)"
96 - --with-udev-rules-dir="$(get_udevdir)/rules.d"
97 - $(use_enable debug)
98 - )
99 - xorg-3_src_configure
100 -}