This perl module is for using MONTA METHOD on web contents. 'MONTA METHOD' is TV of Japan and a popular presentation technique. Converted contents and reveal it with some action. WWW: http://search.cpan.org/dist/Acme-Monta/ ' title='Atom feed' href='http://tfcis.org/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/atom/chinese/wangttf/pkg-install?h=gnome-3.24' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/chinese/wangttf/pkg-install
blob: 5bbd84f0388cb85b787baaf0b22fee0d398ff709 (plain) (blame)
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
#!/bin/sh

if [ "$2" = "PRE-INSTALL" ]; then
  exit 0
fi

PKGNAME=$1
PREFIX=${PKG_PREFIX}
TTFM=${PREFIX}/bin/ttfm.sh

# No default kai & ming for wangttf.
FONTDIR=${PREFIX}/share/fonts/TrueType
FONTS="wcl-01.ttf wcl-02.ttf wcl-03.ttf wcl-04.ttf wcl-05.ttf \
       wcl-06.ttf wcl-07.ttf wcl-08.ttf wcl-09.ttf wcl-10.ttf"

if [ ! -x $TTFM ]; then
    echo "$TTFM not found!"
    exit 1
fi

rm -f $FONTDIR/$PKGNAME

if [ "X$WANT_CJK" != "X" ]; then
    # There's no CJK module now.
fi

if [ "X$WANT_GS6" != "X" ]; then
    for f in $FONTS; do
        $TTFM --add ghostscript6 $FONTDIR/$f
    done
    for f in $DEFAULTMING; do
        $TTFM --setdefault ghostscript6 $FONTDIR/$f
    done
    for f in $DEFAULTKAI; do
        $TTFM --setdefault_kai ghostscript6 $FONTDIR/$f
    done
    echo "ghostscript6" >> $FONTDIR/$PKGNAME
fi

if [ "X$WITHOUT_X" = "X" ]; then
    for f in $FONTS; do
        $TTFM --add xttfm $FONTDIR/$f
    done
    for f in $DEFAULTMING; do
        $TTFM --setdefault xttfm $FONTDIR/$f
    done
    for f in $DEFAULTKAI; do
        $TTFM --setdefault_kai xttfm $FONTDIR/$f
    done
    echo "xttfm" >> $FONTDIR/$PKGNAME
fi

exit 0