#!/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

# Set run-time font path
if [ -d $ABISUITE_FONT_HOME ]
then
    xset fp+ $ABISUITE_FONT_HOME 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-  1>/dev/null 2>/dev/null
    fi
fi
