blob: df4fee32b87cabb33ae1829253e3150e14812ad2 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/efont-unicode/efont-unicode-0.4.1.ebuild,v 1.7 2005/02/10 08:35:26 usata Exp $
IUSE=""
MY_P="${PN}-bdf-${PV}"
DESCRIPTION="The /efont/ Unicode Bitmap Fonts"
HOMEPAGE="http://openlab.jp/efont/unicode/"
SRC_URI="http://openlab.jp/efont/dist/unicode-bdf/${MY_P}.tar.bz2"
# naga10 has free-noncomm license
LICENSE="public-domain BAEKMUK X11 as-is"
SLOT="0"
KEYWORDS="x86 alpha ~sparc ~ppc ~amd64"
DEPEND="virtual/x11"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
FONTDIR="/usr/share/fonts/efont-unicode"
src_compile () {
for i in *.bdf ; do
echo "Converting $i into ${i/bdf/pcf} ..."
/usr/X11R6/bin/bdftopcf -o ${i/bdf/pcf} ${i} || die
echo "Compressing ${i/bdf/pcf} ..."
gzip -9 ${i/bdf/pcf} || die
done
}
src_install () {
insinto ${FONTDIR}
doins *.pcf.gz || die
dodoc README* COPYRIGHT ChangeLog INSTALL
dohtml List.html
/usr/X11R6/bin/mkfontdir ${D}${FONTDIR}
}
pkg_postinst() {
einfo
einfo "You need to add following line into 'Section \"Files\"' in"
einfo "XF86Config and reboot X Window System, to use these fonts."
einfo
einfo "\t FontPath \"${FONTDIR}\""
einfo
}
pkg_postrm(){
einfo
einfo "You need to remove following line from 'Section \"Files\"' in"
einfo "XF86Config, to unmerge this package completely."
einfo
einfo "\t FontPath \"${FONTDIR}\""
einfo
}
|