blob: f400ceeebaada291af06174e3b1f7e8850a6d508 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/shinonome/shinonome-0.9.11.ebuild,v 1.9 2006/11/26 23:04:38 flameeyes Exp $
inherit font
IUSE=""
DESCRIPTION="Japanese bitmap fonts for X"
SRC_URI="http://openlab.jp/efont/dist/shinonome/${P}.tar.bz2"
HOMEPAGE="http://openlab.jp/efont/shinonome/"
LICENSE="public-domain"
SLOT=0
KEYWORDS="alpha ~amd64 arm ia64 ~ppc ppc64 s390 sh sparc ~x86 ~x86-fbsd"
DEPEND="virtual/libc
|| ( x11-apps/bdftopcf virtual/x11 )
dev-lang/perl
sys-apps/gawk"
RDEPEND=""
FONT_SUFFIX="pcf.gz"
FONT_S=${S}
DOCS="AUTHORS BUGS ChangeLog* DESIGN* INSTALL LICENSE README THANKS TODO"
# Only installs fonts
RESTRICT="strip binchecks"
src_compile(){
econf --with-pcf --without-bdf || die
emake || die
for i in *.pcf ; do
gzip -9 $i
done
}
|