blob: 11afa1c901bca3d7f8c8a0833bad9dbfe15f7267 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-mtrack/xf86-input-mtrack-0.1.1.ebuild,v 1.1 2011/05/13 00:22:41 naota Exp $
EAPI=4
XORG_EAUTORECONF=yes
inherit xorg-2
DESCRIPTION="Xorg Driver for Multitouch Trackpads"
HOMEPAGE="https://github.com/BlueDragonX/xf86-input-mtrack"
SRC_URI="http://github.com/BlueDragonX/xf86-input-mtrack/tarball/v${PV/_/-} -> ${P}.tar.gz"
IUSE="debug"
S="${WORKDIR}/BlueDragonX-xf86-input-mtrack-21f273e"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="${RDEPEND}
>=sys-libs/mtdev-1.0"
DEPEND="${DEPEND}
>=sys-libs/mtdev-1.0"
DOCS=( "README" )
PATCHES=( "${FILESDIR}"/${P}-autoconf.patch )
pkg_setup() {
xorg-2_pkg_setup
XORG_CONFIGURE_OPTIONS=(
$(use_enable debug)
)
}
pkg_postinst() {
xorg-2_pkg_postinst
elog
elog "To enable multitouch support add the following lines"
elog "to your xorg.conf:"
elog ""
elog "Section \"InputClass\""
elog " MatchIsTouchpad \"true\""
elog " Identifier \"Touchpads\""
elog " Driver \"mtrack\""
elog "EndSection"
elog
}
|