diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2014-03-25 14:40:07 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2014-03-25 14:40:07 +0000 |
commit | f52e0e04f42ad31cdd67dd2d1cfb1b378df403b2 (patch) | |
tree | 66fbcf29e1cdae4261a364f024a115a5a9ecb8af /x11-drivers/xf86-input-synaptics | |
parent | Fix configure.in error when sourcing config.site. (diff) | |
download | gentoo-2-f52e0e04f42ad31cdd67dd2d1cfb1b378df403b2.tar.gz gentoo-2-f52e0e04f42ad31cdd67dd2d1cfb1b378df403b2.tar.bz2 gentoo-2-f52e0e04f42ad31cdd67dd2d1cfb1b378df403b2.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
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.7.4.ebuild | 38 |
2 files changed, 45 insertions, 1 deletions
diff --git a/x11-drivers/xf86-input-synaptics/ChangeLog b/x11-drivers/xf86-input-synaptics/ChangeLog index e8b707f48b6f..fd050af1d08a 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-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.97 2014/01/26 19:49:57 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-synaptics/ChangeLog,v 1.98 2014/03/25 14:40:07 chithanh Exp $ + +*xf86-input-synaptics-1.7.4 (25 Mar 2014) + + 25 Mar 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + +xf86-input-synaptics-1.7.4.ebuild: + Version bump. *xf86-input-synaptics-1.7.3 (26 Jan 2014) diff --git a/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.7.4.ebuild b/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.7.4.ebuild new file mode 100644 index 000000000000..d103e37c8186 --- /dev/null +++ b/x11-drivers/xf86-input-synaptics/xf86-input-synaptics-1.7.4.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 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.7.4.ebuild,v 1.1 2014/03/25 14:40:07 chithanh Exp $ + +EAPI=5 + +inherit linux-info xorg-2 + +DESCRIPTION="Driver for Synaptics touchpads" +HOMEPAGE="http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/" + +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND="sys-libs/mtdev + >=x11-base/xorg-server-1.12 + >=x11-libs/libXi-1.2 + >=x11-libs/libXtst-1.1.0" +DEPEND="${RDEPEND} + >=sys-kernel/linux-headers-2.6.37 + >=x11-proto/inputproto-2.1.99.3 + >=x11-proto/recordproto-1.14" + +DOCS=( "README" ) + +pkg_pretend() { + linux-info_pkg_setup + # Just a friendly warning + if ! linux_config_exists \ + || ! 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 +} |