1999-11-09 02:03:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
|
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
# http://www.mozilla.org/NPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# NPL.
|
|
|
|
#
|
|
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
# Reserved.
|
|
|
|
#
|
|
|
|
|
2002-03-20 01:34:25 +00:00
|
|
|
## $Id: mozilla,v 1.15 2002/03/20 01:34:25 seawood%netscape.com Exp $
|
1999-11-09 02:03:38 +00:00
|
|
|
##
|
|
|
|
## Usage:
|
|
|
|
##
|
|
|
|
## $ mozilla [args]
|
|
|
|
##
|
|
|
|
## This script is meant to run the mozilla-bin binary from either
|
|
|
|
## mozilla/xpfe/bootstrap or mozilla/dist/bin.
|
|
|
|
##
|
|
|
|
## The script will setup all the environment voodoo needed to make
|
|
|
|
## the mozilla-bin binary to work.
|
|
|
|
##
|
|
|
|
|
|
|
|
#uncomment for debugging
|
|
|
|
#set -x
|
|
|
|
|
2002-03-05 08:43:53 +00:00
|
|
|
#moz_libdir=@libdir@/mozilla
|
|
|
|
|
|
|
|
# honor MOZILLA_FIVE_HOME if it's there
|
|
|
|
if [ -n "$MOZILLA_FIVE_HOME" ] ; then
|
|
|
|
dist_bin="$MOZILLA_FIVE_HOME"
|
|
|
|
elif [ -d "$moz_libdir" ]; then
|
|
|
|
dist_bin=$moz_libdir
|
|
|
|
else
|
|
|
|
# Use run-mozilla.sh in the current dir if it exists
|
|
|
|
# If not, then start resolving symlinks until we find run-mozilla.sh
|
|
|
|
found=0
|
|
|
|
progname=$0
|
|
|
|
curdir=`dirname $progname`
|
2002-03-06 03:55:24 +00:00
|
|
|
run_moz="$curdir/run-mozilla.sh"
|
|
|
|
if test -x $run_moz; then
|
|
|
|
dist_bin=$curdir
|
|
|
|
found=1
|
|
|
|
else
|
|
|
|
here=`/bin/pwd`
|
2002-03-20 01:34:25 +00:00
|
|
|
while [ -L "$progname" ]; do
|
|
|
|
bn=`basename "$progname"`
|
|
|
|
cd `dirname "$progname"`
|
|
|
|
progname=`/bin/ls -l "$bn" |sed -e 's/^.* -> //' `
|
|
|
|
if [ ! -x "$progname" ]; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
curdir=`dirname $progname`
|
2002-03-06 03:55:24 +00:00
|
|
|
run_moz="$curdir/run-mozilla.sh"
|
|
|
|
if [ -x $run_moz ]; then
|
|
|
|
dist_bin=$curdir
|
|
|
|
found=1
|
2002-03-20 01:34:25 +00:00
|
|
|
break
|
2002-03-05 08:43:53 +00:00
|
|
|
fi
|
2002-03-06 03:55:24 +00:00
|
|
|
done
|
|
|
|
cd $here
|
|
|
|
fi
|
2002-03-05 08:43:53 +00:00
|
|
|
if [ $found = 0 ]; then
|
|
|
|
echo "Cannot find mozilla runtime directory. Exiting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-11-09 02:03:38 +00:00
|
|
|
script_args=""
|
|
|
|
moreargs=""
|
|
|
|
debugging=0
|
2000-06-06 22:57:25 +00:00
|
|
|
MOZILLA_BIN="mozilla-bin"
|
1999-11-09 02:03:38 +00:00
|
|
|
|
2001-01-23 15:34:56 +00:00
|
|
|
if [ "$OSTYPE" = "beos" ]; then
|
|
|
|
mimeset -F $MOZILLA_BIN
|
|
|
|
fi
|
|
|
|
|
1999-11-09 02:03:38 +00:00
|
|
|
while [ $# -gt 0 ]
|
|
|
|
do
|
2000-06-17 00:54:07 +00:00
|
|
|
case "$1" in
|
1999-12-15 06:23:50 +00:00
|
|
|
-p | -pure)
|
2000-06-06 22:57:25 +00:00
|
|
|
MOZILLA_BIN="mozilla-bin.pure"
|
1999-12-15 06:23:50 +00:00
|
|
|
shift
|
|
|
|
;;
|
1999-11-09 02:03:38 +00:00
|
|
|
-g | --debug)
|
|
|
|
script_args="$script_args -g"
|
|
|
|
debugging=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-d | --debugger)
|
|
|
|
script_args="$script_args -d $2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
*)
|
2000-06-17 00:54:07 +00:00
|
|
|
moreargs="$moreargs \"$1\""
|
2000-02-08 02:40:19 +00:00
|
|
|
shift 1
|
1999-11-09 02:03:38 +00:00
|
|
|
;;
|
2000-02-04 23:11:19 +00:00
|
|
|
esac
|
1999-11-09 02:03:38 +00:00
|
|
|
done
|
|
|
|
|
2000-06-17 00:54:07 +00:00
|
|
|
eval "set -- $moreargs"
|
2001-11-03 05:05:47 +00:00
|
|
|
if [ $debugging = 1 ]
|
|
|
|
then
|
|
|
|
echo $dist_bin/run-mozilla.sh $script_args $dist_bin/$MOZILLA_BIN "$@"
|
|
|
|
fi
|
2000-10-25 20:32:37 +00:00
|
|
|
exec $dist_bin/run-mozilla.sh $script_args $dist_bin/$MOZILLA_BIN "$@"
|