blob: aa3813fe97d25a07ecf8d995274992a78fff7469 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/kochi-substitute/kochi-substitute-20030809-r3.ebuild,v 1.14 2006/11/26 22:57:20 flameeyes Exp $
inherit font
DESCRIPTION="Kochi Japanese TrueType fonts with Wadalab Fonts"
HOMEPAGE="http://efont.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/efont/5411/${P}.tar.bz2"
LICENSE="free-noncomm"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc-macos ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE=""
S=${WORKDIR}/${PN}-${PV:0:8}
FONT_SUFFIX="ttf"
DOCS="README.ja ChangeLog docs/README"
# Only installs fonts
RESTRICT="strip binchecks"
src_install() {
font_src_install
cd docs
local d
for d in kappa20 k14goth ayu20gothic wadalab shinonome* naga10; do
docinto $d
dodoc $d/*
done
}
|