summaryrefslogtreecommitdiff
path: root/tools/osx_packaging/script
blob: faf92eded84eae5ad6bb5e397d22895468790b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/sh
#
# Author: Aaron Voisine <aaron@voisine.org>

if [ ! -x /Applications/Utilities/X11.app ] ; then
    if [ -f /usr/include/X11/X.h ] ; then
	osascript -e 'tell application "Ardour2"
display dialog "You have installed the X11 SDK, but not X11 itself.\
Please install X11 before running Ardour" buttons["OK"]
end tell'
    else
	osascript -e 'tell application "Ardour2"
display dialog "Please install X11 before running Ardour" buttons["OK"]
end tell'
    fi
    exit 1
fi

if [ ! -x /usr/local/bin/jackd -a ! -x /usr/bin/jackd ] ; then
    osascript -e 'tell application "Ardour2"
display dialog "You do not appear to have JACK installed.\nPlease install it before running Ardour" buttons["OK"]
end tell'
    exit 1
fi

CWD="`dirname \"$0\"`"
TMP=/tmp/$UID/TemporaryItems

ps -wx -ocommand | grep -e '[X]11' > /dev/null
if [ "$?" != "0" -a ! -f ~/.xinitrc ]; then
    echo "rm -f ~/.xinitrc" > ~/.xinitrc
    sed 's/xterm/# xterm/' /usr/X11R6/lib/X11/xinit/xinitrc >> ~/.xinitrc
fi

mkdir -p $TMP
cp -f "$CWD/bin/getdisplay.sh" $TMP
rm -f $TMP/display
open-x11 $TMP/getdisplay.sh || \
open -a XDarwin $TMP/getdisplay.sh || \
echo ":0" > $TMP/display

while [ "$?" == "0" -a ! -f $TMP/display ]; do sleep 1; done
export "DISPLAY=`cat $TMP/display`"

ps -wx -ocommand | grep -e '[X]11' > /dev/null || exit 11

cd ~/
shift
exec "$CWD/bin/exporter" "$*"