aboutsummaryrefslogtreecommitdiffstats
path: root/chinese/arphicttf/pkg-install
diff options
context:
space:
mode:
authorkeith <keith@FreeBSD.org>2000-12-08 17:01:33 +0800
committerkeith <keith@FreeBSD.org>2000-12-08 17:01:33 +0800
commit7d6543498b718f587ff967ca8ecd6ff108e37ab3 (patch)
tree889d94f060df7e87751538d2480f5461dccecda4 /chinese/arphicttf/pkg-install
parentfe57e70eef202cd7fb9480ffc6e0337755fd8d3c (diff)
downloadfreebsd-ports-gnome-7d6543498b718f587ff967ca8ecd6ff108e37ab3.tar.gz
freebsd-ports-gnome-7d6543498b718f587ff967ca8ecd6ff108e37ab3.tar.zst
freebsd-ports-gnome-7d6543498b718f587ff967ca8ecd6ff108e37ab3.zip
CJK -> WANT_CJK
GS6 -> WANT_GS6 XTT -> WANT_X According to bsd.gnome.mk's logic.
Diffstat (limited to 'chinese/arphicttf/pkg-install')
-rw-r--r--chinese/arphicttf/pkg-install8
1 files changed, 4 insertions, 4 deletions
diff --git a/chinese/arphicttf/pkg-install b/chinese/arphicttf/pkg-install
index c1d5fa4f208e..35212ea489b7 100644
--- a/chinese/arphicttf/pkg-install
+++ b/chinese/arphicttf/pkg-install
@@ -13,7 +13,7 @@ FONTS="bkai00mp.ttf bsmi00lp.ttf gbsn00lp.ttf gkai00mp.ttf"
DEFAULTMING="bsmi00lp.ttf gbsn00lp.ttf"
DEFAULTKAI="bkai00mp.ttf gkai00mp.ttf"
-[ "X$XTT" = "X" ] && XTT=YES
+[ "X$WANT_X" = "X" ] && WANT_X=YES
if [ ! -x $TTFM ]; then
echo "$TTFM not found!"
@@ -22,11 +22,11 @@ fi
rm -f $FONTDIR/$PKGNAME
-if [ "$CJK" = "YES" -o "$CJK" = "yes" ]; then
+if [ "$WANT_CJK" = "YES" -o "$WANT_CJK" = "yes" ]; then
# There's no CJK module now.
fi
-if [ "$GS6" = "YES" -o "$GS6" = "yes" ]; then
+if [ "$WANT_GS6" = "YES" -o "$WANT_GS6" = "yes" ]; then
for f in $FONTS; do
$TTFM --add ghostscript6 $FONTDIR/$f
done
@@ -39,7 +39,7 @@ if [ "$GS6" = "YES" -o "$GS6" = "yes" ]; then
echo "ghostscript6" >> $FONTDIR/$PKGNAME
fi
-if [ "$XTT" = "YES" -o "$XTT" = "yes" ]; then
+if [ "$WANT_X" = "YES" -o "$WANT_X" = "yes" ]; then
for f in $FONTS; do
$TTFM --add xttfm $FONTDIR/$f
done