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.
|
|
|
|
#
|
|
|
|
|
2004-02-05 20:32:05 +00:00
|
|
|
## $Id: mozilla.in,v 1.5 2004/02/05 20:32:05 cbiesinger%web.de 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.
|
|
|
|
##
|
|
|
|
|
2004-02-04 00:25:14 +00:00
|
|
|
moz_startstop_addon_scripts()
|
|
|
|
{
|
|
|
|
MOZ_USER_DIR="%MOZ_USER_DIR%"
|
|
|
|
|
|
|
|
case "${1}" in
|
|
|
|
"start")
|
|
|
|
for i in ${dist_bin}/init.d/S* ${HOME}/${MOZ_USER_DIR}/init.d/S* ; do
|
|
|
|
if [ -r "${i}" ] ; then
|
|
|
|
case "${i}" in
|
|
|
|
*.sh) . "${i}" ;;
|
|
|
|
*) sh "${i}" "start" ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
"stop")
|
|
|
|
for i in ${HOME}/${MOZ_USER_DIR}/init.d/K* ${dist_bin}/init.d/K* ; do
|
|
|
|
if [ -r "${i}" ] ; then
|
|
|
|
case "${i}" in
|
|
|
|
*.sh) . "${i}" ;;
|
|
|
|
*) sh "${i}" "stop" ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo 1>&2 "$0: Internal error in moz_startstop_addon_scripts."
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
1999-11-09 02:03:38 +00:00
|
|
|
#uncomment for debugging
|
|
|
|
#set -x
|
|
|
|
|
2002-04-25 02:52:44 +00:00
|
|
|
moz_libdir=%MOZAPPDIR%
|
|
|
|
MRE_HOME=%MREDIR%
|
2002-03-05 08:43:53 +00:00
|
|
|
|
|
|
|
# honor MOZILLA_FIVE_HOME if it's there
|
|
|
|
if [ -n "$MOZILLA_FIVE_HOME" ] ; then
|
|
|
|
dist_bin="$MOZILLA_FIVE_HOME"
|
|
|
|
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
|
2002-08-07 11:46:15 +00:00
|
|
|
curdir=`dirname "$progname"`
|
2002-03-06 03:55:24 +00:00
|
|
|
run_moz="$curdir/run-mozilla.sh"
|
2002-08-07 11:46:15 +00:00
|
|
|
if test -x "$run_moz"; then
|
2002-03-06 03:55:24 +00:00
|
|
|
dist_bin=$curdir
|
|
|
|
found=1
|
|
|
|
else
|
|
|
|
here=`/bin/pwd`
|
2002-06-13 12:16:52 +00:00
|
|
|
while [ -h "$progname" ]; do
|
|
|
|
bn=`basename "$progname"`
|
|
|
|
cd `dirname "$progname"`
|
|
|
|
progname=`/bin/ls -l "$bn" |sed -e 's/^.* -> //' `
|
|
|
|
if [ ! -x "$progname" ]; then
|
|
|
|
break
|
|
|
|
fi
|
2002-08-07 11:46:15 +00:00
|
|
|
curdir=`dirname "$progname"`
|
2002-03-06 03:55:24 +00:00
|
|
|
run_moz="$curdir/run-mozilla.sh"
|
2002-08-07 11:46:15 +00:00
|
|
|
if [ -x "$run_moz" ]; then
|
|
|
|
cd "$curdir"
|
2002-06-13 12:16:52 +00:00
|
|
|
dist_bin=`pwd`
|
2002-03-06 03:55:24 +00:00
|
|
|
found=1
|
2002-06-13 12:16:52 +00:00
|
|
|
break
|
2002-03-05 08:43:53 +00:00
|
|
|
fi
|
2002-03-06 03:55:24 +00:00
|
|
|
done
|
2002-08-07 11:46:15 +00:00
|
|
|
cd "$here"
|
2002-03-06 03:55:24 +00:00
|
|
|
fi
|
2002-03-05 08:43:53 +00:00
|
|
|
if [ $found = 0 ]; then
|
2002-04-25 02:52:44 +00:00
|
|
|
# Check default compile-time libdir
|
|
|
|
if [ -x "$moz_libdir/run-mozilla.sh" ]; then
|
|
|
|
dist_bin=$moz_libdir
|
|
|
|
else
|
|
|
|
echo "Cannot find mozilla runtime directory. Exiting."
|
|
|
|
exit 1
|
|
|
|
fi
|
2002-03-05 08:43:53 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-11-09 02:03:38 +00:00
|
|
|
script_args=""
|
|
|
|
moreargs=""
|
|
|
|
debugging=0
|
2004-02-04 00:25:14 +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)
|
2004-02-04 00:25:14 +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
|
|
|
|
|
2002-04-25 02:52:44 +00:00
|
|
|
export MRE_HOME
|
2000-06-17 00:54:07 +00:00
|
|
|
eval "set -- $moreargs"
|
2004-02-04 00:25:14 +00:00
|
|
|
|
|
|
|
## Start addon scripts
|
|
|
|
moz_startstop_addon_scripts "start"
|
|
|
|
|
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
|
2004-02-05 20:32:05 +00:00
|
|
|
"$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
|
2004-02-04 00:25:14 +00:00
|
|
|
exitcode=$?
|
|
|
|
|
|
|
|
## Stop addon scripts
|
|
|
|
moz_startstop_addon_scripts "stop"
|
|
|
|
|
|
|
|
exit $exitcode
|
|
|
|
# EOF.
|