Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-vmmouse/
Date: Sun, 29 Jan 2017 19:00:36
Message-Id: 1485716414.81e5a77e95d087c418c08f65a561de9a0cc8541c.mattst88@gentoo
1 commit: 81e5a77e95d087c418c08f65a561de9a0cc8541c
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 18:55:22 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 19:00:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e5a77e
7
8 x11-drivers/xf86-input-vmmouse: Add live ebuild.
9
10 .../xf86-input-vmmouse-9999.ebuild | 30 ++++++++++++++++++++++
11 1 file changed, 30 insertions(+)
12
13 diff --git a/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild b/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild
14 new file mode 100644
15 index 00000000..942951a
16 --- /dev/null
17 +++ b/x11-drivers/xf86-input-vmmouse/xf86-input-vmmouse-9999.ebuild
18 @@ -0,0 +1,30 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=5
24 +
25 +inherit xorg-2
26 +
27 +DESCRIPTION="VMWare mouse input driver"
28 +IUSE=""
29 +KEYWORDS=""
30 +
31 +RDEPEND=""
32 +DEPEND="${RDEPEND}
33 + x11-proto/randrproto"
34 +
35 +pkg_setup() {
36 + XORG_CONFIGURE_OPTIONS=(
37 + --with-hal-bin-dir=/punt
38 + --with-hal-callouts-dir=/punt
39 + --with-hal-fdi-dir=/punt
40 + )
41 +
42 + xorg-2_pkg_setup
43 +}
44 +
45 +src_install() {
46 + xorg-2_src_install
47 + rm -rf "${ED}"/punt
48 +}