Gtk+

From aldeid
Jump to navigation Jump to search

howto gtk+

Qu'est-ce que gtk+ ?

INCOMPLETE SECTION OR ARTICLE
This section/article is being written and is therefore not complete.
Thank you for your comprehension.

Installation

Dépendances

glib-2.0

Dépendance
# apt-get install gettext
Instalaltion de glib-2.0
# cd /usr/local/src/
# wget http://ftp.gnome.org/pub/gnome/sources/glib/2.20/glib-2.20.4.tar.gz
# tar xzvf glib-2.20.4.tar.gz
# cd glib-2.20.4/
# ./configure
# make
# make install

atk

cairo

Dépendance
# apt-get install librsvg2-dev
Installation de Cairo
# cd /usr/local/src/
# wget http://cairographics.org/releases/cairo-1.8.8.tar.gz
# tar xzvf cairo-1.8.8.tar.gz
# cd cairo-1.8.8/
# ./configure
# make
# make install

pango

# cd /usr/local/src/
# wget http://ftp.gnome.org/pub/gnome/sources/pango/1.24/pango-1.24.4.tar.gz
# tar xzvf pango-1.24.4.tar.gz
# cd pango-1.24.4/
# ./configure
# make
# make install

Installation de GTK+

Raffraîchissement des liens

# ldconfig

Dépendances

# apt-get install libtiff4-dev
# apt-get install libjasper-dev

Installation de GTK+

# cd /usr/local/src/
# wget http://ftp.gnome.org/pub/gnome/sources/gtk+/2.16/gtk+-2.16.4.tar.gz
# tar xzvf gtk+-2.16.4.tar.gz
# cd gtk+-2.16.4/
# ./configure
# make
# make install