#!/bin/sh
#
# AbiSuite program wrapper script, dynamically generated
# from abi/src/pkg/common/unix/scripts/makewrapper.sh.

currentFonts=`xset q | grep Abi`

# Change this if you move the AbiSuite tree.
ABISUITE_HOME=/usr/local/AbiSuite
export ABISUITE_HOME

# Change this if you move the AbiSuite binaries.
ABISUITE_LIBEXEC=/usr/local/AbiSuite/bin

# Change this if you move your fonts.
ABISUITE_FONT_HOME=$ABISUITE_HOME/fonts

#locale-specific dirs could be added to it.
ABISUITE_FONT_PATH=$ABISUITE_FONT_HOME

#now try to guess locale
locale=$LC_ALL	#it's incorrect to set this variable, but someone
		#might set it incorrectly.
if [ -z $locale ]
then
    locale=$LANG
fi

if [ ! -z $locale ]
then
    #now guess encoding
    encoding=`echo $locale | sed -e 's/^.*\.\(.*\)$/\1/'`
    if [ ! -z $encoding ]
    then
	addfontdir=$ABISUITE_FONT_HOME/$encoding
	if [ ! -z $addfontdir ]
	then
	    if [ -d $addfontdir ]
	    then
	    	#add directory with locale-specific fonts to font path
	    	ABISUITE_FONT_PATH=$ABISUITE_FONT_PATH,$addfontdir
	    fi
	fi
    fi
fi

# Set run-time font path
if [ -d $ABISUITE_FONT_HOME ]
then
    xset fp+ $ABISUITE_FONT_PATH 1>/dev/null 2>/dev/null
fi

# Figure out which binary to run
if [ -f $ABISUITE_LIBEXEC/AbiWord_d ]
then
    $ABISUITE_LIBEXEC/AbiWord_d "$@"
elif [ -f $ABISUITE_LIBEXEC/AbiWord_s ]
then
    $ABISUITE_LIBEXEC/AbiWord_s "$@"
else
    echo ""
    echo "Error: can't find AbiWord executables:"
    echo "    $ABISUITE_LIBEXEC/AbiWord_d"
    echo "    -or-"
    echo "    $ABISUITE_LIBEXEC/AbiWord_s"
    echo ""
    exit
fi
#Check to make sure we don't stomp on anything
if [ -z $currentFonts ]
then
    # Set post run-time font path
    if [ -d $ABISUITE_FONT_HOME ]
    then
	xset fp- $ABISUITE_FONT_PATH 1>/dev/null 2>/dev/null
    fi
fi
