Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htmlrecode/
Date: Wed, 12 Sep 2018 05:28:42
Message-Id: 1536730088.77efd3d130fe4313e2f53c34d5c672f2ceaf4039.asturm@gentoo
1 commit: 77efd3d130fe4313e2f53c34d5c672f2ceaf4039
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Sep 11 18:54:35 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 12 05:28:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77efd3d1
7
8 app-text/htmlrecode: Drop old
9
10 app-text/htmlrecode/htmlrecode-1.3.1.ebuild | 44 -----------------------------
11 1 file changed, 44 deletions(-)
12
13 diff --git a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild b/app-text/htmlrecode/htmlrecode-1.3.1.ebuild
14 deleted file mode 100644
15 index 1174c57d9c7..00000000000
16 --- a/app-text/htmlrecode/htmlrecode-1.3.1.ebuild
17 +++ /dev/null
18 @@ -1,44 +0,0 @@
19 -# Copyright 1999-2018 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=4
23 -
24 -inherit eutils toolchain-funcs
25 -
26 -DESCRIPTION="Recodes HTML file using a new character set"
27 -HOMEPAGE="https://bisqwit.iki.fi/source/htmlrecode.html"
28 -SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2"
29 -
30 -KEYWORDS="~amd64 ~ppc ~x86"
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -IUSE=""
34 -
35 -DEPEND=">=sys-apps/sed-4"
36 -RDEPEND=""
37 -
38 -src_prepare() {
39 - epatch "${FILESDIR}/${P}-ar.patch"
40 - touch .depend argh/.depend
41 -}
42 -
43 -src_configure() {
44 - :
45 -}
46 -
47 -src_compile() {
48 - local makeopts=(
49 - AR="$(tc-getAR)"
50 - CPPDEBUG=
51 - CXX="$(tc-getCXX)"
52 - CXXFLAGS="${CXXFLAGS}"
53 - LDFLAGS="${LDFLAGS}"
54 - )
55 - emake "${makeopts[@]}" -C argh libargh.a
56 - emake "${makeopts[@]}" htmlrecode
57 -}
58 -
59 -src_install() {
60 - dobin htmlrecode
61 - dohtml README.html
62 -}