diff options
author | David Seifert <soap@gentoo.org> | 2021-04-05 00:28:38 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-04-05 00:28:38 +0200 |
commit | f87a29bb1142a6ffb7b68a5e04d11ab339ffeec9 (patch) | |
tree | 974911d6772d6eea3b3b221fd2984f17f52779ec /app-editors | |
parent | games-util/dfarc: Port to EAPI 7 (diff) | |
download | gentoo-f87a29bb1142a6ffb7b68a5e04d11ab339ffeec9.tar.gz gentoo-f87a29bb1142a6ffb7b68a5e04d11ab339ffeec9.tar.bz2 gentoo-f87a29bb1142a6ffb7b68a5e04d11ab339ffeec9.zip |
app-editors/xmlcopyeditor: Port to EAPI 7
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3-r1.ebuild | 16 |
1 files 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 6c22d7318ea6..740c3a09313e 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) } |