blob: 4b9258115b94bc7881b2c0d5fc86ffa23b183bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Recodes HTML file using a new character set"
HOMEPAGE="https://bisqwit.iki.fi/source/htmlrecode.html"
SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2"
KEYWORDS="~amd64 ~ppc ~x86"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
PATCHES=( "${FILESDIR}/${P}-ar.patch" )
src_prepare() {
touch .depend argh/.depend || die
default
}
src_configure() { :; }
src_compile() {
local makeopts=(
AR="$(tc-getAR)"
CPPDEBUG=
CXX="$(tc-getCXX)"
CXXFLAGS="${CXXFLAGS}"
LDFLAGS="${LDFLAGS}"
)
emake "${makeopts[@]}" -C argh libargh.a
emake "${makeopts[@]}" htmlrecode
}
src_install() {
dobin htmlrecode
dodoc README.html
}
|