#!/bin/ksh

# Example Korn-Shell file that shows what environment variables
# need to set to use ITRANS.
# In all these examples, replace /usr/local/itrans53/ with the correct path
# to ITRANS on your machine.
#
# For C-Shell users, instead of the export <VAR>=<value> syntax, use
# this: setenv <VAR> <value>
#

#------------------------------------------------------------
# ITRANSPATH is used by itrans, to look for the files it needs
# (such as dvng.ifm, dvng10.tfm, devnac.afm, etc)
# Not needed if ITRANS installed in default path

# export ITRANSPATH=:/usr/local/itrans53/lib:/usr/local/itrans53/lib/fonts

#------------------------------------------------------------
# TEXFONTS is used by tex, latex, etc,
# In some systems, even system wide paths have to be mentioned again here..

export TEXFONTS=:/usr/local/itrans53/lib/fonts:

#------------------------------------------------------------
# looks like dvips does not look for the pk files in TEXFONTS (it
# does look for TFM files there), anyway, define TEXPKS for dvips
# to be same as the TEXFONTS definition
export TEXPKS=$TEXFONTS

#------------------------------------------------------------
# TEXCONFIG is used by dvips, and it understands the empty path
# to mean search in the system wide area, so just need to 
# provide our path here.., system wide paths are taken care of
# automatically.

export TEXCONFIG=:/usr/local/itrans53/lib:/usr/local/itrans53/lib/fonts

#------------------------------------------------------------
# TeX and MF input files (\input TeX command, and MetaFont *.mf files)
export TEXINPUTS=/usr/local/itrans53/lib/fonts:
export MFINPUTS=/usr/local/itrans53/lib/fonts:
