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