diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2016-03-19 17:18:00 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2016-03-19 22:39:38 +0100 |
commit | 0b107d3f0a6cece5308a4c836abeafe3b97c56be (patch) | |
tree | fa1adcc6e1785a001b16cb84ec173a28a59d0667 /app-text/writerperfect/writerperfect-0.9.5.ebuild | |
parent | media-libs/libpagemaker: 0.0.3 version bump (diff) | |
download | gentoo-0b107d3f0a6cece5308a4c836abeafe3b97c56be.tar.gz gentoo-0b107d3f0a6cece5308a4c836abeafe3b97c56be.tar.bz2 gentoo-0b107d3f0a6cece5308a4c836abeafe3b97c56be.zip |
app-text/writerperfect: version bump to 0.9.5, rekeyword
Package-Manager: portage-2.2.27
Diffstat (limited to 'app-text/writerperfect/writerperfect-0.9.5.ebuild')
-rw-r--r-- | app-text/writerperfect/writerperfect-0.9.5.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app-text/writerperfect/writerperfect-0.9.5.ebuild b/app-text/writerperfect/writerperfect-0.9.5.ebuild new file mode 100644 index 000000000000..de596c43e51f --- /dev/null +++ b/app-text/writerperfect/writerperfect-0.9.5.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Various formats to Open document format converter" +HOMEPAGE="http://libwpd.sf.net" +SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz" + +LICENSE="|| ( LGPL-2.1 MPL-2.0 )" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-linux ~x86-solaris" +IUSE="abiword +cdr debug ebook freehand gsf keynote +mspub +mwaw pagemaker +visio +wpd +wpg +wps" + +# FIXME: libepubgen, libeot, librvngabw +RDEPEND=" + =app-text/libodfgen-0.1* + >=dev-libs/librevenge-0.0.1 + abiword? ( =app-text/libabw-0.1* ) + cdr? ( =media-libs/libcdr-0.1* ) + ebook? ( =app-text/libebook-0.1* ) + freehand? ( =media-libs/libfreehand-0.1* ) + gsf? ( gnome-extra/libgsf ) + keynote? ( =app-text/libetonyek-0.1* ) + mspub? ( =app-text/libmspub-0.1* ) + mwaw? ( =app-text/libmwaw-0.3* ) + pagemaker? ( media-libs/libpagemaker ) + visio? ( =media-libs/libvisio-0.1* ) + wpd? ( app-text/libwpd:0.10 ) + wpg? ( =app-text/libwpg-0.3* ) + wps? ( =app-text/libwps-0.4* ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +src_configure() { + econf \ + --disable-werror \ + $(use_enable debug) \ + $(use_with abiword libabw) \ + $(use_with cdr libcdr) \ + $(use_with ebook libebook) \ + $(use_with freehand libfreehand) \ + $(use_with gsf libgsf) \ + $(use_with keynote libetonyek) \ + $(use_with mspub libmspub) \ + $(use_with mwaw libmwaw) \ + $(use_with pagemaker libpagemaker) \ + $(use_with visio libvisio) \ + $(use_with wpd libwpd) \ + $(use_with wpg libwpg) \ + $(use_with wps libwps) +} |