Difference between revisions of "Gtk OSX Using imendio script"

From GCompris
Jump to: navigation, search
(Building GCompris)
(Others LIBS)
Line 42: Line 42:
  
 
== Others LIBS ==
 
== Others LIBS ==
 +
We should make our own version of he script adding libart_lgpl, libgnomecanvas and pysqlite2.
  
 
=== SDL and SDL_mixer ===
 
=== 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.
 
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.
 +
 +
=== libart_lgpl ===
 +
This lib is needed for libgnomecanvas.
 +
 +
*get from svn:
 +
<code>
 +
svn co http://svn.gnome.org/svn/libart_lgpl/trunk libart_lgpl
 +
</code>
 +
 +
* configure:
 +
<code>
 +
./autogen.sh --disable-gtk-doc --enable-shared --prefix=/Users/yves/opt/gtk/
 +
</code>
 +
 +
* then <code>make</code> and make install as usual.
 +
 +
=== libgnomecanvas ===
 +
* get from svn:

Revision as of 10:21, 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 (see below) are installed detected that should give you a working GCompris.

Others LIBS

We should make our own version of he script adding libart_lgpl, libgnomecanvas and pysqlite2.

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.

libart_lgpl

This lib is needed for libgnomecanvas.

  • get from svn:

svn co http://svn.gnome.org/svn/libart_lgpl/trunk libart_lgpl

  • configure:

./autogen.sh --disable-gtk-doc --enable-shared --prefix=/Users/yves/opt/gtk/

  • then make and make install as usual.

libgnomecanvas

  • get from svn: