diff options
author | 2016-02-28 02:16:48 -0600 | |
---|---|---|
committer | 2016-02-28 02:16:48 -0600 | |
commit | 255694be1a6a6e71292b75d66b97b1662b1994a1 (patch) | |
tree | adc41e5245e6333b900e95f016e7e27cb9b50188 /app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3.ebuild | |
parent | net-analyzer/netcat6: keywording arm64 (diff) | |
download | gentoo-255694be1a6a6e71292b75d66b97b1662b1994a1.tar.gz gentoo-255694be1a6a6e71292b75d66b97b1662b1994a1.tar.bz2 gentoo-255694be1a6a6e71292b75d66b97b1662b1994a1.zip |
app-editors/xmlcopyeditor: Version bump. (bug #562998)
Bumped to a version supporting wxGTK 3.0. Removed GuideXML support.
Package-Manager: portage-2.2.27
Signed-off-by: Ryan Hill <rhill@gentoo.org>
Diffstat (limited to 'app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3.ebuild')
-rw-r--r-- | app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3.ebuild b/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3.ebuild new file mode 100644 index 000000000000..c28d341dc274 --- /dev/null +++ b/app-editors/xmlcopyeditor/xmlcopyeditor-1.2.1.3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +WX_GTK_VER="3.0" + +inherit autotools wxwidgets + +DESCRIPTION="XML Copy Editor is a fast, free, validating XML editor" +HOMEPAGE="http://xml-copy-editor.sourceforge.net/" +SRC_URI="mirror://sourceforge/xml-copy-editor/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="aqua nls" + +RDEPEND=" + app-text/aspell + dev-libs/libxml2 + dev-libs/libxslt + dev-libs/xerces-c[icu] + dev-libs/libpcre + !aqua? ( x11-libs/wxGTK:${WX_GTK_VER}[X] ) + aqua? ( x11-libs/wxGTK:${WX_GTK_VER}[aqua] )" +DEPEND="${RDEPEND} + dev-libs/boost + dev-util/intltool" + +DOCS=( AUTHORS ChangeLog README NEWS ) + +src_prepare() { + # bug #440744 + sed -i -e 's/ -Wall -g -fexceptions//g' configure.ac || die + eautoreconf + + need-wxwidgets unicode +} + +src_configure() { + econf $(use_enable nls) +} |