allow to pass parameters to the script
[mandelbrot.git] / mandelbrot
CommitLineData
37b05b56
RK
1#!/bin/sh
2
5b823560
RK
3# ***** BEGIN LICENSE BLOCK *****
4# Version: MPL 1.1/GPL 2.0/LGPL 2.1
5#
6# The contents of this file are subject to the Mozilla Public License Version
7# 1.1 (the "License"); you may not use this file except in compliance with
8# the License. You may obtain a copy of the License at
9# http://www.mozilla.org/MPL/
10#
11# Software distributed under the License is distributed on an "AS IS" basis,
12# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13# for the specific language governing rights and limitations under the
14# License.
15#
16# The Original Code is KaiRo.at Mandelbrot, XULRunner version.
17#
18# The Initial Developer of the Original Code is
19# Robert Kaiser <kairo@kairo.at>.
20# Portions created by the Initial Developer are Copyright (C) 2008
21# the Initial Developer. All Rights Reserved.
22#
23# Contributor(s):
24# Robert Kaiser <kairo@kairo.at>
25#
26# Alternatively, the contents of this file may be used under the terms of
27# either the GNU General Public License Version 2 or later (the "GPL"), or
28# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29# in which case the provisions of the GPL or the LGPL are applicable instead
30# of those above. If you wish to allow use of your version of this file only
31# under the terms of either the GPL or the LGPL, and not to allow others to
32# use your version of this file under the terms of the MPL, indicate your
33# decision by deleting the provisions above and replace them with the notice
34# and other provisions required by the GPL or the LGPL. If you do not delete
35# the provisions above, a recipient may use your version of this file under
36# the terms of any one of the MPL, the GPL or the LGPL.
37#
38# ***** END LICENSE BLOCK *****
39
37b05b56
RK
40progname="$0"
41curdir=`dirname "$progname"`
42app_ini="$curdir/xulapp/application.ini"
43
44if test -e "/opt/xulrunner-trunk/xulrunner"; then
45 xulrunner="/opt/xulrunner-trunk/xulrunner"
46fi
47if test -z "$xulrunner" && test -e "/opt/firefox-trunk/firefox"; then
48 xulrunner="/opt/firefox-trunk/firefox"
49fi
50if test -z "$xulrunner" && test -e "/usr/local/xulrunner/xulrunner"; then
51 xulrunner="/usr/local/xulrunner/xulrunner"
52fi
53if test -z "$xulrunner"; then
e9524eac
RK
54 # catch the last one of those in versioned directories
55 for xrbin in /usr/local/lib/xulrunner-*/xulrunner; do
56 if test -e "$xrbin"; then
57 xulrunner="$xrbin"
58 fi
59 done
60fi
61if test -z "$xulrunner"; then
62 xulrunner=`which xulrunner`
63fi
64if test -z "$xulrunner"; then
65 echo "XULRunner not found!"
66 exit 1
37b05b56
RK
67fi
68
69# add -jsconsole for debugging
70
8c55f8f4 71$xulrunner --app $app_ini $@