Code

- Fixes bug #424394: "Launching and Path problems under Mac"
[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 # No longer required if path rewriting has been conducted.
33 # export DYLD_LIBRARY_PATH="$TOP/lib"
35 mkdir -p "${HOME}/.inkscape-etc"
37 export FONTCONFIG_PATH="$TOP/etc/fonts"
38 export PANGO_RC_FILE="$HOME/.inkscape-etc/pangorc"
39 export GTK_IM_MODULE_FILE="$HOME/.inkscape-etc/gtk.immodules"
40 export GDK_PIXBUF_MODULE_FILE="$HOME/.inkscape-etc/gdk-pixbuf.loaders"
41 export GTK_DATA_PREFIX="$TOP"
42 export GTK_EXE_PREFIX="$TOP"
43 export GNOME_VFS_MODULE_CONFIG_PATH="$TOP/etc/gnome-vfs-2.0/modules"
44 export GNOME_VFS_MODULE_PATH="$TOP/lib/gnome-vfs-2.0/modules"
45 export XDG_DATA_DIRS="$TOP/share"
46 export ASPELL_CONF="prefix $TOP;"
48 # Note: This requires the path with the exact ImageMagic version number.
49 #        Also, that ImageMagick will only work if it does not find a 
50 #        version installed into the same PREFIX as it was originally 
51 #        installed.  Luckily, this is very unlikely given the extra long 
52 #        and strangely named install prefix we use.
53 #        The actual version is inserted by the packaging script.
54 export MAGICK_CONFIGURE_PATH="$TOP/lib/ImageMagick-IMAGEMAGICKVER/config:$TOP/share/ImageMagick-IMAGEMAGICKVER/config"
55 export MAGICK_CODER_FILTER_PATH="$TOP/lib/ImageMagick-IMAGEMAGICKVER/modules-Q16/filters"
56 export MAGICK_CODER_MODULE_PATH="$TOP/lib/ImageMagick-IMAGEMAGICKVER/modules-Q16/coders"
58 export INKSCAPE_SHAREDIR="$TOP"
59 # TODO: move the share directory to a its own folder to make things a bit cleaner in the app bundle
60 export INKSCAPE_PLUGINDIR="$TOP/lib/inkscape"
61 export INKSCAPE_LOCALEDIR="$TOP/locale"
63 # Handle the case where the directory storing Inkscape has special characters
64 # ('#', '&', '|') in the name.  These need to be escaped to work properly for 
65 # various configuration files.
66 ESCAPEDTOP=`echo "$TOP" | sed 's/#/\\\\\\\\#/' | sed 's/&/\\\\\\&/g' | sed 's/|/\\\\\\|/g'`
68 # Set GTK theme (only if there is no .gtkrc-2.0 in the user's home)
69 if [[ ! -e "$HOME/.gtkrc-2.0" ]]; then
70         # Appearance setting
71         aquaStyle=`defaults read "Apple Global Domain" AppleAquaColorVariant 2>/dev/null`
72         # 1 for aqua, 6 for graphite, inexistant if the default color was never changed
73         if [[ "$aquaStyle" == "" ]]; then
74                 aquaStyle=1             # set aqua as default
75         fi
77         # Highlight Color setting
78         hiliColor=`defaults read "Apple Global Domain" AppleHighlightColor 2>/dev/null`
79         # a RGB value, with components between 0 and 1, also inexistant if it was not changed
80         if [[ "$hiliColor" == "" ]]; then
81                 hiliColor="0.709800 0.835300 1.000000"  # set blue as default
82         fi
84         # Menu items color
85         if [[ aquaStyle -eq 1 ]]; then
86                 menuColor="#4a76cd"     # blue
87         else
88                 menuColor="#7c8da4"     # graphite
89         fi
90         # Format highlight color as a GTK rgb value
91         hiliColorFormated=`echo $hiliColor | awk -F " " '{print "\\\{"$1","$2","$3"\\\}"}'`
93         # echo $menuColor
94         # echo $hiliColorFormated
96         # Modify the gtkrc
97         #       - with the correct colors
98         #       - to point to the correct scrollbars folder
99         sed 's/OSX_HILI_COLOR_PLACEHOLDER/'$hiliColorFormated'/g' "$INKSCAPE_SHAREDIR/themes/Clearlooks-Quicksilver-OSX/gtk-2.0/pre_gtkrc" | sed 's/OSX_MENU_COLOR_PLACEHOLDER/\"'$menuColor'\"/g' | sed 's/AQUASTYLE_PLACEHOLDER/'$aquaStyle'/g' | sed 's|${THEMEDIR}|'"$ESCAPEDTOP/themes/Clearlooks-Quicksilver-OSX/gtk-2.0|g" > "${HOME}/.inkscape-etc/gtkrc"
101         export GTK2_RC_FILES="$HOME/.inkscape-etc/gtkrc"
102 fi
104 # If the AppleCollationOrder preference doesn't exist, we fall back to using
105 # the AppleLocale preference.
106 LANGSTR=`defaults read .GlobalPreferences AppleCollationOrder 2>/dev/null`
107 if [ "x$LANGSTR" == "x" ]
108 then
109     echo "Warning: AppleCollationOrder setting not found, using AppleLocale." 1>&2
110     LANGSTR=`defaults read .GlobalPreferences AppleLocale 2>/dev/null | \
111             sed 's/_.*//'`
112 fi
114 # NOTE: Have to add ".UTF-8" to the LANG since omitting causes Inkscape
115 #       to crash on startup in locale_from_utf8().
116 export LANG="`grep \"\`echo $LANGSTR\`_\" /usr/share/locale/locale.alias | \
117         tail -n1 | sed 's/\./ /' | awk '{print $2}'`.UTF-8"
118 echo "Setting Language: $LANG" 1>&2
120 sed 's|${HOME}|'"$HOME|g" "$TOP/etc/pango/pangorc" > "${HOME}/.inkscape-etc/pangorc"
121 sed 's|${CWD}|'"$ESCAPEDTOP|g" "$TOP/etc/pango/pango.modules" \
122     > "${HOME}/.inkscape-etc/pango.modules"
123 cp -f "$TOP/etc/pango/pangox.aliases" "${HOME}/.inkscape-etc/"
124 sed 's|${CWD}|'"$ESCAPEDTOP|g" "$TOP/etc/gtk-2.0/gtk.immodules" \
125     > "${HOME}/.inkscape-etc/gtk.immodules"
126 sed 's|${CWD}|'"$ESCAPEDTOP|g" "$TOP/etc/gtk-2.0/gdk-pixbuf.loaders" \
127     > "${HOME}/.inkscape-etc/gdk-pixbuf.loaders"
129 exec "$CWD/inkscape-bin" "$@"