From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 24410158012 for ; Thu, 23 Sep 2021 08:04:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67B81E0961; Thu, 23 Sep 2021 08:04:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28836E0961 for ; Thu, 23 Sep 2021 08:04:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E33AA342DD3 for ; Thu, 23 Sep 2021 08:04:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 416A1CF for ; Thu, 23 Sep 2021 08:04:00 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1632384096.7c4eb99c8a1a889259ca6f421b477081da3d94c5.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/mygestures/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/mygestures/Manifest x11-misc/mygestures/metadata.xml x11-misc/mygestures/mygestures-2.0.ebuild X-VCS-Directories: x11-misc/mygestures/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 7c4eb99c8a1a889259ca6f421b477081da3d94c5 X-VCS-Branch: master Date: Thu, 23 Sep 2021 08:04:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 44a418d0-c882-4f8e-a695-ecaf0d080553 X-Archives-Hash: 9f6b0a51bd55d1831c43d9885f9d5af9 commit: 7c4eb99c8a1a889259ca6f421b477081da3d94c5 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Sep 23 07:54:54 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Sep 23 08:01:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c4eb99c x11-misc/mygestures: initial import with version 2.0 Provides DE-independent generic mouse gestures (execute command, window action, send keypress), can setup gestures for either all windows or per-windowclass/name. Signed-off-by: Ionen Wolkens gentoo.org> x11-misc/mygestures/Manifest | 1 + x11-misc/mygestures/metadata.xml | 11 +++++++++++ x11-misc/mygestures/mygestures-2.0.ebuild | 33 +++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/x11-misc/mygestures/Manifest b/x11-misc/mygestures/Manifest new file mode 100644 index 00000000000..de2cb5f29a5 --- /dev/null +++ b/x11-misc/mygestures/Manifest @@ -0,0 +1 @@ +DIST mygestures-2.0.tar.gz 54613 BLAKE2B e0dbb120e4adf74a0624e5d3acb04a5af4775a84b0b8fdb2df992ed9f0b3de3907b456f9008f7df154956372dbc17acd5c3080e06857c5336e89fb1c08cc98b4 SHA512 eda75e2429b671c5ff15435b3ce3ae78e95069b17f6d2ea0d279c7c100a72e4b6dc4f452f9c003b432266d8d1047cd6ae47dc544e2f1b4f86f02fabe8c70e6dd diff --git a/x11-misc/mygestures/metadata.xml b/x11-misc/mygestures/metadata.xml new file mode 100644 index 00000000000..795ad3ce777 --- /dev/null +++ b/x11-misc/mygestures/metadata.xml @@ -0,0 +1,11 @@ + + + + + ionen@gentoo.org + Ionen Wolkens + + + deters/mygestures + + diff --git a/x11-misc/mygestures/mygestures-2.0.ebuild b/x11-misc/mygestures/mygestures-2.0.ebuild new file mode 100644 index 00000000000..ae7d7d86dda --- /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 +}