Gentoo Archives: gentoo-commits

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