blob: a57f9eef71e0fdbaa533e89571c8f2424010e831 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/twmoefonts/twmoefonts-0.1.ebuild,v 1.4 2004/02/22 21:15:34 agriffis Exp $
IUSE=""
DESCRIPTION="Standard tranditional Chinese fonts made by Minister of Education (MOE), Republic of China."
SRC_URI="ftp://ftp.ncu.edu.tw/FreeBSD/distfiles/zh-moettf/moe_kai.ttf
ftp://ftp.ncu.edu.tw/FreeBSD/distfiles/zh-moettf/moe_sung.ttf"
HOMEPAGE="" # Unable to find homepage
LICENSE="public-domain"
SLOT="0"
KEYWORDS="x86 ~sparc"
DEPEND="x11-misc/ttmkfdir"
RDEPEND="virtual/glibc"
src_unpack() {
mkdir ${WORKDIR}/${P}
cp ${DISTDIR}/moe_kai.ttf ${WORKDIR}/${P}/moe_kai.ttf
cp ${DISTDIR}/moe_sung.ttf ${WORKDIR}/${P}/moe_sung.ttf
}
src_install() {
insopts -m0644
insinto /usr/share/fonts/ttf/zh_TW
doins *.ttf
if test -r /usr/share/fonts/ttf/zh_TW/fonts.scale; then
tail +2 /usr/share/fonts/ttf/zh_TW/fonts.scale >> tmp
tail +2 ${FILESDIR}/TW-fonts.scale >> tmp
echo $(sort -u tmp | wc -l) > newfont.scale
sort -u tmp >> newfont.scale
newins newfont.scale fonts.scale
else
newins ${FILESDIR}/TW-fonts.scale fonts.scale
fi
}
pkg_postinst() {
echo ">>> Making big5 font dirs..."
cd /usr/share/fonts/ttf/zh_TW
echo ">>> Creating fonts.dir info"
mkfontdir -e /usr/X11R6/lib/X11/fonts/encodings/large \
-e /usr/X11R6/lib/X11/fonts/encodings
echo ">>> Make sure X knows about these font directories!"
if ( `grep -e "^.*FontPath.*\"/usr/share/fonts/ttf/zh_TW/\"" /etc/X11/XF86Config -q` ); then
echo "Font path for big5 fonts is listed in /etc/X11/XF86Config."
else
echo ">>> You must add /usr/share/fonts/ttf/zh_TW to your font path"
echo ">>> to be able to use your new Big5 fonts."
fi
echo ">>> Restart font server for changes to take effect."
}
|