blob: 1d92748c4512ee2456314da71079cd67ed8b5ef5 (
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/fs-fonts/fs-fonts-0.1_alpha3.ebuild,v 1.7 2006/11/26 22:49:32 flameeyes Exp $
inherit font
IUSE=""
MY_P="${P/_alpha/test}"
DESCRIPTION="Japanese TrueType fonts designed for screen and print"
HOMEPAGE="http://x-tt.sourceforge.jp/fs_fonts/"
SRC_URI="mirror://sourceforge.jp/x-tt/7862/${MY_P}.tar.gz"
KEYWORDS="~amd64 arm ~hppa ia64 ~ppc-macos s390 sh ~x86 ~x86-fbsd"
LICENSE="public-domain"
SLOT=0
S="${WORKDIR}"
FONT_S="${S}"
FONT_SUFFIX="ttf"
DOCS="AUTHORS *.txt THANKS Changes docs/README"
# Only installs fonts
RESTRICT="strip binchecks"
src_install() {
font_src_install
cd docs
for d in kappa20 k14goth mplus_bitmap_fonts shinonome* Oradano kochi-substitute; do
docinto $d
dodoc $d/*
done
}
|