1999-03-08 22:03:33 +00:00
|
|
|
#!/bin/sh
|
1999-09-10 10:10:34 +00:00
|
|
|
PATH=/bin:/usr/bin; export PATH
|
1999-03-08 22:03:33 +00:00
|
|
|
#
|
|
|
|
# Check to see if we have teTeX-0.9 installed, just grep ttf2pk
|
|
|
|
# in mktexpk. Not a preferred method, but it seems there is no
|
|
|
|
# other way solving this.
|
|
|
|
#
|
1999-09-10 10:10:34 +00:00
|
|
|
if [ -z "`head -1 ${PREFIX}/share/texmf/doc/tetex/README |grep 1\.0`" ]
|
1999-03-08 22:03:33 +00:00
|
|
|
then
|
1999-09-10 10:10:34 +00:00
|
|
|
echo "-------------------------------------------"
|
|
|
|
echo " You do not have teTeX-1.0 installed!"
|
|
|
|
echo " CJK 4.3.0 needs that to function properly."
|
|
|
|
echo "-------------------------------------------"
|
|
|
|
exit 1
|
1999-03-08 22:03:33 +00:00
|
|
|
fi
|