Guile-GTK: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 40: | Line 40: | ||
Compile the package: | Compile the package: | ||
./configure --prefix=/usr && | |||
./configure --prefix=/usr --with-gtkgl=no && | |||
make | make | ||
Install the package: | Install the package: | ||
make install | make install | ||
| Line 50: | Line 52: | ||
=== 32Bit === | === 32Bit === | ||
Compile the package: | |||
export USE_ARCH=32 && | |||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" \ | |||
./configure --prefix=/usr --with-gtkgl=no && | |||
make | |||
Install the package: | |||
make install && | |||
unset USE_ARCH | |||
=== N32 === | === N32 === | ||
Compile the package: | |||
export USE_ARCH=n32 && | |||
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" \ | |||
./configure --prefix=/usr --libdir=/usr/lib32 \ | |||
--with-gtkgl=no && | |||
make | |||
Install the package: | |||
make install && | |||
unset USE_ARCH | |||
=== 64Bit === | === 64Bit === | ||
Compile the package: | |||
export USE_ARCH=64 && | |||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" \ | |||
./configure --prefix=/usr --libdir=/usr/lib64 \ | |||
--with-gtkgl=no && | |||
make | |||
Install the package: | |||
make install && | |||
unset USE_ARCH | |||
== Contents == | == Contents == | ||
| Line 68: | Line 102: | ||
|-valign="top" | |-valign="top" | ||
!Installed Programs: | !Installed Programs: | ||
|build-guile-gtk-2.0 | |build-guile-gtk build-guile-gtk-2.0 | ||
|-valign="top" | |-valign="top" | ||
!Installed Libraries: | !Installed Libraries: | ||
Revision as of 20:53, 31 December 2006
| Download Source: | ftp://ftp.gnu.org/gnu/guile-gtk/guile-gtk-2.0.tar.gz |
|---|
Introduction to GTK-Guile
Guile-gtk is glue code to make GTK+ accesible from Guile so it provides a convenient interface for Scheme programmers to develop visual applications.
Homepage: http://www.gnu.org/software/guile-gtk
Dependencies
Required
Optional
Configuration Information
The following options may be passed to the configure script:
| --with-gdk-pixbuf=<yes/no>: Compile the gtk-2.0 gdk-pixbuf module. |
| --with-libglade=<yes/no> Compile the gtk-2.0 glade module. |
| --with-libglade-modules=LIST Comma separated list of libglade modules to build. |
| --with-gtkgl=<yes/no> Compile the gtk-2.0 gdk-gl and gtk-gl-area modules. |
Non-Multilib
Compile the package:
./configure --prefix=/usr --with-gtkgl=no && make
Install the package:
make install
Multilib
32Bit
Compile the package:
export USE_ARCH=32 &&
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" \
./configure --prefix=/usr --with-gtkgl=no &&
make
Install the package:
make install && unset USE_ARCH
N32
Compile the package:
export USE_ARCH=n32 &&
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" \
./configure --prefix=/usr --libdir=/usr/lib32 \
--with-gtkgl=no &&
make
Install the package:
make install && unset USE_ARCH
64Bit
Compile the package:
export USE_ARCH=64 &&
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" \
./configure --prefix=/usr --libdir=/usr/lib64 \
--with-gtkgl=no &&
make
Install the package:
make install && unset USE_ARCH
Contents
| Installed Directories: | /usr/share/guile-gtk, /usr/share/guile/gtk-2.0, /usr/share/guile/gtk |
|---|---|
| Installed Programs: | build-guile-gtk build-guile-gtk-2.0 |
| Installed Libraries: | libguilegtk-2.0.{a,so}, libguilegdkpixbuf-2.0.{a,so}, libguileglade-2.0.{a,so} |
Short Descriptions
| build-guile-gtk-2.0 | Produces the Guile interface code for Gtk defs. |
|---|