forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x11-drivers/xf86-input-mtrack: version bump to 0.4.1
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: gentoo#3964
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
40 changes: 40 additions & 0 deletions
40
x11-drivers/xf86-input-mtrack/xf86-input-mtrack-0.4.1.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |