#!/bin/ksh

# ITRANSPATH is used by itrans, to look for the files it needs
# (such as devnac.ifm, devnac.afm)
ITRANSPATH=:/usr1/avinash/ITRANS/lib:

# TEXFONTS is used by tex, latex, etc, need to provide all paths here..
# even system wide paths have to be mentioned again here..
TEXFONTS=/usr/local/share/tex82/fonts:/usr1/avinash/ITRANS/lib

# 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
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.
TEXCONFIG=/usr1/avinash/ITRANS/lib:

export TEXCONFIG TEXFONTS TEXPKS ITRANSPATH
