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.11.0.ebuild
Date: Thu, 28 Apr 2011 10:13:39
Message-Id: 20110428101325.EFFFE20054@flycatcher.gentoo.org
1 scarabeus 11/04/28 10:13:25
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.11.0.ebuild
5 Log:
6 Version bump to latest.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.40 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.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 18 Apr 2011 11:30:03 -0000 1.39
24 +++ ChangeLog 28 Apr 2011 10:13:25 -0000 1.40
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.39 2011/04/18 11:30:03 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.40 2011/04/28 10:13:25 scarabeus Exp $
30 +
31 +*xf86-input-wacom-0.11.0 (28 Apr 2011)
32 +
33 + 28 Apr 2011; Tomáš Chvátal <scarabeus@g.o>
34 + +xf86-input-wacom-0.11.0.ebuild:
35 + Version bump to latest.
36
37 18 Apr 2011; Tomáš Chvátal <scarabeus@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.11.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.11.0.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.11.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-input-wacom-0.11.0.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.11.0.ebuild,v 1.1 2011/04/28 10:13:25 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 XORG_CONFIGURE_OPTIONS=(
83 $(use_enable debug)
84 )
85 }
86
87 src_install() {
88 xorg-2_src_install
89
90 rm -rf "${D}"/usr/share/hal
91 }
92
93 pkg_postinst() {
94 xorg-2_pkg_postinst
95
96 if ! linux_config_exists \
97 || ! linux_chkconfig_present TABLET_USB_WACOM \
98 || ! linux_chkconfig_present INPUT_EVDEV; then
99 echo
100 ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
101 ewarn " Device Drivers --->"
102 ewarn " Input device support --->"
103 ewarn " <*> Event interface"
104 ewarn " [*] Tablets --->"
105 ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
106 echo
107 fi
108 }