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 1E8A91382C5 for ; Sat, 22 May 2021 12:02:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C21BE0844; Sat, 22 May 2021 12:02:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 35958E0844 for ; Sat, 22 May 2021 12:02:40 +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 4F756340CC4 for ; Sat, 22 May 2021 12:02:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF62775B for ; Sat, 22 May 2021 12:02:37 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1621684820.0bdbc494bfd7c380dd729f3c76eb40c56dab8b4c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/mlterm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/mlterm/mlterm-3.9.1.ebuild X-VCS-Directories: x11-terms/mlterm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0bdbc494bfd7c380dd729f3c76eb40c56dab8b4c X-VCS-Branch: master Date: Sat, 22 May 2021 12:02:37 +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: 22bf71a2-a48d-47b0-8762-fd5fa6b8f772 X-Archives-Hash: be2300fa5158f37fefe4553b0d4ddb37 commit: 0bdbc494bfd7c380dd729f3c76eb40c56dab8b4c Author: Aisha Tammy aisha cc> AuthorDate: Sat Feb 6 19:39:43 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 22 12:00:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bdbc494 x11-terms/mlterm: drop optional gtk2 support Bug: https://bugs.gentoo.org/769029 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Aisha Tammy aisha.cc> Closes: https://github.com/gentoo/gentoo/pull/19353 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-terms/mlterm/mlterm-3.9.1.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/x11-terms/mlterm/mlterm-3.9.1.ebuild b/x11-terms/mlterm/mlterm-3.9.1.ebuild index e92e036f1ff..b9a346d7cc1 100644 --- a/x11-terms/mlterm/mlterm-3.9.1.ebuild +++ b/x11-terms/mlterm/mlterm-3.9.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -12,8 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="bidi brltty cairo canna debug fbcon fcitx freewnn gtk gtk2 harfbuzz ibus libssh2 m17n-lib nls regis scim skk static-libs uim utempter wayland xft" -REQUIRED_USE="gtk2? ( gtk )" +IUSE="bidi brltty cairo canna debug fbcon fcitx freewnn gtk harfbuzz ibus libssh2 m17n-lib nls regis scim skk static-libs uim utempter wayland xft" RDEPEND="x11-libs/libICE x11-libs/libSM @@ -25,10 +24,7 @@ RDEPEND="x11-libs/libICE fbcon? ( media-fonts/unifont ) fcitx? ( app-i18n/fcitx ) freewnn? ( app-i18n/freewnn ) - gtk? ( - gtk2? ( x11-libs/gtk+:2 ) - !gtk2? ( x11-libs/gtk+:3 ) - ) + gtk? ( x11-libs/gtk+:3 ) harfbuzz? ( media-libs/harfbuzz[truetype(+)] ) ibus? ( app-i18n/ibus ) libssh2? ( net-libs/libssh2 ) @@ -96,11 +92,13 @@ src_configure() { local tools="mlclient,mlcc,mlfc,mlmenu,${PN}-zoom" if use gtk; then myconf+=( - $(use_with gtk gtk $(usex gtk2 2.0 3.0)) + --with-gtk=3.0 --with-imagelib=gdk-pixbuf ) scrollbars+=",pixmap_engine" tools+=",mlconfig,mlimgloader" + else + myconf+=( --without-gtk ) fi if use regis; then tools+=",registobmp"