Code

Some more quotes around /Users/jiho to allow spaces
[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"
34 export FONTCONFIG_PATH="$TOP/etc/fonts"
35 export PANGO_RC_FILE="$HOME/.inkscape-etc/pangorc"
36 export GTK_IM_MODULE_FILE="$HOME/.inkscape-etc/gtk.immodules"
37 export GDK_PIXBUF_MODULE_FILE="$HOME/.inkscape-etc/gdk-pixbuf.loaders"
38 export GTK_DATA_PREFIX="$TOP"
39 export GTK_EXE_PREFIX="$TOP"
40 export GNOME_VFS_MODULE_CONFIG_PATH="$TOP/etc/gnome-vfs-2.0/modules"
41 export GNOME_VFS_MODULE_PATH="$TOP/lib/gnome-vfs-2.0/modules"
43 export INKSCAPE_SHAREDIR="$TOP"
44 # TODO: move the share directory to a its own folder to make things a bit cleaner in the app bundle
45 export INKSCAPE_PLUGINDIR="$TOP/lib/inkscape"
46 export INKSCAPE_LOCALEDIR="$TOP/locale"
48 # Set GTK theme (only if there is no .gtkrc-2.0 in the user's home)
49 if [[ ! -e "$HOME/.gtkrc-2.0" ]]; then
50         # prepare the theme depending on OS X appearance settings
51         (
52                 cd "$INKSCAPE_SHAREDIR/themes/Clearlooks-Quicksilver-OSX/gtk-2.0/"
53                 ./sync_osx_look.sh
54                 # TODO: make this more robust, probably by integrating this script directly inline here
55         )
56         export GTK2_RC_FILES="$INKSCAPE_SHAREDIR/themes/Clearlooks-Quicksilver-OSX/gtk-2.0/gtkrc"
57 fi
59 # TODO: Have to add ".UTF-8" to the LANG since ommiting causes Inkscape
60 #       to crash on startup in locale_from_utf8().
61 export LANG="`grep \"\`defaults read .GlobalPreferences AppleCollationOrder \
62         2>&1\`_\" /usr/share/locale/locale.alias | tail -n1 | sed 's/\./ /' | \
63         awk '{print $2}'`.UTF-8"
65 # Handle the case where the directory storing Inkscape has a '#' in the name.
66 # This '#' needs to be escaped in pango.modules for Pango to work properly.
67 ESCAPEDTOP=`echo $TOP | sed 's/#/\\\\\\\\#/'`
69 mkdir -p "${HOME}/.inkscape-etc"
70 sed 's|${HOME}|'"$HOME|g" "$TOP/etc/pango/pangorc" > "${HOME}/.inkscape-etc/pangorc"
71 sed 's|${CWD}|'"$ESCAPEDTOP|g" "$TOP/etc/pango/pango.modules" \
72     > "${HOME}/.inkscape-etc/pango.modules"
73 cp -f "$TOP/etc/pango/pangox.aliases" "${HOME}/.inkscape-etc/"
74 sed 's|${CWD}|'"$TOP|g" "$TOP/etc/gtk-2.0/gtk.immodules" \
75     > "${HOME}/.inkscape-etc/gtk.immodules"
76 sed 's|${CWD}|'"$TOP|g" "$TOP/etc/gtk-2.0/gdk-pixbuf.loaders" \
77     > "${HOME}/.inkscape-etc/gdk-pixbuf.loaders"
79 exec "$CWD/inkscape-bin" "$@"