2002-08-21 23:21:36 +04:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2002-08-21 23:21:36 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
## Usage:
|
|
|
|
##
|
|
|
|
## $ mozilla [args]
|
|
|
|
##
|
2008-12-10 18:19:55 +03:00
|
|
|
## This script is meant to run the application binary from mozilla/dist/bin.
|
2002-08-21 23:21:36 +04:00
|
|
|
##
|
|
|
|
## The script will setup all the environment voodoo needed to make
|
2008-12-10 18:19:55 +03:00
|
|
|
## the application binary to work.
|
2002-08-21 23:21:36 +04:00
|
|
|
##
|
|
|
|
|
|
|
|
#uncomment for debugging
|
2004-06-03 20:46:36 +04:00
|
|
|
#set -x
|
2002-08-21 23:21:36 +04:00
|
|
|
|
|
|
|
moz_libdir=%MOZAPPDIR%
|
|
|
|
|
2003-07-26 11:51:05 +04:00
|
|
|
# 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
|
2004-07-08 11:08:50 +04:00
|
|
|
progname="$0"
|
2003-07-26 11:51:05 +04:00
|
|
|
curdir=`dirname "$progname"`
|
2004-07-08 11:08:50 +04:00
|
|
|
progbase=`basename "$progname"`
|
2003-07-26 11:51:05 +04:00
|
|
|
run_moz="$curdir/run-mozilla.sh"
|
|
|
|
if test -x "$run_moz"; then
|
2004-07-08 11:08:50 +04:00
|
|
|
dist_bin="$curdir"
|
2003-07-26 11:51:05 +04:00
|
|
|
found=1
|
2002-08-21 23:21:36 +04:00
|
|
|
else
|
2003-07-26 11:51:05 +04:00
|
|
|
here=`/bin/pwd`
|
|
|
|
while [ -h "$progname" ]; do
|
|
|
|
bn=`basename "$progname"`
|
|
|
|
cd `dirname "$progname"`
|
2009-07-23 14:09:10 +04:00
|
|
|
# Resolve symlink of dirname
|
|
|
|
cd `/bin/pwd`
|
2004-07-08 11:08:50 +04:00
|
|
|
progname=`/bin/ls -l "$bn" | sed -e 's/^.* -> //' `
|
2007-10-05 11:29:26 +04:00
|
|
|
progbase=`basename "$progname"`
|
2003-07-26 11:51:05 +04:00
|
|
|
if [ ! -x "$progname" ]; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
curdir=`dirname "$progname"`
|
|
|
|
run_moz="$curdir/run-mozilla.sh"
|
|
|
|
if [ -x "$run_moz" ]; then
|
|
|
|
cd "$curdir"
|
2009-07-23 14:09:10 +04:00
|
|
|
dist_bin=`/bin/pwd`
|
2004-08-19 04:33:56 +04:00
|
|
|
run_moz="$dist_bin/run-mozilla.sh"
|
2003-07-26 11:51:05 +04:00
|
|
|
found=1
|
|
|
|
break
|
2002-08-21 23:21:36 +04:00
|
|
|
fi
|
2003-07-26 11:51:05 +04:00
|
|
|
done
|
|
|
|
cd "$here"
|
|
|
|
fi
|
|
|
|
if [ $found = 0 ]; then
|
|
|
|
# Check default compile-time libdir
|
|
|
|
if [ -x "$moz_libdir/run-mozilla.sh" ]; then
|
2004-07-08 11:08:50 +04:00
|
|
|
dist_bin="$moz_libdir"
|
2008-12-10 18:19:55 +03:00
|
|
|
run_moz="$moz_libdir/run-mozilla.sh"
|
|
|
|
else
|
|
|
|
echo "Cannot find %MOZ_APP_DISPLAYNAME% runtime directory. Exiting."
|
2003-07-26 11:51:05 +04:00
|
|
|
exit 1
|
2002-08-21 23:21:36 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
script_args=""
|
|
|
|
debugging=0
|
2004-07-08 11:08:50 +04:00
|
|
|
MOZILLA_BIN="${progbase}-bin"
|
2002-08-21 23:21:36 +04:00
|
|
|
|
2004-07-08 11:08:50 +04:00
|
|
|
if [ "$OSTYPE" = "beos" ]; then
|
|
|
|
mimeset -F "$MOZILLA_BIN"
|
|
|
|
fi
|
|
|
|
|
2005-09-21 01:11:37 +04:00
|
|
|
pass_arg_count=0
|
|
|
|
while [ $# -gt $pass_arg_count ]
|
2002-08-21 23:21:36 +04:00
|
|
|
do
|
|
|
|
case "$1" in
|
2004-07-08 11:08:50 +04:00
|
|
|
-p | --pure | -pure)
|
|
|
|
MOZILLA_BIN="${MOZILLA_BIN}.pure"
|
2002-08-21 23:21:36 +04:00
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-g | --debug)
|
|
|
|
script_args="$script_args -g"
|
|
|
|
debugging=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-d | --debugger)
|
|
|
|
script_args="$script_args -d $2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
*)
|
2005-09-21 01:11:37 +04:00
|
|
|
# Move the unrecognized argument to the end of the list.
|
|
|
|
arg="$1"
|
|
|
|
shift
|
|
|
|
set -- "$@" "$arg"
|
|
|
|
pass_arg_count=`expr $pass_arg_count + 1`
|
2002-08-21 23:21:36 +04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ $debugging = 1 ]
|
|
|
|
then
|
|
|
|
echo $dist_bin/run-mozilla.sh $script_args $dist_bin/$MOZILLA_BIN "$@"
|
|
|
|
fi
|
2009-08-21 02:09:54 +04:00
|
|
|
exec "$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
|
2004-02-20 21:13:47 +03:00
|
|
|
# EOF.
|