diff options
author | Andreas Kinzler <akinzler@gmx.de> | 2017-01-29 10:57:46 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2017-01-29 11:00:14 -0800 |
commit | c5441e589fb9caa3f13031002d1bdb66c1de03dc (patch) | |
tree | 96fad6acb4e3cebef5cb463e6051f66e53ed6ca2 /x11-drivers | |
parent | x11-drivers/xf86-input-vmmouse: Add live ebuild. (diff) | |
download | gentoo-c5441e589fb9caa3f13031002d1bdb66c1de03dc.tar.gz gentoo-c5441e589fb9caa3f13031002d1bdb66c1de03dc.tar.bz2 gentoo-c5441e589fb9caa3f13031002d1bdb66c1de03dc.zip |
x11-drivers/xf86-input-vmmouse: Fix udev rule installation.
Bug: https://bugs.gentoo.org/565838
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-13.1.0-r1.ebuild | 31 | ||||
-rw-r--r-- | x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-13.1.0-r1.ebuild b/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-13.1.0-r1.ebuild new file mode 100644 index 000000000000..780b4ed732a6 --- /dev/null +++ b/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-13.1.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit xorg-2 + +DESCRIPTION="VMWare mouse input driver" +IUSE="" +KEYWORDS="~amd64 ~x86 ~amd64-fbsd ~x86-fbsd" + +RDEPEND="" +DEPEND="${RDEPEND} + x11-proto/randrproto" + +pkg_setup() { + XORG_CONFIGURE_OPTIONS=( + --with-hal-bin-dir=/punt + --with-hal-callouts-dir=/punt + --with-hal-fdi-dir=/punt + --with-udev-rules-dir=/lib/udev/rules.d + ) + + xorg-2_pkg_setup +} + +src_install() { + xorg-2_src_install + rm -rf "${ED}"/punt +} diff --git a/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild b/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild index 942951afd8ea..a478bb7a3f0b 100644 --- a/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild +++ b/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild @@ -19,6 +19,7 @@ pkg_setup() { --with-hal-bin-dir=/punt --with-hal-callouts-dir=/punt --with-hal-fdi-dir=/punt + --with-udev-rules-dir=/lib/udev/rules.d ) xorg-2_pkg_setup |