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-synaptics: ChangeLog xf86-input-synaptics-1.2.2.ebuild
Date: Fri, 02 Apr 2010 10:46:39
Message-Id: E1Nxe4R-0002vb-BT@stork.gentoo.org
1 scarabeus 10/04/02 10:25:47
2
3 Modified: ChangeLog
4 Added: xf86-input-synaptics-1.2.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.46 x11-drivers/xf86-input-synaptics/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 24 Feb 2010 16:54:19 -0000 1.45
23 +++ ChangeLog 2 Apr 2010 10:25:47 -0000 1.46
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-drivers/xf86-input-synaptics
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.45 2010/02/24 16:54:19 scarabeus Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.46 2010/04/02 10:25:47 scarabeus Exp $
29 +
30 +*xf86-input-synaptics-1.2.2 (02 Apr 2010)
31 +
32 + 02 Apr 2010; Tomáš Chvátal <scarabeus@g.o>
33 + +xf86-input-synaptics-1.2.2.ebuild:
34 + Version bump.
35
36 24 Feb 2010; Tomáš Chvátal <scarabeus@g.o>
37 -xf86-input-synaptics-1.2.0.ebuild:
38
39
40
41 1.1 x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xf86-input-synaptics-1.2.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.2.ebuild,v 1.1 2010/04/02 10:25:47 scarabeus Exp $
51
52 inherit linux-info x-modular
53
54 DESCRIPTION="Driver for Synaptics touchpads"
55 HOMEPAGE="http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/"
56
57 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
58 IUSE="hal"
59
60 RDEPEND="
61 >=x11-base/xorg-server-1.6
62 >=x11-libs/libXi-1.2
63 x11-libs/libXtst
64 hal? ( sys-apps/hal )"
65 DEPEND="${RDEPEND}
66 x11-proto/inputproto
67 >=sys-apps/sed-4"
68
69 src_install() {
70 DOCS="INSTALL TODO README"
71 x-modular_src_install
72
73 if use hal ; then
74 insinto /usr/share/hal/fdi/policy/10osvendor
75 doins "${S}"/fdi/11-x11-synaptics.fdi
76 fi
77 }
78
79 pkg_postinst() {
80 x-modular_pkg_postinst
81 # Just a friendly warning
82 if linux_config_exists; then
83 if ! linux_chkconfig_present INPUT_EVDEV; then
84 echo
85 ewarn "This driver requires event interface support in your kernel"
86 ewarn " Device Drivers --->"
87 ewarn " Input device support --->"
88 ewarn " <*> Event interface"
89 echo
90 fi
91 fi
92 if use hal ; then
93 elog "If you want to modify Synaptics settings, please create an fdi file in:"
94 elog "/etc/hal/fdi/policy/"
95 echo
96 ewarn "The current default are set by :"
97 ewarn "/usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi"
98 ewarn "You can use this file for inspiration, but DO NOT EDIT IT directly."
99 fi
100 }