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