Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/convertlit/
Date: Mon, 04 Jun 2018 01:12:45
Message-Id: 1528074740.7676d50d9ace1e052a898b30b80d4205c213bbcb.bman@gentoo
1 commit: 7676d50d9ace1e052a898b30b80d4205c213bbcb
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 18:45:12 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 4 01:12:20 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7676d50d
7
8 app-text/convertlit: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-text/convertlit/convertlit-1.8-r1.ebuild | 48 ----------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/app-text/convertlit/convertlit-1.8-r1.ebuild b/app-text/convertlit/convertlit-1.8-r1.ebuild
16 deleted file mode 100644
17 index 30171f29362..00000000000
18 --- a/app-text/convertlit/convertlit-1.8-r1.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -inherit eutils toolchain-funcs
27 -
28 -MY_P="clit${PV//./}"
29 -
30 -DESCRIPTION="CLit converts MS ebook .lit files to .opf (xml+html+png+jpg)"
31 -HOMEPAGE="http://www.convertlit.com/"
32 -SRC_URI="http://www.convertlit.com/${MY_P}src.zip"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
37 -IUSE=""
38 -
39 -RDEPEND=">=dev-libs/libtommath-0.36-r1"
40 -
41 -DEPEND="${RDEPEND}
42 - app-arch/unzip"
43 -
44 -RDEPEND="${RDEPEND}
45 - !app-text/open_c-lit"
46 -
47 -S=${WORKDIR}
48 -
49 -src_unpack() {
50 - unpack ${A}
51 - cd "${S}"
52 -
53 - epatch "${FILESDIR}/${P}-respectflags.patch"
54 -}
55 -
56 -src_compile() {
57 - tc-export CC
58 -
59 - cd "${S}"/lib
60 - emake || die "make lib failed"
61 - cd "${S}"/${MY_P}
62 - emake || die "make ${MY_P} failed"
63 -}
64 -
65 -src_install() {
66 - dobin ${MY_P}/clit || die
67 - dodoc README
68 -}