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: xf86-input-wacom-0.18.0.ebuild ChangeLog
Date: Wed, 31 Oct 2012 22:50:28
Message-Id: 20121031225011.CD17321600@flycatcher.gentoo.org
1 chithanh 12/10/31 22:50:11
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.18.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.62 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.62&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.62&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.61&r2=1.62
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
20 retrieving revision 1.61
21 retrieving revision 1.62
22 diff -u -r1.61 -r1.62
23 --- ChangeLog 29 Sep 2012 15:11:51 -0000 1.61
24 +++ ChangeLog 31 Oct 2012 22:50:11 -0000 1.62
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-drivers/xf86-input-wacom
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.61 2012/09/29 15:11:51 ikelos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.62 2012/10/31 22:50:11 chithanh Exp $
30 +
31 +*xf86-input-wacom-0.18.0 (31 Oct 2012)
32 +
33 + 31 Oct 2012; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +xf86-input-wacom-0.18.0.ebuild:
35 + Version bump.
36
37 *xf86-input-wacom-0.17.0 (29 Sep 2012)
38
39
40
41
42 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.18.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.18.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.18.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-input-wacom-0.18.0.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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.18.0.ebuild,v 1.1 2012/10/31 22:50:11 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 ~arm ~ppc ~ppc64 ~x86"
65 IUSE="debug"
66
67 RDEPEND=">=x11-base/xorg-server-1.7
68 x11-libs/libX11
69 x11-libs/libXext
70 x11-libs/libXi
71 x11-libs/libXrandr
72 x11-libs/libXinerama"
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 "${ED}"/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 }