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: xf86-input-wacom-0.17.0.ebuild ChangeLog
Date: Sat, 29 Sep 2012 15:12:01
Message-Id: 20120929151151.A863D21600@flycatcher.gentoo.org
1 ikelos 12/09/29 15:11:51
2
3 Modified: ChangeLog
4 Added: xf86-input-wacom-0.17.0.ebuild
5 Log:
6 Bump to version 0.17.0.
7
8 (Portage version: 2.2.0_alpha133/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.61 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.61&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 23 Sep 2012 12:09:14 -0000 1.60
24 +++ ChangeLog 29 Sep 2012 15:11:51 -0000 1.61
25 @@ -1,6 +1,11 @@
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.60 2012/09/23 12:09:14 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.61 2012/09/29 15:11:51 ikelos Exp $
30 +
31 +*xf86-input-wacom-0.17.0 (29 Sep 2012)
32 +
33 + 29 Sep 2012; Mike Auty <ikelos@g.o> +xf86-input-wacom-0.17.0.ebuild:
34 + Bump to version 0.17.0.
35
36 23 Sep 2012; Anthony G. Basile <blueness@g.o>
37 xf86-input-wacom-0.16.1.ebuild:
38
39
40
41 1.1 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.17.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.17.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.17.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xf86-input-wacom-0.17.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.17.0.ebuild,v 1.1 2012/09/29 15:11:51 ikelos Exp $
51
52 EAPI=4
53
54 inherit linux-info xorg-2
55
56 DESCRIPTION="Driver for Wacom tablets and drawing devices"
57 HOMEPAGE="http://linuxwacom.sourceforge.net/"
58 LICENSE="GPL-2"
59 EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
60 [[ ${PV} != 9999* ]] && \
61 SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
62
63 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
64 IUSE="debug"
65
66 RDEPEND=">=x11-base/xorg-server-1.7
67 x11-libs/libX11
68 x11-libs/libXext
69 x11-libs/libXi
70 x11-libs/libXrandr
71 x11-libs/libXinerama"
72 DEPEND="${RDEPEND}
73 x11-proto/randrproto"
74
75 pkg_setup() {
76 linux-info_pkg_setup
77
78 XORG_CONFIGURE_OPTIONS=(
79 $(use_enable debug)
80 )
81 }
82
83 src_install() {
84 xorg-2_src_install
85
86 rm -rf "${ED}"/usr/share/hal
87 }
88
89 pkg_pretend() {
90 linux-info_pkg_setup
91
92 if ! linux_config_exists \
93 || ! linux_chkconfig_present TABLET_USB_WACOM \
94 || ! linux_chkconfig_present INPUT_EVDEV; then
95 echo
96 ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel"
97 ewarn " Device Drivers --->"
98 ewarn " Input device support --->"
99 ewarn " <*> Event interface"
100 ewarn " [*] Tablets --->"
101 ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
102 echo
103 fi
104 }