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 92AD71382C5 for ; Sun, 4 Apr 2021 22:29:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4485E0843; Sun, 4 Apr 2021 22:29:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CF320E0843 for ; Sun, 4 Apr 2021 22:29:35 +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 0694533E362 for ; Sun, 4 Apr 2021 22:29:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63627640 for ; Sun, 4 Apr 2021 22:29:32 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1617575318.f87a29bb1142a6ffb7b68a5e04d11ab339ffeec9.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/xmlcopyeditor/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild X-VCS-Directories: app-editors/xmlcopyeditor/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f87a29bb1142a6ffb7b68a5e04d11ab339ffeec9 X-VCS-Branch: master Date: Sun, 4 Apr 2021 22:29:32 +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: 206f8c39-2c8c-4dc7-9381-fd5c202cb1be X-Archives-Hash: 62f100e513e165af73b748d8b4c92e5d commit: f87a29bb1142a6ffb7b68a5e04d11ab339ffeec9 Author: David Seifert gentoo org> AuthorDate: Sun Apr 4 22:28:38 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Apr 4 22:28:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87a29bb app-editors/xmlcopyeditor: Port to EAPI 7 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> .../xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild b/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild index 6c22d7318ea..740c3a09313 100644 --- a/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild +++ b/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -WX_GTK_VER="3.0" +EAPI=7 +WX_GTK_VER="3.0" inherit autotools wxwidgets xdg DESCRIPTION="XML Copy Editor is a fast, free, validating XML editor" @@ -21,12 +21,10 @@ RDEPEND=" dev-libs/libxslt dev-libs/xerces-c[icu] dev-libs/libpcre - x11-libs/wxGTK:${WX_GTK_VER}[X] -" + x11-libs/wxGTK:${WX_GTK_VER}[X]" DEPEND="${RDEPEND} - dev-libs/boost - dev-util/intltool -" + dev-libs/boost" +BDEPEND="dev-util/intltool" PATCHES=( "${FILESDIR}"/${P}-no-automagic-enchant.patch ) @@ -40,5 +38,7 @@ src_prepare() { src_configure() { setup-wxwidgets unicode - econf $(use_enable nls) + econf \ + --with-wx-config="${WX_CONFIG}" \ + $(use_enable nls) }