#! /bin/sh # Where the VXtreme software is installed VXTREME_INSTALL="/usr/local/vxtreme" # The "home directory" for user-specfic VXtreme files VXTREME_HOME="$HOME/.netscape/vxtreme_home" export VXTREME_HOME # If the configuration file does not exist yet, run the config program if [ ! -r "$VXTREME_HOME/client/conf/config" ] ; then "$VXTREME_INSTALL/client/configure.netscape.sh" \ "$VXTREME_INSTALL" "$VXTREME_HOME" || exit 1 echo "Starting Netscape..." fi # The plugin needs to load dynamic libraries from /usr/openwin/lib if [ -z "$LD_LIBRARY_PATH" ]; then LD_LIBRARY_PATH=/lib:/usr/lib:/usr/openwin/lib else LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/lib:/usr/lib:/usr/openwin/lib" fi export LD_LIBRARY_PATH # Where to find the Java classes for VXtreme annotations if [ -z "$CLASSPATH" ]; then CLASSPATH="$VXTREME_INSTALL/client" else CLASSPATH="$VXTREME_INSTALL/client:$CLASSPATH" fi export CLASSPATH # Finally, run Netscape. exec netscape $*