Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/antiword/
Date: Sun, 27 Feb 2022 23:17:04
Message-Id: 1646003782.11e6c664897b8a4304fd075280a54b61fc09b34e.sam@gentoo
1 commit: 11e6c664897b8a4304fd075280a54b61fc09b34e
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 23:16:22 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 23:16:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e6c664
7
8 app-text/antiword: drop 0.37-r1
9
10 Closes: https://bugs.gentoo.org/832261
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-text/antiword/antiword-0.37-r1.ebuild | 50 -------------------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/app-text/antiword/antiword-0.37-r1.ebuild b/app-text/antiword/antiword-0.37-r1.ebuild
17 deleted file mode 100644
18 index b9ae5e10151d..000000000000
19 --- a/app-text/antiword/antiword-0.37-r1.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -
27 -inherit epatch toolchain-funcs
28 -
29 -IUSE="kde"
30 -PATCHVER="r2"
31 -DESCRIPTION="free MS Word reader"
32 -HOMEPAGE="http://www.winfield.demon.nl"
33 -SRC_URI="http://www.winfield.demon.nl/linux/${P}.tar.gz
34 - https://dev.gentoo.org/~grobian/distfiles/${PN}-gentoo-patches-${PATCHVER}.tar.bz2"
35 -
36 -SLOT="0"
37 -LICENSE="GPL-2"
38 -KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
39 -
40 -src_prepare() {
41 - # Makefile is a symlink to Makefile.Linux, avoid that we patch it by
42 - # accident using patch <2.7, see bug #435492
43 - rm Makefile || die
44 -
45 - EPATCH_SUFFIX="patch" epatch "${WORKDIR}/${PN}-gentoo-patches-${PATCHVER}"
46 -
47 - # Re-add convenience symlink, see above
48 - ln -s Makefile.Linux Makefile
49 -
50 - epatch "${FILESDIR}"/${P}-CVE-2014-8123.patch
51 -}
52 -
53 -src_configure() { :; }
54 -
55 -src_compile() {
56 - emake PREFIX="${EPREFIX}" OPT="${CFLAGS}" CC="$(tc-getCC)" LD="$(tc-getCC)" \
57 - LDFLAGS="${LDFLAGS}"
58 -}
59 -
60 -src_install() {
61 - emake -j1 PREFIX="${EPREFIX}" DESTDIR="${D}" global_install
62 -
63 - use kde || rm -f "${ED}"/usr/bin/kantiword
64 -
65 - insinto /usr/share/${PN}/examples
66 - doins Docs/testdoc.doc Docs/antiword.php
67 -
68 - cd Docs
69 - doman antiword.1
70 - dodoc ChangeLog Exmh Emacs FAQ History Netscape QandA ReadMe Mozilla Mutt
71 -}