Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/catdoc/
Date: Sun, 01 Mar 2020 21:21:51
Message-Id: 1583097703.a16eb8a24d3868f97f149633bc49b3b3f336479b.slyfox@gentoo
1 commit: a16eb8a24d3868f97f149633bc49b3b3f336479b
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 1 21:21:35 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 1 21:21:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a16eb8a2
7
8 app-text/catdoc: drop old
9
10 Package-Manager: Portage-2.3.88, Repoman-2.3.20
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 app-text/catdoc/catdoc-0.95.ebuild | 50 --------------------------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/app-text/catdoc/catdoc-0.95.ebuild b/app-text/catdoc/catdoc-0.95.ebuild
17 deleted file mode 100644
18 index 24c2ed8e403..00000000000
19 --- a/app-text/catdoc/catdoc-0.95.ebuild
20 +++ /dev/null
21 @@ -1,50 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DESCRIPTION="Converter for Microsoft Word, Excel, PowerPoint and RTF files to text"
28 -HOMEPAGE="http://www.wagner.pp.ru/~vitus/software/catdoc/"
29 -SRC_URI="http://ftp.wagner.pp.ru/pub/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
34 -IUSE="tk"
35 -
36 -DEPEND="tk? ( >=dev-lang/tk-8.1 )"
37 -
38 -DOCS="CODING.STD NEWS README TODO"
39 -# CREDITS missing by accident in catdoc-0.95
40 -
41 -PATCHES=(
42 - "${FILESDIR}/${P}-parallel-make.patch"
43 - )
44 -
45 -src_prepare() {
46 - default
47 -
48 - # Fix for case-insensitive filesystems
49 - echo ".PHONY: all install clean distclean dist" >> Makefile.in || die
50 -
51 - mv configure.{in,ac} || die
52 -}
53 -
54 -src_configure() {
55 - econf --with-install-root="${D}" \
56 - $(use_with tk wish "${EPREFIX}"/usr/bin/wish) \
57 - $(use_enable tk wordview)
58 -}
59 -
60 -src_compile() {
61 - emake LIB_DIR="${EPREFIX}"/usr/share/catdoc
62 -}
63 -
64 -src_install() {
65 - default
66 -
67 - if [[ -e ${ED}/usr/bin/xls2csv ]]; then
68 - einfo "Renaming xls2csv to xls2csv-${PN} because of bug 314657."
69 - mv -vf "${ED}"/usr/bin/xls2csv "${ED}"/usr/bin/xls2csv-${PN} || die
70 - fi
71 -}