blob: b15ef982626a7aa57aa35cce516cbdcd6afd7086 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/hkscs-ming/hkscs-ming-1.0_pre20030919.ebuild,v 1.3 2004/03/28 17:06:24 liquidx Exp $
inherit rpm
RESTRICT="nomirror nostrip"
RPM_V=1.0
DESCRIPTION="Hong Kong SAR Government Official Reference Chinese Font that implements ISO10646 and HKSCS-2001"
HOMEPAGE="http://www.info.gov.hk/digital21/eng/hkscs/hkscs_iso.html"
SRC_URI="http://www.info.gov.hk/digital21/chi/hkscs/download/linux_redhat/setup.bin"
LICENSE="HKSCS"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=""
S=${WORKDIR}
src_unpack() {
# complicated and convoluted unpack procedure
LINENUMBER=237
cd ${S}; tail -n +${LINENUMBER} ${DISTDIR}/${A} | tar zxv || die "unpack failed"
# then we rpm_unpack the fonts package
rpm_unpack ${S}/package_rh/imfont-${RPM_V}-0.i386.rpm
}
src_compile() {
return
}
src_install() {
insinto /usr/share/fonts/ttf/chinese/hkscs
doins usr/share/inputmethod/ming_uni.ttf
/usr/X11R6/bin/mkfontscale ${D}/usr/share/fonts/ttf/chinese/hkscs
/usr/X11R6/bin/mkfontdir ${D}/usr/share/fonts/ttf/chinese/hkscs
}
pkg_postinst() {
einfo "The font name installed is 'Ming(for ISO10646)'. To add make it"
einfo "the default Chinese font, you should add entries to your"
einfo "/etc/fonts/local.conf similar to:"
einfo " "
einfo "<alias>"
einfo " <family>Luxi Sans</family>"
einfo " <family>Bitstream Vera Sans</family>"
einfo " <family>Ming(for ISO10646)</family>"
einfo " <default><family>sans-serif</family></default>"
einfo "</alias>"
einfo " "
}
|