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 562D61382C5 for ; Wed, 24 Jun 2020 20:39:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FB95E09C8; Wed, 24 Jun 2020 20:39:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 272A5E09C8 for ; Wed, 24 Jun 2020 20:39:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2576534F182 for ; Wed, 24 Jun 2020 20:39:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 038602B0 for ; Wed, 24 Jun 2020 20:39:19 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1593031137.f6ad7d8754c7f4cf9d871d78a191d3ba6f198b64.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xinput_calibrator/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r2.ebuild X-VCS-Directories: x11-apps/xinput_calibrator/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f6ad7d8754c7f4cf9d871d78a191d3ba6f198b64 X-VCS-Branch: master Date: Wed, 24 Jun 2020 20:39:19 +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: d19a497e-f9a3-4130-a400-15ea32971c86 X-Archives-Hash: bb6afffd676ba885ed642307c1b566ce commit: f6ad7d8754c7f4cf9d871d78a191d3ba6f198b64 Author: Matt Turner gentoo org> AuthorDate: Wed Jun 24 20:36:07 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Jun 24 20:38:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6ad7d87 x11-apps/xinput_calibrator: Port to EAPI 7 And drop IUSE=gtk since it depends on gtkmm:2.4. Closes: https://bugs.gentoo.org/421363 Signed-off-by: Matt Turner gentoo.org> ...-0.7.5-r1.ebuild => xinput_calibrator-0.7.5-r2.ebuild} | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r2.ebuild similarity index 71% rename from x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild rename to x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r2.ebuild index 79564888e2c..7a3d3101534 100644 --- a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild +++ b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools-utils flag-o-matic +EAPI=7 +inherit flag-o-matic DESCRIPTION="A generic touchscreen calibration program for X.Org" HOMEPAGE="https://www.freedesktop.org/wiki/Software/xinput_calibrator" @@ -11,21 +11,20 @@ SRC_URI="https://github.com/downloads/tias/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="gtk" +IUSE="" RDEPEND="x11-libs/libX11 x11-libs/libXext x11-libs/libXi - x11-libs/libXrandr - gtk? ( dev-cpp/gtkmm:2.4 )" + x11-libs/libXrandr" DEPEND="${RDEPEND} x11-base/xorg-proto" src_configure() { append-cxxflags -std=c++11 #566594 - local myeconfargs=( - --with-gui=$(use gtk && echo "gtkmm" || echo "x11") + local myconf=( + --with-gui=x11 ) - autotools-utils_src_configure + econf "${myconf[@]}" }