x11-drivers/xf86-input-mtrack: version bump to 0.4.1
authorGianguido Sora <g.sora4@gmail.com>
Tue, 14 Feb 2017 10:41:55 +0000 (11:41 +0100)
committerPatrice Clement <monsieurp@gentoo.org>
Sun, 26 Mar 2017 10:12:21 +0000 (12:12 +0200)
BlueDragonX doesn't actively develop this driver anymore, the new codebase is
maintained aton https://github.com/p2rkw/xf86-input-mtrack.

Package-Manager: portage-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/3964

x11-drivers/xf86-input-mtrack/Manifest
x11-drivers/xf86-input-mtrack/xf86-input-mtrack-0.4.1.ebuild [new file with mode: 0644]

index d00a56a1b642d0e2758b15a66dbfcb6a7498224c..603dd2ee7eb902344b87940db835b1ce02c75a5b 100644 (file)
@@ -1,2 +1,3 @@
 DIST xf86-input-mtrack-0.3.0.tar.gz 35826 SHA256 db509f64fff01ae77e1393a8461df5cbfd60e5bba45f5e9fb49a83fd0e6f999c SHA512 68422f04ce0b73473cbb4dc7e920dedfce2c91ece1ee59e84dc7f7be5d8e77a2c9b2284dbaefcb0b08ee14868e204c5841fd05320129ec56b33e6ee352c04688 WHIRLPOOL 953abd0200610be3d5ee7d93743d95166bfd5776be2534a83170ec77e3af4a43b140a9d86c78f0ef97873f55f52853a24bb1a0a2625afa94fb744705683ba86e
 DIST xf86-input-mtrack-0.3.1.tar.gz 370599 SHA256 bf972406d4d0fba1dec22ae3dbc1bbaee96763ee3457bfc57d64ffd99e6c6c10 SHA512 b8615970092138a7d3670a9783ac29bd57e8f86312af722e6439ef55ca5812a33bbf8460adda1931699084e8a56601c02f307d375e54723857a47f934718a448 WHIRLPOOL d9a3318e9585aaa88b5207a99bf8a3f3c60aa7f6bdbc694c6d150d569d86d2d8d0c2af2439224f23b376b9867e8ef39190778a466d22117fb0fe2605330947cf
+DIST xf86-input-mtrack-0.4.1.tar.gz 4011733 SHA256 d66324901228704adcba0ec4edc0f0d59b0088b9ec0bdf00971000ad478b16b0 SHA512 797b4b336cfea19c5f26b06c5a8fe45aef3d024f915777db55c2e4b59a674b92953724354a2d7f8073dba629061d38a324157f9ff35ccc661c4d589695ea0a99 WHIRLPOOL 66a9a58d092b81ea7e50fc4f7abc407df9c52e921b745294f604404ee8e295c9c1afa6a5583d52e553195517e5bd84c4044a7bacace38f4ef18b0a0607b8ce63
diff --git a/x11-drivers/xf86-input-mtrack/xf86-input-mtrack-0.4.1.ebuild b/x11-drivers/xf86-input-mtrack/xf86-input-mtrack-0.4.1.ebuild
new file mode 100644 (file)
index 0000000..fa3e020
--- /dev/null
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit vcs-snapshot
+
+DESCRIPTION="Xorg Driver for Multitouch Trackpads"
+HOMEPAGE="https://github.com/p2rkw/xf86-input-mtrack"
+SRC_URI="https://github.com/p2rkw/xf86-input-mtrack/tarball/v${PV/_/-} -> ${P}.tar.gz"
+IUSE="debug"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+RDEPEND="${RDEPEND}
+       >=sys-libs/mtdev-1.0"
+DEPEND="${DEPEND}
+       >=sys-libs/mtdev-1.0
+       x11-proto/randrproto
+       x11-proto/videoproto
+       x11-proto/xineramaproto"
+
+DOCS=( "README.md" )
+PATCHES=( "${FILESDIR}"/${PN}-0.2.0-drop-mtrack-test.patch )
+
+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
+}