Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Tony Vroon (chainsaw)" <chainsaw@g.o>
|
|
Subject:
|
gentoo-x86 commit in x11-drivers/xf86-input-synaptics: xf86-input-synaptics-0.99.3-r1.ebuild ChangeLog
|
|
Date:
|
Mon, 05 Jan 2009 17:45:48 +0000
|
|
chainsaw 09/01/05 17:45:48
Modified: ChangeLog
Added: xf86-input-synaptics-0.99.3-r1.ebuild
Log:
Reintroduce hal USE-flag by request of Ryan Tandy <tarpman@...>. This makes sense now that ABI=0 X servers are supported. Closes bug #253872.
(Portage version: 2.1.6.4/cvs/Linux 2.6.28-05716-gfe0bdec-dirty x86_64)
Revision Changes Path
1.18 x11-drivers/xf86-input-synaptics/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog?r1=1.17&r2=1.18
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog 4 Jan 2009 05:23:34 -0000 1.17
+++ ChangeLog 5 Jan 2009 17:45:48 -0000 1.18
@@ -1,6 +1,13 @@
# ChangeLog for x11-drivers/xf86-input-synaptics
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.17 2009/01/04 05:23:34 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.18 2009/01/05 17:45:48 chainsaw Exp $
+
+*xf86-input-synaptics-0.99.3-r1 (05 Jan 2009)
+
+ 05 Jan 2009; <chainsaw@g.o> +xf86-input-synaptics-0.99.3-r1.ebuild:
+ Reintroduce hal USE-flag by request of Ryan Tandy <tarpman@...>.
+ This makes sense now that ABI=0 X servers are supported. Closes bug
+ #253872.
04 Jan 2009; <chainsaw@g.o> xf86-input-synaptics-0.99.3.ebuild:
Remove the HAL USE-flag more thoroughly, as requested by Mr_Bones.
1.1 x11-drivers/xf86-input-synaptics/xf86-input-synaptics-0.99.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-0.99.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-0.99.3-r1.ebuild?rev=1.1&content-type=text/plain
Index: xf86-input-synaptics-0.99.3-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-0.99.3-r1.ebuild,v 1.1 2009/01/05 17:45:48 chainsaw Exp $
inherit toolchain-funcs eutils linux-info x-modular
DESCRIPTION="Driver for Synaptics touchpads"
HOMEPAGE="http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
LICENSE="MIT"
IUSE="hal"
RDEPEND="x11-libs/libXext
hal? ( sys-apps/hal )"
DEPEND="${RDEPEND}
!x11-drivers/synaptics
x11-base/xorg-server
x11-proto/inputproto
>=sys-apps/sed-4"
evdev-input_check() {
# Check kernel config for required event interface support (either
# built-in or as a module. Bug #134309.
ebegin "Checking kernel config for event device support"
linux_chkconfig_present INPUT_EVDEV
eend $?
if [[ $? -ne 0 ]] ; then
ewarn "Synaptics driver requires event interface support."
ewarn "Please enable the event interface in your kernel config."
ewarn "The option can be found at:"
ewarn
ewarn " Device Drivers"
ewarn " Input device support"
ewarn " -*- Generic input layer"
ewarn " <*> Event interface"
ewarn
ewarn "Then rebuild the kernel or install the module."
epause 5
fi
}
pkg_setup() {
linux-info_pkg_setup
evdev-input_check
}
src_unpack() {
x-modular_unpack_source
epatch "${FILESDIR}/0.99.2-fdi-comments.patch"
}
src_install() {
DOCS="INSTALL NEWS TODO README"
x-modular_src_install
# Stupid new daemon, didn't work for me because of shm issues
newinitd "${FILESDIR}"/rc.init syndaemon
newconfd "${FILESDIR}"/rc.conf syndaemon
if use hal ; then
insinto /usr/share/hal/fdi/policy/10osvendor
doins "${S}"/fdi/11-x11-synaptics.fdi
fi
}
pkg_postinst() {
einfo "Synaptics settings are now stored in: "
einfo "/usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi"
ewarn "You need to migrate your settings and clear them from xorg.conf"
}
|
|