summaryrefslogtreecommitdiff
path: root/app-text/wv/wv-1.2.9-r2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-text/wv/wv-1.2.9-r2.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-text/wv/wv-1.2.9-r2.ebuild')
-rw-r--r--app-text/wv/wv-1.2.9-r2.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/app-text/wv/wv-1.2.9-r2.ebuild b/app-text/wv/wv-1.2.9-r2.ebuild
deleted file mode 100644
index e80da09ffb16..000000000000
--- a/app-text/wv/wv-1.2.9-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils autotools
-
-DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable"
-SRC_URI="http://abiword.org/downloads/${PN}/${PV}/${P}.tar.gz"
-HOMEPAGE="http://wvware.sourceforge.net/"
-
-IUSE="tools wmf"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
-SLOT="0"
-LICENSE="GPL-2"
-
-RDEPEND="
- >=dev-libs/glib-2:2
- >=gnome-extra/libgsf-1.13:=
- sys-libs/zlib
- media-libs/libpng:0=
- dev-libs/libxml2:2
- tools? ( app-text/texlive-core
- dev-texlive/texlive-latex )
- wmf? ( >=media-libs/libwmf-0.2.2 )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-PATCHES=( "${FILESDIR}/${P}-format-security.patch" )
-
-src_prepare() {
- default
-
- if ! use tools; then
- sed -i -e '/bin_/d' GNUmakefile.am || die
- sed -i -e '/SUBDIRS/d' GNUmakefile.am || die
- sed -i -e '/\/GNUmakefile/d' configure.ac || die
- sed -i -e '/wv[[:upper:]]/d' configure.ac || die
-
- # automake-1.13 fix, bug #467620
- sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.ac || die
-
- eautoreconf
- fi
-}
-
-src_configure() {
- econf \
- --disable-static \
- $(use_with wmf libwmf)
-}
-
-src_install () {
- default
- prune_libtool_files
-
- rm -f "${ED}"/usr/share/man/man1/wvConvert.1
- if use tools; then
- dosym /usr/share/man/man1/wvWare.1 /usr/share/man/man1/wvConvert.1 || die
- fi
-}