diff options
author | 2009-12-15 11:34:49 +0000 | |
---|---|---|
committer | 2009-12-15 11:34:49 +0000 | |
commit | f085b924ac8916d8ac127fa226257efed73db746 (patch) | |
tree | ca31803eea6072a86ecbd7c11e2019f9ace5b53e /x11-drivers/xf86-input-synaptics | |
parent | Initial commit. (diff) | |
download | gentoo-2-f085b924ac8916d8ac127fa226257efed73db746.tar.gz gentoo-2-f085b924ac8916d8ac127fa226257efed73db746.tar.bz2 gentoo-2-f085b924ac8916d8ac127fa226257efed73db746.zip |
Version bump.
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers/xf86-input-synaptics')
-rw-r--r-- | x11-drivers/xf86-input-synaptics/ChangeLog | 8 | ||||
-rw-r--r-- | x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.1.ebuild | 53 |
2 files changed, 60 insertions, 1 deletions
diff --git a/x11-drivers/xf86-input-synaptics/ChangeLog b/x11-drivers/xf86-input-synaptics/ChangeLog index 943826e2ac85..55f5b3636733 100644 --- a/x11-drivers/xf86-input-synaptics/ChangeLog +++ b/x11-drivers/xf86-input-synaptics/ChangeLog @@ -1,6 +1,12 @@ # 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.37 2009/12/14 16:00:37 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.38 2009/12/15 11:34:49 scarabeus Exp $ + +*xf86-input-synaptics-1.2.1 (15 Dec 2009) + + 15 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org> + +xf86-input-synaptics-1.2.1.ebuild: + Version bump. 14 Dec 2009; Jeremy Olexa <darkside@gentoo.org> xf86-input-synaptics-1.2.0.ebuild: diff --git a/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.1.ebuild b/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.1.ebuild new file mode 100644 index 000000000000..74cd3642f734 --- /dev/null +++ b/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.2.1.ebuild @@ -0,0 +1,53 @@ +# 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-1.2.1.ebuild,v 1.1 2009/12/15 11:34:49 scarabeus Exp $ + +inherit linux-info x-modular + +DESCRIPTION="Driver for Synaptics touchpads" +HOMEPAGE="http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="hal" + +RDEPEND=" + >=x11-base/xorg-server-1.6 + >=x11-libs/libXi-1.2 + x11-libs/libXtst + hal? ( sys-apps/hal )" +DEPEND="${RDEPEND} + x11-proto/inputproto + >=sys-apps/sed-4" + +src_install() { + DOCS="INSTALL TODO README" + x-modular_src_install + + if use hal ; then + insinto /usr/share/hal/fdi/policy/10osvendor + doins "${S}"/fdi/11-x11-synaptics.fdi + fi +} + +pkg_postinst() { + x-modular_pkg_postinst + # Just a friendly warning + if linux_config_exists; then + if ! linux_chkconfig_present INPUT_EVDEV; then + echo + ewarn "This driver requires event interface support in your kernel" + ewarn " Device Drivers --->" + ewarn " Input device support --->" + ewarn " <*> Event interface" + echo + fi + fi + if use hal ; then + elog "If you want to modify Synaptics settings, please create an fdi file in:" + elog "/etc/hal/fdi/policy/" + echo + ewarn "The current default are set by :" + ewarn "/usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi" + ewarn "You can use this file for inspiration, but DO NOT EDIT IT directly." + fi +} |