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