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.4.ebuild
Date: Tue, 09 Feb 2010 11:57:23
Message-Id: E1NeoiY-0004Tu-07@stork.gentoo.org
1 ikelos 10/02/09 11:57:21
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.10.4.ebuild
5 Log:
6 Version bump xf86-input-wacom to 0.10.4, closes bug 304081, thanks to Matthew Turnbull.
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.11 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.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 18 Jan 2010 15:46:56 -0000 1.10
23 +++ ChangeLog 9 Feb 2010 11:57:21 -0000 1.11
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-drivers/xf86-input-wacom
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.10 2010/01/18 15:46:56 rbu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.11 2010/02/09 11:57:21 ikelos Exp $
29 +
30 +*xf86-input-wacom-0.10.4 (09 Feb 2010)
31 +
32 + 09 Feb 2010; Mike Auty <ikelos@g.o>
33 + +xf86-input-wacom-0.10.4.ebuild:
34 + Version bump xf86-input-wacom to 0.10.4, closes bug 304081, thanks to
35 + Matthew Turnbull.
36
37 18 Jan 2010; Robert Buchholz <rbu@g.o> metadata.xml:
38 Dropping maintenance
39
40
41
42 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.4.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.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-input-wacom-0.10.4.ebuild
48 ===================================================================
49 # Copyright 1999-2010 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.4.ebuild,v 1.1 2010/02/09 11:57:21 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://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
60 [[ ${PV} != 9999* ]] && \
61 SRC_URI="mirror://sourceforge/linuxwacom/files/${PN}/${P}.tar.bz2"
62
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64 IUSE="hal debug"
65
66 COMMON_DEPEND=">=x11-base/xorg-server-1.6
67 hal? ( sys-apps/hal )"
68 RDEPEND="${COMMON_DEPEND}
69 !x11-drivers/linuxwacom"
70 DEPEND="${COMMON_DEPEND}
71 x11-proto/inputproto
72 x11-proto/xproto"
73
74 pkg_setup() {
75 linux-info_pkg_setup
76
77 CONFIGURE_OPTIONS="$(use_enable debug)"
78 }
79
80 src_install() {
81 x-modular_src_install
82 rm -r "${D}/usr/share/hal"
83
84 if use hal; then
85 insinto /usr/share/hal/fdi/policy/10osvendor
86 newins "${S}"/fdi/wacom.fdi 11-x11-wacom.fdi
87 fi
88 }
89
90 pkg_postinst() {
91 x-modular_pkg_postinst
92
93 if ! linux_config_exists \
94 || ! 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 }