commit: 7676d50d9ace1e052a898b30b80d4205c213bbcb
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 3 18:45:12 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Jun 4 01:12:20 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7676d50d
app-text/convertlit: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-text/convertlit/convertlit-1.8-r1.ebuild | 48 ----------------------------
1 file changed, 48 deletions(-)
diff --git a/app-text/convertlit/convertlit-1.8-r1.ebuild
b/app-text/convertlit/convertlit-1.8-r1.ebuild
deleted file mode 100644
index 30171f29362..00000000000
--- a/app-text/convertlit/convertlit-1.8-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils toolchain-funcs
-
-MY_P="clit${PV//./}"
-
-DESCRIPTION="CLit converts MS ebook .lit files to .opf (xml+html+png+jpg)"
-HOMEPAGE="http://www.convertlit.com/"
-SRC_URI="http://www.convertlit.com/${MY_P}src.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 x86 ~amd64-fbsd ~amd64-linux
~x86-linux ~ppc-macos"
-IUSE=""
-
-RDEPEND=">=dev-libs/libtommath-0.36-r1"
-
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-RDEPEND="${RDEPEND}
- !app-text/open_c-lit"
-
-S=${WORKDIR}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-respectflags.patch"
-}
-
-src_compile() {
- tc-export CC
-
- cd "${S}"/lib
- emake || die "make lib failed"
- cd "${S}"/${MY_P}
- emake || die "make ${MY_P} failed"
-}
-
-src_install() {
- dobin ${MY_P}/clit || die
- dodoc README
-}