CompilingMacOsX

From Inkscape Wiki
Jump to navigation Jump to search

For the impatient

1. Install Xcode tools from your OS X installation DVD

2. Download and install MacPorts

3. In Terminal (Applications>Utilities>Terminal) type

sudo port selfupdate
sudo port install cairo boehmgc gtkmm gtk-engines2 intltool libxslt lcms popt poppler boost \ 
 gsl gnome-vfs libgnomeprintui automake autoconf bzr

Grab a cup of coffee

4. In Terminal, get and build Inkscape

bzr branch lp:inkscape
cd inkscape/packaging/macosx/
./osx-build.sh a c b i -s p

Et voilà. If you want to understand what you just did, read on.

Requirements

To compile Inkscape from source you need:

  • Mac OS X > 10.3
  • Xcode Tools. They are on your installation DVD, in the optional installs, or can be download from Apple Developer Connection. You can customize the install to make it smaller (avoid documentation and example software for example). You need at least: gcc, Xcode, X11SDK.
  • Inkscape's source code. You can download an official release source code or create a local branch of the current state of the BZR repository using bazaar. Bazaar is not pre-installed on Leopard - it is recommended to install a current version with MacPorts (sudo port install bzr).
  • A means of getting Inkscape's numerous dependencies: glibmm, gtkmm, lmcs, boehmgc... We recommend the use of MacPorts right now. (Fink was used in the past but it no longer meets Inkscape's needs currently.)
  • Working version of the <tr1/unordered_set> and <tr1/unordered_map> headers.

Configure or build can fail on OS X Tiger and Leopard due to broken <tr1/unordered_set> header files because Apple's default compiler (GNU Compiler Collection 4.0.1) and libstdc++ library (GNU Standard C++ Library v3) installed by Xcode have never been fully updated to the last released version of the GCC 4_0 release series.

If Inkscape 0.47+devel fails to configure with "error: You have a broken version of the <tr1/unordered_set> header. …" or fails to build with an error in /usr/include/c++/4.0.0/tr1/hashtable it is necessary to either

a) install a newer version of GCC via MacPorts and make it the default compiler with MacPorts 'gcc_select' or

b) patch the installed tr1/hashtable header file of libstdc++-v3 as described in HashtableFixOSX

gcc/g++ versions by Apple known to fail to compile Inkscape 0.47+devel bzr revno >= 8976 are
powerpc-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5370)
i686-apple-darwin9-g++-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5493)
i686-apple-darwin9-g++-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5577)

Compiling Inkscape with X11, using MacPorts [Recommended method]

Installing dependencies

You can use MacPorts to list Inkscape dependencies:

port deps inkscape

Some are mandatory and you can install them with the command:

sudo port install boehmgc gtkmm gtk-engines2 intltool libxslt lcms popt boost gsl

Others provide additional functionality to Inkscape:

  • gnome-vfs : access to remote servers, in particular import from Open Clipart Library
  • aspell : check spelling of text elements [Note: I have never seen it working on OS X, though at least it should install fine]
  • libgnomeprintui
  • cairo : ps and pdf export
  • poppler : better pdf import
sudo port install gnome-vfs aspell libgnomeprintui cairo poppler

NB: Cairo was already installed at previous step as a GTK dependency. You need to either deactivate the old version and install this one, or directly write it on the command line above. If you're unsure about MacPorts commands, you can find a guide that is easy to skim here: MacPorts Guide

In addition, Inkscape requires versions of the autotools more recent thant those that ship with OS X. Install them:

sudo port install autoconf automake

More recent (Sep 2008) pre-packaged nightly builds for Mac OS X also feature additional dependencies:

sudo port install librsvg libwpd libwpg libcroco

NB: At the time of editing (2008-12-01) there was a problem fetching "lzmautils" as the URL MacPorts tried to use as download source dies in a timeout. As this package is needed as a dependency for one or more packages noted above you need to download the source tarball of lzmautils from somewhere else (for example, from here) and put that into the local MacPorts repository at "/opt/local/var/macports/distfiles/lzmautils". You should now be able to run the commands above.

Also make sure that you have "libxml2" and "libxslt" installed with MacPorts. This should have been installed previously, either directly or as a dependency. You will need those later to compile the "lxml" Python module if you want to use Python effects. First check what's installed and if they are missing from your MacPorts repository install them by doing:

port installed
sudo port install libxml2 libxslt

Pre-compiling the Python modules

If you cannot use the pre-built Python modules from Modevia, say, because you're using an unsupported Python version or you just want to install from source you need to pre-compile both modules.

In case you are using a Python version installed through MacPorts do a search for both modules and install the ones suitable for the Python version activated within MacPorts.

port search lxml numpy

If you are using Leopard's default Python 2.5.1 installation or a more recent one (e.g. MacPython 2.6) you will need to compile both modules outside of MacPorts. Download both modules from PyPI if they are available there for your Python version. At the time of editing (2008-12-01) both modules were only available through SVN for Python 2.6.

There are lots of tutorials for building and installing the "numpy" module. One good place to start looking is the Getting Effects Working entry referenced at the end of this guide.

Building the "lxml" module deviates a little from the standard way, so if you cannot install it try the following command:

cd /path/to/lxml/source
sudo python setup.py install \
--with-xslt-config=/opt/local/bin/xslt-config \
--with-xml2-config=/opt/local/bin/xml2-config

This tells it to use the libxml2 and libxslt packages we installed earlier with MacPorts instead of Mac OS X' default versions, which have been known to cause problems when trying to build "lxml".

If you are compiling the Python modules outside of MacPorts you will need to make a mental note for after running the .app-bundle building script (detailed later in this guide) to copy the "lxml" and "numpy" dirs from the standard installation destination (by default "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages" for MacPython 2.6 and "/Library/Python/2.5/site-packages/" for Leopard's default Python 2.5.1 installation) to either

  • the "extensions" folder inside the Inkscape.app bundle ("Inkscape.app/Contents/Resources/extensions") if all you care about is getting the Inkscape build to work with your Python version. This method is more foolproof but supports only one Python version.
  • the "site-packages" folder inside the Inkspace.app bundle. The "site-packages" folder is the right place for putting your pre-compiled Python modules if you want to redistribute your build. Make a subfolder within "site-packages" with the name of your arch ("i386" for Intel, "PPC" for PowerPC or type arch into a Terminal window) and another subfolder within the arch folder with the name of your Python version (e.g. "2.5" or "2.6" etc.). This allows you to include support for multiple Python versions with your Inkscape build. Note, however, that if someone has multiple Python versions installed they may run into problems with the PATH order exported by the internal script ("Inkspace.app/Contents/Resources/bin/inkscape") responsible for preparing the Inkscape launch environment.

Armed with this knowledge you should be able to take care of the "...needs the fantastic libxml2 wrapper..." message when executing Python effects. Normally the osx-app.sh script (detailed later) should take care of this for you, but if for whatever reason it didn't you know how to copy the modules manually.

For further info refer to the Getting Effects Working section of this wiki.

Setting the build environment

MacPorts's hierarchy (/opt/local/) is not searched for libraries by default. Therefore, before the configuration starts, some environment variables need to be set. The environment variables are presented in bash syntax here.

export LIBPREFIX="/opt/local"
#  automake seach path
export CPATH="$LIBPREFIX/include"
#  configure search path
export CPPFLAGS="-I$LIBPREFIX/include"
export LDFLAGS="-L$LIBPREFIX/lib"
#  compiler arguments
export CFLAGS="-O3 -Wall"
export CXXFLAGS="$CFLAGS"

You can also use ccache (sudo port install ccache) to speed up the compilation a bit. To do so, add compiler variables:

export CC="ccache gcc"
export CXX="ccache g++"

Configuring

If you compile Inkscape for the first time from a bzr branch or checkout you need to generate the configure script. (not needed for tar builds) Navigate to Inkscape's source directory and run:

./autogen.sh

Then run configure with the options --disable-static --enable-shared and --prefix which sets the directory where the build products are placed. It must be somewhere you have write access to.

./configure --disable-static --enable-shared --prefix=/path/to/build/products/

If you want to package Inkscape into a double-clickable .app bundle in order to access it like a regular OS X application (you probably want to), you need to add the option --enable-osxapp:

./configure {...} --enable-osxapp

Other configuration options can be set, check the list of options by issuing:

./configure --help

Here's an example which covers most options that can be set:

./configure --disable-static --enable-shared --prefix=/path/to/build/products/ --with-xft \
--with-gnome-vfs --with-python=/path/to/python/modules --enable-osxapp --enable-lcms \
--enable-poppler-cairo

Building and Installing

Just run:

make
make install

Creating an .app bundle

Assuming that you have used the --enable-osxapp option during configure, navigate to Mac OS X packaging directory in Inkscape source code and use the automated script:

cd packaging/macosx
./osx-app.sh -s -b /path/to/install/prefix/bin/inkscape -p ../../Info.plist

The script copies Inkscape binary and all its dependencies into the app bundle. The -s options strips libraries from debugging information (the bundle is therefore smaller). Omit this option if you want to keep debugging info.

Creating a disk image to distribute Inkscape

Inkscape.app created at the previous step is completely independent from the original location of MacPorts libraries and can therefore be distributed. It will only work on your platform though (PPC or Intel) and incompatibilities are known between X11 versions on different major versions of OS X (Panther, Tiger and Leopard). The general rule is that versions are not backward compatible.

The most widespread way of distributing applications on Mac OS X is via .dmg images. You can created a dmg image of Inkscape, with a nice background and all, using the script:

./osx-dmg.sh -p Inkscape.app

in the packaging directory for Mac OS X (where your app bundle should be, otherwise modify the path to Inkscape.app).

Automated build script

All essential steps are automated by a build script: osx-build.sh. It has built-in help so to know how to use it just type:

./osx-build.sh help

NB: Excluded steps involve Pre-compiliation of the Python modules and installing the additional nightly build features.

Compiling a Universal Binary of Inkscape with X11, using MacPorts

These instructions should work on both 10.4 and 10.5 machines with the latest Xcode version installed.

Build Universal dependencies

The easiest way to do this is to create a new MacPorts installation. It is recommended that you install macports from source into a long prefix (of 50 character) such as "/opt/local-macports-with-a-really-long-directory-name/" -- this will allow enough space to later perform path rewriting on all the bundled libraries.

Once you have installed MacPorts, edit the $PREFIX/etc/macports/variants.conf file to have the following line:

+universal

This will cause MacPorts to install the Universal variant of each package you later ask it to install.

If you already have non-universal versions of some ports installed, for each of these you may need to deactivate the port and rebuild it, e.g.

sudo port -f uninstall cairo
sudo port clean cairo
sudo port -v install cairo +universal

Build Universal Inkscape

First, Set your SDK, 10.5 for Leopard, 10.4u for TIger:

export SDK=/Developer/SDKs/MacOSX10.5.sdk     (For Leopard)
export SDK=/Developer/SDKs/MacOSX10.4u.sdk     (For Tiger)

Then, set up your environment to point to the MacPorts libraries:

export MACPORTS="/opt/local"
export PATH=$MACPORTS/bin:$MACPORTS/sbin:/usr/X11R6/bin:/bin:/sbin:/usr/bin:/usr/local/bin:/usr/sbin
#  automake seach path
export CPATH="$MACPORTS/include"
#  configure search path
export CPPFLAGS="-I$MACPORTS/include"
export LDFLAGS="-L$MACPORTS/lib"
#  compiler arguments
export CFLAGS="-O3 -Wall -isysroot $SDK -arch ppc -arch i386"
export CXXFLAGS="$CFLAGS"

The final step is to configure and compile Inkscape. Inkscape must be configured with the following options:

--enable-osxapp     Sets the correct path for Inkscape to be used from an .app bundle
--disable-dependency-tracking     Dependency tracking can't be used when compiling universal binaries.

Inkscape can then be built (with make), installed, and packaged into a Universal .app bundle using the standard .app bundle building instruction above.

Compiling Inkscape with native GTK using MacPorts [experimental]

This process is very similar to compiling an X11 version of Inkscape except for the building of dependencies: need to build native versions of Inkscape dependencies. At the moment (2007-12-17) this process does not produce a usable version of Inkscape but the more people try to use it, the quicker the bugs will be ironed out!

++++++++++++++++++++++++++++++++++++++++++++++++++++

addition in Nov-2009 by Wolf: Meanwhile building a native inkscape aqua version is quite easy - dont be afraid! I do ask every Mac OS X user to try it and to file or to support bug reports. The more bug report come in, the quicker we'll have a really working inkscape aqua. I'll try to provide binaries, but making them seem to be a bit more tricky. Here is a set of instructions - should be quite comprehensive: #Building Aqua November 2009

++++++++++++++++++++++++++++++++++++++++++++++++++++

Native version of Inkscape dependencies

Thanks to the power of port "variants" and port "deactivation" you can install native versions of gtk, cairo, pango and such, alongside the regular X11 ones. To know which ports have a quartz or no_x11 variant, use the command:

port list variant:quartz variant:no_x11

This will give you an idea of what need to be replaced.

Assuming your MacPorts tree has been already used to build regular versions of Inkscape, you first need to deactivate (suppress from the tree without really uninstalling) the X11 versions of gtk, cairo, cairomm and pango:

sudo port deactivate gtk2 cairo cairomm pango

Then install native variants:

sudo port install cairo +quartz+no_x11 cairomm pango +no_x11 poppler +quartz gtk2 +quartz

Installing a second MacPorts tree (recommended approach)

Rather than deactivating and reactivating ports, you can also keep two MacPorts trees side by side, provided you install the second one from source. Let's say I want to install a new tree for native versions in /opt/local-native. I would do

export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin
cd ~/MacPorts-1.x.x/
./configure --prefix=/opt/local-native --with-tclpackage=/Library/Tcl/macports-native
make
sudo make install

You can set this second tree up to always build packages with specific variants. For example, you can edit the /opt/local-native/etc/macports/variants.conf file to have the following line:

+universal +no_x11 +quartz

You can omit the +universal if you only want to build inkscape for your host architecture. You should also set alternate applications_dir and frameworks_dir variables in the /opt/local-native/etc/macports/macports.conf file so that applications and frameworks installed by this MacPorts (for example by python) don't clash with your standard MacPorts tree.

Then you need to have only one version of the port command in the PATH at any time so you need to setup your .bashrc (or .bash_profile or .profile) accordingly. I use shell aliases to quickly and temporarily switch to the native version:

alias portpathregular="export PATH=/opt/local/bin:/opt/local/sbin:/Developer/Tools:/usr/local/bin: \
/usr/X11R6/bin:/bin:/sbin:/usr/bin:/usr/sbin"
alias portpathnative="export PATH=/opt/local-native/bin:/opt/local-native/sbin:/Developer/Tools:/usr/local/bin:  \
/usr/X11R6/bin:/bin:/sbin:/usr/bin:/usr/sbin"

NB: the \ are just to mark line continuation here. Omit them when editing your shell configuration file and put everything on one line.

Install the rest

Eventually, follow the regular install procedure for the rest:

sudo port install libxslt boost boehmgc gtkmm lcms intltool popt

If your MacPorts tree was already ready to compile Inkscape, you should not need to reinstall anything, with the possible exception of gtkmm, which may need to be rebuilt against the native version of gtk rather than against the X11 one (please someone confirm this).

Get inkscape source code and go in the mac OS X specific packaging directory

cd packaging/macosx

There edit osx-build.sh to remove the configure option --enable-osxapp because it puts inkscape in a .app bundle where it is started together with X11, which would defeat the purpose of this native compilation. You can also specify an alternative install prefix if you want. Then

./osx-build.sh u a c b i

and a native version of Inkscape is installed in the prefix you specified or in the Build/bin directory of Inkscape's source code. You can test it by

 cd ../../Build/bin/
./inkscape

NB: if you compiled a GTK theme engine against your old GTK install (i.e. the one with X11) and try to use it with the new install, it will complain, so edit ~/.gtkrc-2.0 to remove the offending theme or recompile it with the new native GTK.

Building Aqua from scratch, 2010

As I had a nicely working X11 version, I didnt care about compiling for X11, so this is an aqua-only procedure, which fairly started from scratch.

Here is what was to do on a G4 (PPC) with Mac OS X 10.4.11:

Install Xcode tools from your OS X installation DVD. Make sure you checked the optional install of MacOSX10.4u.sdk - this especially applies for Snow Leopard 10.6.

Install macports, retrieve the inkscape sources.

In order to install gtk2 on a PowerPC, you may have to apply this workaround: [1]. (Maybe this is obsolete by Feb, 2010).

If you want to use bazaar in order to keep your sources up to date, install it:

sudo port install bzr

How to use bazaar, have a look here: Working with Bazaar.

Then copy into the terminal:

sudo port install autoconf automake

sudo port install librsvg libwpd libwpg libcroco

# older versionsof gtk2 than 2.18.8 need to be patched according to these instructions:
# http://trac.macports.org/ticket/22451

# so rather make sure you installed the latest gtk2  >=2.18.8:

sudo port install gtk2 +quartz+no_x11

sudo port install libxslt boost boehmgc gtkmm lcms intltool popt

sudo port install cairo +quartz+no_x11 cairomm pango +quartz+no_x11 poppler +quartz gtk-engines2

sudo port install gsl

sudo port install hicolor-icon-theme

sudo port install libxml2 libxslt


# optional to speed up the compiling process:
sudo port install ccache
export CC="ccache gcc"
export CXX="ccache g++"
# ++++++++++++++++++++++++++++++++++++++++++++++++++++

cd path-to-inkscape-sources/packaging/macosx

# Edit the file osx-build.sh to uncomment (enable) the configure option --enable-osxapp
# (line 24), if neccessary. I used TextWrangler for this, pico or another command line editor will do the same.

# Back to the terminal:

# autogen
sudo ./osx-build.sh a

# configure it:
sudo ./osx-build.sh c

# build it: 
sudo ./osx-build.sh b

# install it: 
sudo ./osx-build.sh i

# test it:
cd ../../Build/bin/./inkscape

# or double click the inkscape image in path-to-inkscape-sources/Build/bin

# (This may not work - not reason to fall into despair so far, just go ahead an pack it…)

# Build a Mac OS X package:

# download python packages at http://inkscape.modevia.com/macosx-snap/Python-packages.dmg
# put the contents in a folder named "python" and put it somewhere - the following command
# expects it in the folder in which the inkscape sources folder lives

# edit <path-to-inkscape-sources>/packaging/macosx/Resources/bin/inkscape and 
# uncomment line 33: 

# export DYLD_LIBRARY_PATH="$TOP/lib"

cd <path-to-inkscape-sources>/packaging/macosx

# and pack:

./osx-build.sh p -py ../../../python/ 


# If your building runs through smoothly, you can automate the build process for the next version by doing all at once:

sudo ./osx-build.sh a c b i -py ../../../python/ p d

# To avoid X11 from launching simultaneously), edit
inkscape.app/Contents/Resources/script and add at line 45

killall X11

# Hopefully more skilled people than me will find a nicer solution than this very brutal hack.

In the end this procedure works pretty straightforward, delivering a native inkscape which works fairly well.

As the author of this lines knows very little about compiling etc., I do recommend to send requests for support to the devel mailing list (mailto: inkscape-devel@lists.sourceforge.net). I'm reading there and may occasionally have the chance to answer some questions.

Enabling python effects

moved to GettingEffectsWorking. They should work out of the box in the new versions anyway.

Links

User Examples

  • Adam Strzeleki has outlined some improvements to this process on the Inkscape email list. See his screenshot from January 10, 2008 here.
  • JiHO has a video of his builds here and here.
  • Mac OS X native (aqua), PPC-only, Tiger-only build of 0.47, can be retrieved here: [2]. NOT FOR PRODUCTIVE USE - JUST TESTING! - (Nevertheless I'm doing quite a bit productive work on it… (-;)

Apple Documentation

  • Introduction to Runtime Configuration Covers the Info.plist files, Preferences, Environment variables and has a list of the most important Properties that the Property List should contain.

Packaging

  • Sveinbjorn Thordarson's Website The author of Platypus, the Script Exec wrapper that launches the Inkscape binary.
  • Creating OS X application bundles step by step Covers the bundle concepts, copying libraries into the bundle, editing libraries with the install_name_tool, the Info.plist file and adding an icon.
  • Bringing your Java Application to Mac OS X I would regard this a little dated, and the detail is (unsurprisingly) Java-related, but it is a gentle introduction to the role of the .app bundle and give a most clear account of how to create one.
  • The Gimp .app Howto This is a very bare document, and would be of little help to you if you were new to making packages. Note that it seems to refer to a more mature Clipboard technique and Online help than we currently have; and we ought to move to parity in these areas.


See also