blob: b69e70b53497bbf08108d5f17709c2b1aae95c7d (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit toolchain-funcs
DESCRIPTION="Converts Japanese text between kanji, kana, and romaji"
HOMEPAGE="http://kakasi.namazu.org/"
SRC_URI="http://${PN}.namazu.org/stable/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
IUSE="static-libs"
DOCS=( AUTHORS ChangeLog {,O}NEWS README{,-ja} THANKS TODO doc/{ChangeLog.lib,JISYO,README.lib} )
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
default
einstalldocs
find "${ED}" -name '*.la' -delete || die
use static-libs || find "${ED}" -name '*.a' -delete || die
iconv -f EUC-JP -t UTF-8 doc/${PN}.1 > doc/${PN}.ja.1
doman doc/${PN}.ja.1
}
|