Difference between revisions of "Gtk OSX Using imendio script"

From GCompris
Jump to: navigation, search
Line 2: Line 2:
 
* [http://developer.imendio.com/projects/gtk-macosx Main page]
 
* [http://developer.imendio.com/projects/gtk-macosx Main page]
 
* [http://developer.imendio.com/projects/gtk-macosx/build-instructions Build instructions]
 
* [http://developer.imendio.com/projects/gtk-macosx/build-instructions Build instructions]
 +
 +
'''warning:''' the name of the script is now <code>gtk-osx-build</code> and not <code>gtk-osx-build.sh</code>
  
 
== Preparation ==
 
== Preparation ==

Revision as of 09:53, 12 March 2007

Imendio port of Gtk on quartz

warning: the name of the script is now gtk-osx-build and not gtk-osx-build.sh

Preparation

I have edited the script to set the prefix:

export PREFIX=${PREFIX-~/opt/gtk}

export PYTHONPATH=$PREFIX/lib/python2.3/site-packages:$PREFIX/lib/python2.3/site-packages/gtk-2.0

Building Gtk

Nothing to comment. ./gtk-osx-build.sh bootstrapping

./gtk-osx-build.sh build

Building python modules

./gtk-osx-build.sh build python

  • error at first run (files exist at install). Clean at second run. strange.
  • pygobject and pygtk needs manuel suppress of docs subdir in Makefile.am. Known problem.

Building GCompris

Need to be inside the gtk-osx environnement . Run ./gtk-osx-build.sh shell.

The right compilation command looks like that: GMSGFMT=/Users/yves/opt/gtk/bin/msgfmt PKG_CONFIG_PATH=/usr/lib/pkgconfig/ ./autogen.sh --disable-gtk-doc --enable-shared --prefix=/Users/yves/opt/gtk/

  • GMSGFMT is becuse there is a detection error. I don't know why.
  • PKG_CONFIG_PATH is to use OSX versions of libxml2 and sqlite3.

If all the dependants libs are installed detected that should give you a working GCompris.

Others LIBS

SDL and SDL_mixer

I have used officials OSX frameworks. The SDL_mixer one seems broken, it does not use #include <SDL/SDL.h> way to wall SDL header. I have modified it manually.