diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-01 21:21:35 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-01 21:21:43 +0000 |
commit | a16eb8a24d3868f97f149633bc49b3b3f336479b (patch) | |
tree | 2bd14ee4ded26d1ef50ed0279547f0a8d2e1ed86 /app-text | |
parent | dev-util/android-studio: Version bump to 3.6.1 (diff) | |
download | gentoo-a16eb8a24d3868f97f149633bc49b3b3f336479b.tar.gz gentoo-a16eb8a24d3868f97f149633bc49b3b3f336479b.tar.bz2 gentoo-a16eb8a24d3868f97f149633bc49b3b3f336479b.zip |
app-text/catdoc: drop old
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/catdoc/catdoc-0.95.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/app-text/catdoc/catdoc-0.95.ebuild b/app-text/catdoc/catdoc-0.95.ebuild deleted file mode 100644 index 24c2ed8e4036..000000000000 --- a/app-text/catdoc/catdoc-0.95.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Converter for Microsoft Word, Excel, PowerPoint and RTF files to text" -HOMEPAGE="http://www.wagner.pp.ru/~vitus/software/catdoc/" -SRC_URI="http://ftp.wagner.pp.ru/pub/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="tk" - -DEPEND="tk? ( >=dev-lang/tk-8.1 )" - -DOCS="CODING.STD NEWS README TODO" -# CREDITS missing by accident in catdoc-0.95 - -PATCHES=( - "${FILESDIR}/${P}-parallel-make.patch" - ) - -src_prepare() { - default - - # Fix for case-insensitive filesystems - echo ".PHONY: all install clean distclean dist" >> Makefile.in || die - - mv configure.{in,ac} || die -} - -src_configure() { - econf --with-install-root="${D}" \ - $(use_with tk wish "${EPREFIX}"/usr/bin/wish) \ - $(use_enable tk wordview) -} - -src_compile() { - emake LIB_DIR="${EPREFIX}"/usr/share/catdoc -} - -src_install() { - default - - if [[ -e ${ED}/usr/bin/xls2csv ]]; then - einfo "Renaming xls2csv to xls2csv-${PN} because of bug 314657." - mv -vf "${ED}"/usr/bin/xls2csv "${ED}"/usr/bin/xls2csv-${PN} || die - fi -} |