Gentoo Archives: gentoo-commits

From: "Mike Auty (ikelos)" <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-wacom: ChangeLog xf86-input-wacom-0.10.2.ebuild
Date: Tue, 01 Dec 2009 09:40:48
Message-Id: E1NFPDw-0004pm-PC@stork.gentoo.org
1 ikelos 09/12/01 09:40:44
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.10.2.ebuild
5 Log:
6 Version bump xf86-input-wacom to 0.10.2. This now supports hotplugging and autoconfiguration for serial devices.
7 (Portage version: 2.2_rc52/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 x11-drivers/xf86-input-wacom/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 20 Nov 2009 13:03:52 -0000 1.4
23 +++ ChangeLog 1 Dec 2009 09:40:44 -0000 1.5
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-drivers/xf86-input-wacom
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.4 2009/11/20 13:03:52 ikelos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.5 2009/12/01 09:40:44 ikelos Exp $
29 +
30 +*xf86-input-wacom-0.10.2 (01 Dec 2009)
31 +
32 + 01 Dec 2009; Mike Auty <ikelos@g.o>
33 + +xf86-input-wacom-0.10.2.ebuild:
34 + Version bump xf86-input-wacom to 0.10.2. This now supports hotplugging and
35 + autoconfiguration for serial devices.
36
37 *xf86-input-wacom-0.10.1 (20 Nov 2009)
38
39
40
41
42 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-input-wacom-0.10.2.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.2.ebuild,v 1.1 2009/12/01 09:40:44 ikelos Exp $
52
53 EAPI="2"
54
55 inherit linux-info x-modular
56
57 DESCRIPTION="Driver for Wacom tablets and drawing devices"
58 LICENSE="GPL-2"
59 EGIT_REPO_URI="git://anongit.freedesktop.org/~whot/xf86-input-wacom"
60 [[ ${PV} != 9999* ]] && \
61 SRC_URI="http://people.freedesktop.org/~whot/${PN}/${P}.tar.bz2"
62
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64 IUSE="hal debug"
65
66 RDEPEND=">=x11-base/xorg-server-1.6
67 hal? ( sys-apps/hal )"
68 DEPEND="${RDEPEND}
69 x11-proto/inputproto
70 x11-proto/xproto"
71
72 pkg_setup() {
73 linux-info_pkg_setup
74
75 CONFIGURE_OPTIONS="$(use_enable debug)"
76 }
77
78 src_install() {
79 x-modular_src_install
80
81 if use hal; then
82 insinto /usr/share/hal/fdi/policy/10osvendor
83 newins "${S}"/fdi/wacom.fdi 11-x11-wacom.fdi
84 fi
85 }
86
87 pkg_postinst() {
88 x-modular_pkg_postinst
89
90 if ! linux_chkconfig_present TABLET_USB_WACOM \
91 || ! linux_chkconfig_present INPUT_EVDEV; then
92 echo
93 ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
94 ewarn " Device Drivers --->"
95 ewarn " Input device support --->"
96 ewarn " <*> Event interface"
97 ewarn " [*] Tablets --->"
98 ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
99 echo
100 fi
101 }