Gtk2: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
No edit summary
Line 3: Line 3:
!Download Source:
!Download Source:
| ftp://ftp.gtk.org/pub/gtk/v2.10/gtk+-2.10.3.tar.bz2
| ftp://ftp.gtk.org/pub/gtk/v2.10/gtk+-2.10.3.tar.bz2
|-
!Required Patch (For Multilib):
| http://svn.cross-lfs.org/svn/repos/patches/gtk+/gtk+-2.10.3-multilib-1.patch
|}
|}


Line 38: Line 41:


=== 32Bit ===
=== 32Bit ===
The following commands make Gtk put it's configuration information in /etc/gtk-2.0-32:
patch -Np1 -i ../gtk+-2.10.3-multilib-1.patch
sed -i "s/BUILDENV/32/" gdk-pixbuf/gdk-pixbuf-io.c \
    gdk-pixbuf/Makefile.am gdk-pixbuf/Makefile.in \
    modules/input/Makefile.am modules/input/Makefile.in \
    gtk/gtkrc.c


Compile the package:
Compile the package:
Line 50: Line 61:


=== N32 ===
=== N32 ===
The following commands make Gtk put it's configuration information in /etc/gtk-2.0-n32:
patch -Np1 -i ../gtk+-2.10.3-multilib-1.patch
sed -i "s/BUILDENV/n32/" gdk-pixbuf/gdk-pixbuf-io.c \
    gdk-pixbuf/Makefile.am gdk-pixbuf/Makefile.in \
    modules/input/Makefile.am modules/input/Makefile.in \
    gtk/gtkrc.c


Compile the package:
Compile the package:
Line 63: Line 82:


=== 64Bit ===
=== 64Bit ===
The following commands make Gtk put it's configuration information in /etc/gtk-2.0-64:
patch -Np1 -i ../gtk+-2.10.3-multilib-1.patch
sed -i "s/BUILDENV/64/" gdk-pixbuf/gdk-pixbuf-io.c \
    gdk-pixbuf/Makefile.am gdk-pixbuf/Makefile.in \
    modules/input/Makefile.am modules/input/Makefile.in \
    gtk/gtkrc.c


Compile the package:
Compile the package:

Revision as of 13:55, 16 September 2006

Download Source: ftp://ftp.gtk.org/pub/gtk/v2.10/gtk+-2.10.3.tar.bz2
Required Patch (For Multilib): http://svn.cross-lfs.org/svn/repos/patches/gtk+/gtk+-2.10.3-multilib-1.patch

Dependencies

Required

Reccomended

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install &&

install -v -m755 -d /usr/share/doc/gtk+-2.8.20/{faq,tutorial} && cp -v -R docs/faq/html/* /usr/share/doc/gtk+-2.8.20/faq && cp -v -R docs/tutorial/html/* /usr/share/doc/gtk+-2.8.20/tutorial

Multilib

32Bit

The following commands make Gtk put it's configuration information in /etc/gtk-2.0-32:

patch -Np1 -i ../gtk+-2.10.3-multilib-1.patch
sed -i "s/BUILDENV/32/" gdk-pixbuf/gdk-pixbuf-io.c \
    gdk-pixbuf/Makefile.am gdk-pixbuf/Makefile.in \
    modules/input/Makefile.am modules/input/Makefile.in \
    gtk/gtkrc.c

Compile the package:

CC="gcc ${BUILD32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 \
    ./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install

N32

The following commands make Gtk put it's configuration information in /etc/gtk-2.0-n32:

patch -Np1 -i ../gtk+-2.10.3-multilib-1.patch
sed -i "s/BUILDENV/n32/" gdk-pixbuf/gdk-pixbuf-io.c \
    gdk-pixbuf/Makefile.am gdk-pixbuf/Makefile.in \
    modules/input/Makefile.am modules/input/Makefile.in \
    gtk/gtkrc.c

Compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATHN32 \
    ./configure --prefix=/usr --libdir=/usr/lib32 \
    --sysconfdir=/etc &&
make

Install the package

make install

64Bit

The following commands make Gtk put it's configuration information in /etc/gtk-2.0-64:

patch -Np1 -i ../gtk+-2.10.3-multilib-1.patch
sed -i "s/BUILDENV/64/" gdk-pixbuf/gdk-pixbuf-io.c \
    gdk-pixbuf/Makefile.am gdk-pixbuf/Makefile.in \
    modules/input/Makefile.am modules/input/Makefile.in \
    gtk/gtkrc.c

Compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 \
    ./configure --prefix=/usr --libdir=/usr/lib64 \
    --sysconfdir=/etc &&
make

Install the package

make install &&
install -v -m755 -d /usr/share/doc/gtk+-2.8.20/{faq,tutorial} &&
cp -v -R docs/faq/html/* /usr/share/doc/gtk+-2.8.20/faq &&
cp -v -R docs/tutorial/html/* /usr/share/doc/gtk+-2.8.20/tutorial
Retrieved from "?title=Gtk2&oldid=1817"