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-synaptics: ChangeLog xf86-input-synaptics-1.5.0.ebuild
Date: Wed, 16 Nov 2011 21:31:16
Message-Id: 20111116213105.C39AE2004B@flycatcher.gentoo.org
1 chithanh 11/11/16 21:31:05
2
3 Modified: ChangeLog
4 Added: xf86-input-synaptics-1.5.0.ebuild
5 Log:
6 Non-maintainer commit. Version bump, bug #385723. Drop dependency which is already handled by xorg-2.eclass. Move kernel check to pkg_pretend().
7
8 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.63 x11-drivers/xf86-input-synaptics/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.63&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.63&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?r1=1.62&r2=1.63
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v
20 retrieving revision 1.62
21 retrieving revision 1.63
22 diff -u -r1.62 -r1.63
23 --- ChangeLog 20 Jul 2011 23:34:56 -0000 1.62
24 +++ ChangeLog 16 Nov 2011 21:31:05 -0000 1.63
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-drivers/xf86-input-synaptics
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.62 2011/07/20 23:34:56 halcy0n Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.63 2011/11/16 21:31:05 chithanh Exp $
30 +
31 +*xf86-input-synaptics-1.5.0 (16 Nov 2011)
32 +
33 + 16 Nov 2011; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +xf86-input-synaptics-1.5.0.ebuild:
35 + Non-maintainer commit. Version bump, bug #385723. Drop dependency which is
36 + already handled by xorg-2.eclass. Move kernel check to pkg_pretend().
37
38 20 Jul 2011; Mark Loeser <halcy0n@g.o>
39 xf86-input-synaptics-1.4.0.ebuild:
40
41
42
43 1.1 x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.5.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.5.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.5.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xf86-input-synaptics-1.5.0.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.5.0.ebuild,v 1.1 2011/11/16 21:31:05 chithanh Exp $
53
54 EAPI=4
55
56 inherit linux-info xorg-2
57
58 DESCRIPTION="Driver for Synaptics touchpads"
59 HOMEPAGE="http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/"
60
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
62 IUSE=""
63
64 RDEPEND="
65 >=x11-base/xorg-server-1.8
66 >=x11-libs/libXi-1.2
67 >=x11-libs/libXtst-1.1.0"
68 DEPEND="${RDEPEND}
69 >=x11-proto/recordproto-1.14"
70
71 DOCS=( "README" )
72
73 pkg_pretend() {
74 linux-info_pkg_setup
75 # Just a friendly warning
76 if ! linux_config_exists \
77 || ! linux_chkconfig_present INPUT_EVDEV; then
78 echo
79 ewarn "This driver requires event interface support in your kernel"
80 ewarn " Device Drivers --->"
81 ewarn " Input device support --->"
82 ewarn " <*> Event interface"
83 echo
84 fi
85 }