Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@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.11.ebuild
Date: Tue, 01 Mar 2011 18:55:02
Message-Id: 20110301185452.0C81620054@flycatcher.gentoo.org
1 scarabeus 11/03/01 18:54:52
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.10.11.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.33 x11-drivers/xf86-input-wacom/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 20 Feb 2011 10:54:27 -0000 1.32
24 +++ ChangeLog 1 Mar 2011 18:54:51 -0000 1.33
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-drivers/xf86-input-wacom
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.32 2011/02/20 10:54:27 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.33 2011/03/01 18:54:51 scarabeus Exp $
30 +
31 +*xf86-input-wacom-0.10.11 (01 Mar 2011)
32 +
33 + 01 Mar 2011; Tomáš Chvátal <scarabeus@g.o>
34 + +xf86-input-wacom-0.10.11.ebuild:
35 + Version bump.
36
37 20 Feb 2011; Samuli Suominen <ssuominen@g.o>
38 xf86-input-wacom-0.10.8-r1.ebuild:
39
40
41
42 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.11.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.11.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.11.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-input-wacom-0.10.11.ebuild
48 ===================================================================
49 # Copyright 1999-2011 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.11.ebuild,v 1.1 2011/03/01 18:54:51 scarabeus Exp $
52
53 EAPI=4
54
55 inherit linux-info xorg-2
56
57 DESCRIPTION="Driver for Wacom tablets and drawing devices"
58 HOMEPAGE="http://linuxwacom.sourceforge.net/"
59 LICENSE="GPL-2"
60 EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
61 [[ ${PV} != 9999* ]] && \
62 SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
63
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65 IUSE="debug"
66
67 RDEPEND="!x11-drivers/linuxwacom
68 >=x11-base/xorg-server-1.7
69 x11-libs/libX11
70 x11-libs/libXext
71 x11-libs/libXi
72 x11-libs/libXrandr"
73 DEPEND="${RDEPEND}
74 x11-proto/inputproto
75 x11-proto/kbproto
76 x11-proto/randrproto
77 x11-proto/xproto"
78
79 pkg_setup() {
80 linux-info_pkg_setup
81
82 CONFIGURE_OPTIONS="$(use_enable debug)"
83 }
84
85 src_install() {
86 xorg-2_src_install
87
88 rm -rf "${D}"/usr/share/hal
89 }
90
91 pkg_postinst() {
92 xorg-2_pkg_postinst
93
94 if ! linux_config_exists \
95 || ! linux_chkconfig_present TABLET_USB_WACOM \
96 || ! linux_chkconfig_present INPUT_EVDEV; then
97 echo
98 ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
99 ewarn " Device Drivers --->"
100 ewarn " Input device support --->"
101 ewarn " <*> Event interface"
102 ewarn " [*] Tablets --->"
103 ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
104 echo
105 fi
106 }