From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8DB9138350 for ; Sun, 1 Mar 2020 21:21:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1667E07F1; Sun, 1 Mar 2020 21:21:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB368E07F1 for ; Sun, 1 Mar 2020 21:21:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ADE5834F267 for ; Sun, 1 Mar 2020 21:21:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 246BC148 for ; Sun, 1 Mar 2020 21:21:48 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1583097703.a16eb8a24d3868f97f149633bc49b3b3f336479b.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/catdoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/catdoc/catdoc-0.95.ebuild X-VCS-Directories: app-text/catdoc/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: a16eb8a24d3868f97f149633bc49b3b3f336479b X-VCS-Branch: master Date: Sun, 1 Mar 2020 21:21:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6fc77c63-c085-42ba-b8ce-4e93cc9ec457 X-Archives-Hash: e2c9b343931bb192fd870bf427779a10 commit: a16eb8a24d3868f97f149633bc49b3b3f336479b Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Mar 1 21:21:35 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Mar 1 21:21:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a16eb8a2 app-text/catdoc: drop old Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: Sergei Trofimovich gentoo.org> app-text/catdoc/catdoc-0.95.ebuild | 50 -------------------------------------- 1 file changed, 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 24c2ed8e403..00000000000 --- 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 -}