Code

a085ca4981b7ccb231774ca034d2636cfbc9bf4c
[inkscape.git] / packaging / macosx / Resources / bin / inkscape
1 #!/bin/sh
2 #
3 # Author: Aaron Voisine <aaron@voisine.org>
4 # Inkscape Modifications:
5 #       Michael Wybrow <mjwybrow@users.sourceforge.net>
6 #       Jean-Olivier Irisson <jo.irisson@gmail.com>
7 #
9 CWD="`(cd \"\`dirname \\\"$0\\\"\`\"; echo $PWD)`"
10 # e.g. /Applications/Inkscape.app/Contents/Resources/bin
11 TOP="`dirname \"$CWD\"`"
12 # e.g. /Applications/Inkscape.app/Contents/Resources
15 # Brutally add many things to the PATH. If the directories do not exist, they won't be used anyway. 
16 # People should really use ~/.macosx/environment.plist to set environment variables as explained by Apple:
17 #       http://developer.apple.com/qa/qa2001/qa1067.html
18 # but since no one does, we correct this by making the 'classic' PATH additions here:
19 #       /usr/local/bin which, though standard, doesn't seem to be in the PATH
20 #       newer python as recommended by MacPython http://www.python.org/download/mac/
21 #       Fink
22 #       MacPorts (former DarwinPorts)
23 #       LaTeX distribution for Mac OS X
24 export PATH="/usr/texbin:/opt/local/bin:/sw/bin/:/Library/Frameworks/Python.framework/Versions/Current/bin:/usr/local/bin:$CWD:$PATH"
26 # Setup PYTHONPATH to use python modules shipped with Inkscape
27 ARCH=`arch`
28 PYTHON_VERS=`python -V 2>&1 | cut -c 8-10`
29 export PYTHONPATH="$TOP/python/site-packages/$ARCH/$PYTHON_VERS"
30 # NB: we are only preprending some stuff to the default python path so if the directory does not exist it should not harm the rest
32 export DYLD_LIBRARY_PATH="$TOP/lib"
35 export FONTCONFIG_PATH="$TOP/etc/fonts"
36 export PANGO_RC_FILE="$HOME/.inkscape-etc/pangorc"
37 export GTK_IM_MODULE_FILE="$HOME/.inkscape-etc/gtk.immodules"
38 export GDK_PIXBUF_MODULE_FILE="$HOME/.inkscape-etc/gdk-pixbuf.loaders"
39 export GTK_DATA_PREFIX="$TOP"
40 export GTK_EXE_PREFIX="$TOP"
41 export GNOME_VFS_MODULE_CONFIG_PATH="$TOP/etc/gnome-vfs-2.0/modules"
42 export GNOME_VFS_MODULE_PATH="$TOP/lib/gnome-vfs-2.0/modules"
43 export XDG_DATA_DIRS="$TOP/share"
44 export ASPELL_CONF="prefix $TOP;"
46 export INKSCAPE_SHAREDIR="$TOP"
47 # TODO: move the share directory to a its own folder to make things a bit cleaner in the app bundle
48 export INKSCAPE_PLUGINDIR="$TOP/lib/inkscape"
49 export INKSCAPE_LOCALEDIR="$TOP/locale"
51 # Set GTK theme (only if there is no .gtkrc-2.0 in the user's home)
52 if [[ ! -e "$HOME/.gtkrc-2.0" ]]; then
53         # prepare the theme depending on OS X appearance settings
54         (
55                 cd "$INKSCAPE_SHAREDIR/themes/Clearlooks-Quicksilver-OSX/gtk-2.0/"
56                 ./sync_osx_look.sh
57                 # TODO: make this more robust, probably by integrating this script directly inline here
58         )
59         export GTK2_RC_FILES="$INKSCAPE_SHAREDIR/themes/Clearlooks-Quicksilver-OSX/gtk-2.0/gtkrc"
60 fi
62 # If the AppleCollationOrder preference doesn't exist, we fall back to using
63 # the AppleLocale preference.
64 LANGSTR=`defaults read .GlobalPreferences AppleCollationOrder 2>/dev/null`
65 if [ "x$LANGSTR" == "x" ]
66 then
67     echo "Warning: AppleCollationOrder setting not found, using AppleLocale."
68     LANGSTR=`defaults read .GlobalPreferences AppleLocale 2>/dev/null | \
69             sed 's/_.*//'`
70 fi
72 # NOTE: Have to add ".UTF-8" to the LANG since omitting causes Inkscape
73 #       to crash on startup in locale_from_utf8().
74 export LANG="`grep \"\`echo $LANGSTR\`_\" /usr/share/locale/locale.alias | \
75         tail -n1 | sed 's/\./ /' | awk '{print $2}'`.UTF-8"
76 echo "Setting Language: $LANG"
78 # Handle the case where the directory storing Inkscape has a '#' in the name.
79 # This '#' needs to be escaped in pango.modules for Pango to work properly.
80 ESCAPEDTOP=`echo $TOP | sed 's/#/\\\\\\\\#/'`
82 mkdir -p "${HOME}/.inkscape-etc"
83 sed 's|${HOME}|'"$HOME|g" "$TOP/etc/pango/pangorc" > "${HOME}/.inkscape-etc/pangorc"
84 sed 's|${CWD}|'"$ESCAPEDTOP|g" "$TOP/etc/pango/pango.modules" \
85     > "${HOME}/.inkscape-etc/pango.modules"
86 cp -f "$TOP/etc/pango/pangox.aliases" "${HOME}/.inkscape-etc/"
87 sed 's|${CWD}|'"$TOP|g" "$TOP/etc/gtk-2.0/gtk.immodules" \
88     > "${HOME}/.inkscape-etc/gtk.immodules"
89 sed 's|${CWD}|'"$TOP|g" "$TOP/etc/gtk-2.0/gdk-pixbuf.loaders" \
90     > "${HOME}/.inkscape-etc/gdk-pixbuf.loaders"
92 exec "$CWD/inkscape-bin" "$@"