Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-wacom: xf86-input-wacom-0.30.0.ebuild ChangeLog
Date: Sat, 04 Jul 2015 10:29:45
Message-Id: 20150704102935.9B904751@oystercatcher.gentoo.org
1 mrueg 15/07/04 10:29:35
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.30.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.97 x11-drivers/xf86-input-wacom/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.97&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.97&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.96&r2=1.97
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
20 retrieving revision 1.96
21 retrieving revision 1.97
22 diff -u -r1.96 -r1.97
23 --- ChangeLog 27 Mar 2015 01:11:35 -0000 1.96
24 +++ ChangeLog 4 Jul 2015 10:29:35 -0000 1.97
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-drivers/xf86-input-wacom
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.96 2015/03/27 01:11:35 chithanh Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.97 2015/07/04 10:29:35 mrueg Exp $
30 +
31 +*xf86-input-wacom-0.30.0 (04 Jul 2015)
32 +
33 + 04 Jul 2015; Manuel RĂ¼ger <mrueg@g.o> +xf86-input-wacom-0.30.0.ebuild:
34 + Version bump.
35
36 *xf86-input-wacom-0.29.0 (27 Mar 2015)
37
38
39
40
41 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.30.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.30.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.30.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xf86-input-wacom-0.30.0.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.30.0.ebuild,v 1.1 2015/07/04 10:29:35 mrueg Exp $
51
52 EAPI=5
53
54 inherit linux-info xorg-2
55
56 DESCRIPTION="Driver for Wacom tablets and drawing devices"
57 HOMEPAGE="http://linuxwacom.sourceforge.net/"
58 LICENSE="GPL-2"
59 EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
60 [[ ${PV} != 9999* ]] && \
61 SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
62
63 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="debug"
65
66 # depend on libwacom for its udev rules, bug #389633
67 RDEPEND="dev-libs/libwacom
68 virtual/udev
69 >=x11-base/xorg-server-1.7
70 x11-libs/libX11
71 x11-libs/libXext
72 x11-libs/libXi
73 x11-libs/libXrandr
74 x11-libs/libXinerama"
75 DEPEND="${RDEPEND}
76 x11-proto/randrproto"
77
78 pkg_setup() {
79 linux-info_pkg_setup
80
81 XORG_CONFIGURE_OPTIONS=(
82 $(use_enable debug)
83 )
84 }
85
86 src_install() {
87 xorg-2_src_install
88
89 rm -rf "${ED}"/usr/share/hal
90 }
91
92 pkg_pretend() {
93 linux-info_pkg_setup
94
95 if ! linux_config_exists \
96 || ! linux_chkconfig_present TABLET_USB_WACOM \
97 || ! linux_chkconfig_present INPUT_EVDEV; then
98 echo
99 ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
100 ewarn " Device Drivers --->"
101 ewarn " Input device support --->"
102 ewarn " <*> Event interface"
103 ewarn " [*] Tablets --->"
104 ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
105 echo
106 fi
107 }