summaryrefslogtreecommitdiff
blob: 79b890dd7eb6a8b0ca9ae02d06d1b93ab5b7afc4 (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
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

DESCRIPTION="A Kanji code converter"
HOMEPAGE="http://www2s.biglobe.ne.jp/~Nori/ruby/"
SRC_URI="mirror://gentoo/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"

S="${WORKDIR}/${PN}"
PATCHES=(
	"${FILESDIR}"/${PN}-gcc3-gentoo.diff
	"${FILESDIR}"/${PN}-exit.diff
	"${FILESDIR}"/${PN}-1.0-fix-build-system.patch
)

src_configure() {
	tc-export CC
}

src_install() {
	dobin kcc
	einstalldocs

	cp -f kcc.jman kcc.1 || die
	doman -i18n=ja kcc.1
}