Diff xmlcopyeditor-1.2.1.3-r1 with a xmlcopyeditor-1.3.0.0

/usr/portage/app-editors/xmlcopyeditor/xmlcopyeditor-1.3.0.0.ebuild 2023-10-09 14:52:28.668368329 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
WX_GTK_VER="3.0"
6
WX_GTK_VER="3.0-gtk3"
7 7
inherit autotools wxwidgets xdg
8 8

  
9 9
DESCRIPTION="XML Copy Editor is a fast, free, validating XML editor"
......
12 12

  
13 13
LICENSE="GPL-2"
14 14
SLOT="0"
15
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
15
KEYWORDS="~amd64 -ppc ~x86 ~amd64-linux ~x86-linux"  # -ppc due SSE2 requirement
16 16
IUSE="aqua nls"
17 17

  
18 18
RDEPEND="
19 19
	app-text/aspell
20 20
	dev-libs/libxml2
21 21
	dev-libs/libxslt
22
	dev-libs/xerces-c[icu]
22
	dev-libs/xerces-c[cpu_flags_x86_sse2,icu]
23 23
	dev-libs/libpcre
24 24
	x11-libs/wxGTK:${WX_GTK_VER}[X]"
25 25
DEPEND="${RDEPEND}
26 26
	dev-libs/boost"
27
BDEPEND="dev-util/intltool"
27
BDEPEND="dev-util/intltool
28
	virtual/pkgconfig"
29

  
30
S="${WORKDIR}"/${PN}
28 31

  
29 32
PATCHES=( "${FILESDIR}"/${P}-no-automagic-enchant.patch )
30 33

  
......
39 42
src_configure() {
40 43
	setup-wxwidgets unicode
41 44
	econf \
45
		--with-gtk=3.0 \
42 46
		--with-wx-config="${WX_CONFIG}" \
43 47
		$(use_enable nls)
44 48
}
Thank you!