diff options
author | obrien <obrien@FreeBSD.org> | 1996-12-10 09:42:24 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1996-12-10 09:42:24 +0000 |
commit | 3e316c8f82721bf93c4c6b2dec9c88c90d39d53b (patch) | |
tree | 96ffd319b720ec210225f1fd91a6a7cb96543385 /vietnamese/vnterm/files | |
parent | 10afac2958ceead9da03f2866bb637d47c9f6f80 (diff) | |
download | FreeBSD-ports-3e316c8f82721bf93c4c6b2dec9c88c90d39d53b.zip FreeBSD-ports-3e316c8f82721bf93c4c6b2dec9c88c90d39d53b.tar.gz |
Cleaned up helper script.
Diffstat (limited to 'vietnamese/vnterm/files')
-rw-r--r-- | vietnamese/vnterm/files/VNterm.sh.in | 39 |
1 files changed, 15 insertions, 24 deletions
diff --git a/vietnamese/vnterm/files/VNterm.sh.in b/vietnamese/vnterm/files/VNterm.sh.in index 48d56e0..176aa74 100644 --- a/vietnamese/vnterm/files/VNterm.sh.in +++ b/vietnamese/vnterm/files/VNterm.sh.in @@ -31,42 +31,33 @@ check_use_font () } -CF="" -FH=0 +VF="" +FN=0 for i in "$@" ; do - if [ "$i" = "-fh" ]; then - FH=1; continue; + if [ "$i" = "-fn" ]; then + FN=1; continue; fi - if [ "$FH" -eq 1 ]; then - CF=`check_use_font $i` - if [ "$CF" = "" ]; then + if [ "$FN" -eq 1 ]; then + VF=`check_use_font $i` + if [ "$VF" = "" ]; then echo "Specified font doesn't exist in the X Window system." exit 1 fi break fi - FH=0 + FN=0 done -if [ "$CF" = "" ]; then - if [ "$NAME" = "cxterm" ]; then - CF=`check_use_font $GB_FONTS` - if [ "$CF" = "" ]; then - echo "Cannot identify a Vietnamese font in the X Window system." - exit 1 - fi - FH_OPT="-fh $CF" - elif [ "$NAME" = "cxtermb5" ]; then - CF=`check_use_font $BIG5_FONTS` - if [ "$CF" = "" ]; then - echo "Cannot identify a Vietnamese font in the X Window system." - exit 1 - fi - FH_OPT="-fh $CF" +if [ "$VF" = "" ]; then + VF=`check_use_font $VN_FONTS` + if [ "$VF" = "" ]; then + echo "Cannot identify a Vietnamese font in the X Window system." + exit 1 fi + FN_OPT="-fn $VF" fi XENVIRONMENT=$VNTERM_AD export XENVIRONMENT -exec $VNTERM $FH_OPT $* +exec $VNTERM $FN_OPT $* |