Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@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.1.ebuild
Date: Thu, 01 Sep 2011 18:01:42
Message-Id: 20110901180132.363692004C@flycatcher.gentoo.org
1 chithanh 11/09/01 18:01:32
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.11.1.ebuild
5 Log:
6 Version bump, bug #381453.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.47 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.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 29 Jul 2011 10:50:32 -0000 1.46
24 +++ ChangeLog 1 Sep 2011 18:01:32 -0000 1.47
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.46 2011/07/29 10:50:32 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.47 2011/09/01 18:01:32 chithanh Exp $
30 +
31 +*xf86-input-wacom-0.11.1 (01 Sep 2011)
32 +
33 + 01 Sep 2011; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +xf86-input-wacom-0.11.1.ebuild:
35 + Version bump, bug #381453.
36
37 29 Jul 2011; Kacper Kowalik <xarthisius@g.o>
38 xf86-input-wacom-0.11.0.ebuild:
39
40
41
42 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.11.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.11.1.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.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-input-wacom-0.11.1.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.1.ebuild,v 1.1 2011/09/01 18:01:32 chithanh 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/randrproto"
75
76 pkg_setup() {
77 linux-info_pkg_setup
78
79 XORG_CONFIGURE_OPTIONS=(
80 $(use_enable debug)
81 )
82 }
83
84 src_install() {
85 xorg-2_src_install
86
87 rm -rf "${D}"/usr/share/hal
88 }
89
90 pkg_pretend() {
91 linux-info_pkg_setup
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 }