Difference between revisions of "CompilingMacOsX"
(→Enabling python effects: modified to include info about lxml) |
(→Compiling Inkscape using MacPorts: updated the list of dependencies) |
||
Line 6: | Line 6: | ||
*Inkscape's dependencies, for example glibmm, gtkmm, lmcs, boehm gc... You can use a package distribution system ([http://www.finkproject.org/ Fink] or [http://www.macports.org/ MacPorts], formerly known as [http://darwinports.opendarwin.org/ DarwinPorts]) or Inkscape all-in-one universal build script to install them. Inkscape requires a recent version of gtk, hence only MacPorts can be used at the moment. Once Fink updates gtk it should not be a problem to use it. | *Inkscape's dependencies, for example glibmm, gtkmm, lmcs, boehm gc... You can use a package distribution system ([http://www.finkproject.org/ Fink] or [http://www.macports.org/ MacPorts], formerly known as [http://darwinports.opendarwin.org/ DarwinPorts]) or Inkscape all-in-one universal build script to install them. Inkscape requires a recent version of gtk, hence only MacPorts can be used at the moment. Once Fink updates gtk it should not be a problem to use it. | ||
== Compiling Inkscape using | == Compiling Inkscape using MacPorts [with X11]== | ||
=== Installing dependencies === | === Installing dependencies === | ||
You can use | You can use MacPorts to list Inkscape dependencies: | ||
<pre>port deps inkscape</pre> | <pre>port deps inkscape</pre> | ||
Some are mandatory and you can install them with the command: | Some are mandatory and you can install them with the command: | ||
<pre>sudo port install boehmgc gtkmm | <pre>sudo port install boehmgc gtkmm intltool libxslt lcms popt boost</pre> | ||
Others provide additional functionality to Inkscape: | Others provide additional functionality to Inkscape: | ||
* <code>gnome-vfs</code> : access to remote servers, in particular import from Open Clipart Library | |||
* <code>aspell</code> : check spelling of text elements [Note: I have never seen it working on OS X] | * <code>aspell</code> : check spelling of text elements [Note: I have never seen it working on OS X] | ||
* <code>libgnomeprintui</code> | * <code>libgnomeprintui</code> | ||
* <code>loudmouth</code> : jabber library used by InkBoard | * <code>loudmouth</code> : jabber library used by InkBoard | ||
<pre>sudo port install aspell libgnomeprintui loudmouth</pre> | <pre>sudo port install gnome-vfs aspell libgnomeprintui loudmouth</pre> | ||
=== For the impatient === | === For the impatient === | ||
There is an automated build script for Mac OS X included with Inkscape source code, in the directory packaging/macosx. It has | There is an automated build script for Mac OS X included with Inkscape source code, in the directory packaging/macosx. It has built-in help: | ||
<pre> cd packaging/macosx/ | <pre> cd packaging/macosx/ | ||
./osx-build.sh help</pre> | ./osx-build.sh help</pre> | ||
Basically to configure, build, install and package Inkscape into a double clickable app bundle you just need to issue the command | Basically to update from svn, generate the configure script, configure, build, install and package Inkscape into a double clickable app bundle you just need to issue the command | ||
<pre>./osx-build.sh | <pre>./osx-build.sh update autogen configure build install -s package</pre> | ||
or more simply | or more simply | ||
<pre>./osx-build.sh c b i -s p</pre> | <pre>./osx-build.sh u a c b i -s p</pre> | ||
or even more simply | |||
<pre>./osx-build.sh all -s</pre> | |||
=== Step by step instructions === | === Step by step instructions === | ||
If you want to know what you | If you want to know what you are doing or to understand how the build script works, please read the following paragraphs. | ||
==== Setting the build environment ==== | ==== 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. | |||
<pre>export LIBPREFIX="/opt/local" | <pre>export LIBPREFIX="/opt/local" | ||
# automake seach path | # automake seach path | ||
Line 55: | Line 59: | ||
<pre>./autogen.sh</pre> | <pre>./autogen.sh</pre> | ||
Then run configure with the options <code>--disable-static --enable-shared</code> and | Then run configure with the options <code>--disable-static --enable-shared</code> and <code>--prefix</code> which sets the directory where the build products are placed. It must be somewhere you have write access to. | ||
<pre>./configure --disable-static --enable-shared --prefix=/path/to/build/products/</pre> | <pre>./configure --disable-static --enable-shared --prefix=/path/to/build/products/</pre> | ||
Line 78: | Line 82: | ||
==== Creating a disk image to distribute Inkscape ==== | ==== Creating a disk image to distribute Inkscape ==== | ||
Inkscape.app created at the previous step is completely | Inkscape.app created at the previous step is completely independent from the original location of the libraries and can therefore be distributed. It will only work on one platform though (PPC or Intel): the one you built it on. | ||
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, with the script: | 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, with the script: | ||
<pre>./osx-dmg.sh</pre> | <pre>./osx-dmg.sh</pre> |
Revision as of 21:25, 31 August 2007
Requirements
To compile Inkscape from source you will need:
- Mac OS X 10.4 (10.3 support is on the way, you are welcome to help if you still have a machine running 10.3)
- XCode 2.3 on OS X 10.4 (i.e. with gcc 4.0.1)
- Inkscape's source code. You can get the official release source code, a SVN snapshot or a copy of the SVN repository.
- Inkscape's dependencies, for example glibmm, gtkmm, lmcs, boehm gc... You can use a package distribution system (Fink or MacPorts, formerly known as DarwinPorts) or Inkscape all-in-one universal build script to install them. Inkscape requires a recent version of gtk, hence only MacPorts can be used at the moment. Once Fink updates gtk it should not be a problem to use it.
Compiling Inkscape using MacPorts [with X11]
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 intltool libxslt lcms popt boost
Others provide additional functionality to Inkscape:
gnome-vfs
: access to remote servers, in particular import from Open Clipart Libraryaspell
: check spelling of text elements [Note: I have never seen it working on OS X]libgnomeprintui
loudmouth
: jabber library used by InkBoard
sudo port install gnome-vfs aspell libgnomeprintui loudmouth
For the impatient
There is an automated build script for Mac OS X included with Inkscape source code, in the directory packaging/macosx. It has built-in help:
cd packaging/macosx/ ./osx-build.sh help
Basically to update from svn, generate the configure script, configure, build, install and package Inkscape into a double clickable app bundle you just need to issue the command
./osx-build.sh update autogen configure build install -s package
or more simply
./osx-build.sh u a c b i -s p
or even more simply
./osx-build.sh all -s
Step by step instructions
If you want to know what you are doing or to understand how the build script works, please read the following paragraphs.
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 an svn checkout you probably need to build the configure script. 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/
I 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 do it), you need to add the option --enable-osxapp
:
./configure {...} --enable-osxapp
If you have loudmouth installed and you want to enable whiteboard functionality in Inkscape, add --enable-inkboard
.
Other configuration options can be set, check the list of options by issuing:
./configure --help
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 /path/to/install/prefix/bin/inkscape ../Info.plist macosx
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 the libraries and can therefore be distributed. It will only work on one platform though (PPC or Intel): the one you built it on. 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, with the script:
./osx-dmg.sh
in the packaging directory for Mac OS X.
Compiling a universal binary of Inkscape using the all-in-one build script
To build a universal build of Inkscape you also need to build Universal versions of all its dependencies (i.e., gtk+, cairo, pango, etc). You can do this using the build-gtk.sh script from the Inkscape repository (it's in packaging/macosx/native-gtk/).
This process is relatively untested, as it is only being used by Michael Wybrow for official Inkscape release builds. If you have any troubles using this process then please report them to Michael (mjwybrow on sourceforge).
The process is:
export PREFIX=/your/install/prefix export UNIVERSAL_BUILD=Yes ./build-gtk bootstrap ./build-gtk build inkscape
Compiling Inkscape as a native application (no X11)
To build a native-GTK build of Inkscape, GTK and some of its dependencies must be built with special options. You can do this using the build-gtk.sh script from the Inkscape repository (it's in packaging/macosx/native-gtk/). This is a modified version of the Imendio native build script, found with instructions on this page: http://developer.imendio.com/projects/gtk-macosx/build-instructions
This process is relatively untested. If you have any troubles using this process then please report them to Michael Wybrow (mjwybrow on sourceforge).
The process is:
export PREFIX=/your/install/prefix ./build-gtk bootstrap ./build-gtk build inkscape
Enabling python effects
Many "effects" in the Effect menu of Inkscape use python as a scripting language. Mac OS X ships with python but without some packages that Inkscape uses: pyXML (which will be suppressed as of version 0.46), numpy and lxml
Binary packages
You can install a binary version compiled by us, downloadable with the development builds of Inkscape:
or in an official stable package for 0.44.PPC or later (their name contains "+python"). You need to copy the folders for pyXML (_xmlplus), numpy (numpy) and lxml (*lxml*.egg) to /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages (there is a link in the dmg on which the folders can be dropped).
Compiling from source
If you prefer, you can install them from source, it is really easy.
pyXML
- download the source code from sourceforge
- unpack the
.tar.gz
file - cd into the newly created directory
- set the variable
MACOSX_DEPLOYMENT_TARGET
to version of your operating system (10.3 for Panther, 10.4 for Tiger, 10.5 for Leopard. It probably won't work on previous systems). In bash syntax this means typing:export MACOSX_DEPLOYMENT_TARGET=10.?
- move the python files and build C extensions by just typing
python setup.py build
- install (the install is system wide so you need administrator rights)
sudo python setup.py install
and type your password.
numpy and lxml
- download the source code from sourceforge numpy repository or lxml download section
- unpack the
.tar.gz
file - cd into the newly created directory
- build C extensions and install (the install is system wide so you need administrator rights)
sudo python setup.py install
and type your password.
Links
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.