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.6.ebuild
Date: Thu, 29 Apr 2010 17:52:34
Message-Id: 20100429175230.C306F2C04C@corvid.gentoo.org
1 ikelos 10/04/29 17:52:30
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.10.6.ebuild
5 Log:
6 Version bump xf86-input-wacom.
7 (Portage version: 2.2_rc67/cvs/Linux i686)
8
9 Revision Changes Path
10 1.16 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.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 18 Apr 2010 16:25:34 -0000 1.15
23 +++ ChangeLog 29 Apr 2010 17:52:30 -0000 1.16
24 @@ -1,6 +1,12 @@
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.15 2010/04/18 16:25:34 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.16 2010/04/29 17:52:30 ikelos Exp $
29 +
30 +*xf86-input-wacom-0.10.6 (29 Apr 2010)
31 +
32 + 29 Apr 2010; Mike Auty <ikelos@g.o>
33 + +xf86-input-wacom-0.10.6.ebuild:
34 + Version bump xf86-input-wacom.
35
36 18 Apr 2010; <nixnut@g.o> xf86-input-wacom-0.10.4.ebuild:
37 ppc stable #308521
38
39
40
41 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.6.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.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xf86-input-wacom-0.10.6.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.6.ebuild,v 1.1 2010/04/29 17:52:30 ikelos Exp $
51
52 EAPI="2"
53
54 inherit linux-info x-modular
55
56 DESCRIPTION="Driver for Wacom tablets and drawing devices"
57 LICENSE="GPL-2"
58 EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
59 [[ ${PV} != 9999* ]] && \
60 SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
61
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
63 IUSE="hal debug"
64
65 COMMON_DEPEND=">=x11-base/xorg-server-1.6
66 hal? ( sys-apps/hal )"
67 RDEPEND="${COMMON_DEPEND}
68 !x11-drivers/linuxwacom"
69 DEPEND="${COMMON_DEPEND}
70 x11-proto/inputproto
71 x11-proto/xproto"
72
73 pkg_setup() {
74 linux-info_pkg_setup
75
76 CONFIGURE_OPTIONS="$(use_enable debug)"
77 }
78
79 src_install() {
80 x-modular_src_install
81
82 use hal || rm -fr "${D}/usr/share/hal"
83
84 }
85
86 pkg_postinst() {
87 x-modular_pkg_postinst
88
89 if ! linux_config_exists \
90 || ! 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 }