diff options
Diffstat (limited to 'x11-misc/mygestures/mygestures-2.0.ebuild')
-rw-r--r-- | x11-misc/mygestures/mygestures-2.0.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/x11-misc/mygestures/mygestures-2.0.ebuild b/x11-misc/mygestures/mygestures-2.0.ebuild new file mode 100644 index 000000000000..ae7d7d86dda4 --- /dev/null +++ b/x11-misc/mygestures/mygestures-2.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Mouse gestures for X" +HOMEPAGE="https://github.com/deters/mygestures" +SRC_URI="https://github.com/deters/mygestures/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/libxml2 + x11-libs/libX11 + x11-libs/libXi + x11-libs/libXrender + x11-libs/libXtst" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto" +BDEPEND="virtual/pkgconfig" + +DOCS=( README.md ) + +src_prepare() { + default + + eautoreconf +} |