summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2017-01-26 10:04:50 +0200
committerMart Raudsepp <leio@gentoo.org>2017-01-26 12:53:22 +0200
commitc58619c9809e1fc5fba851d28677909f35d848e0 (patch)
tree9438cbf7395bff1bbfd353ca026c431ec641a25e /app-text
parentapp-text/libgxps: Remove old (diff)
downloadgentoo-c58619c9809e1fc5fba851d28677909f35d848e0.tar.gz
gentoo-c58619c9809e1fc5fba851d28677909f35d848e0.tar.bz2
gentoo-c58619c9809e1fc5fba851d28677909f35d848e0.zip
app-text/wv: Remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-text')
-rw-r--r--app-text/wv/wv-1.2.9-r1.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/app-text/wv/wv-1.2.9-r1.ebuild b/app-text/wv/wv-1.2.9-r1.ebuild
deleted file mode 100644
index 57f90791b924..000000000000
--- a/app-text/wv/wv-1.2.9-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-
-inherit eutils autotools multilib
-
-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 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
-SLOT="0"
-LICENSE="GPL-2"
-
-RDEPEND=">=dev-libs/glib-2
- >=gnome-extra/libgsf-1.13
- sys-libs/zlib
- media-libs/libpng
- dev-libs/libxml2
- tools? ( app-text/texlive-core
- dev-texlive/texlive-latex )
- wmf? ( >=media-libs/libwmf-0.2.2 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- 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 $(use_with wmf libwmf)
-}
-
-pkg_preinst() {
- preserve_old_lib /usr/$(get_libdir)/libwv-1.2.so.3
-}
-
-pkg_postinst() {
- preserve_old_lib_notify /usr/$(get_libdir)/libwv-1.2.so.3
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "Installation failed"
- dodoc README NEWS || die
-
- 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
-}