summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-31 23:08:16 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-31 23:12:39 +0100
commit3948d682b47393d8614bde239cfe0136465a0757 (patch)
tree0ae9031ea940b2d13162912aa004c00129a71715 /app-text/wv
parentnet-libs/ldns: drop 1.8.3-r1, 1.8.3-r2 (diff)
downloadgentoo-3948d682b47393d8614bde239cfe0136465a0757.tar.gz
gentoo-3948d682b47393d8614bde239cfe0136465a0757.tar.bz2
gentoo-3948d682b47393d8614bde239cfe0136465a0757.zip
app-text/wv: drop 1.2.9-r3
Bug: https://bugs.gentoo.org/921570 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'app-text/wv')
-rw-r--r--app-text/wv/wv-1.2.9-r3.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/app-text/wv/wv-1.2.9-r3.ebuild b/app-text/wv/wv-1.2.9-r3.ebuild
deleted file mode 100644
index 2f2c058b2f94..000000000000
--- a/app-text/wv/wv-1.2.9-r3.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Tool for conversion of MSWord doc and rtf files to something readable"
-HOMEPAGE="http://wvware.sourceforge.net/"
-SRC_URI="http://abiword.org/downloads/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
-IUSE="tools wmf"
-
-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}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${P}-format-security.patch
- "${FILESDIR}"/${P}-C99-decls.patch
-)
-
-src_prepare() {
- default
-
- # remove -ansi flag, since it disables POSIX
- # function declarations (bug #874396)
- sed -i -e 's/-ansi//' configure || die
-
- 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
- sed -i -e 's/-ansi//' 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)
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-
- rm -f "${ED}"/usr/share/man/man1/wvConvert.1 || die
- use tools && dosym wvWare.1 /usr/share/man/man1/wvConvert.1
-}