Difference between revisions of "GDL"

From CBLFS
Jump to navigationJump to search
(Created page.)
 
Line 15: Line 15:
 
=== Required ===
 
=== Required ===
 
* [[pkg-config]]
 
* [[pkg-config]]
* [[Perl Modules]] XML::Parser
+
* [[Perl Module XML::Parser]]
 
* [[Gtk2]]
 
* [[Gtk2]]
 
* [[libglade]]
 
* [[libglade]]
* [[glib2]]
+
* [[Glib2]]
 +
* [[libgnomeui]]
 +
* [[LibXML2]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
  
 
Compile the package:
 
Compile the package:
 +
 
  ./configure --prefix=/usr &&
 
  ./configure --prefix=/usr &&
 
  make
 
  make
  
 
Install the package:
 
Install the package:
 +
 
  make install
 
  make install
  
Line 33: Line 37:
 
=== 32Bit ===
 
=== 32Bit ===
  
  To do ...
+
Compile the package:
 +
 
 +
CC="gcc ${BUILD32}" USE_ARCH=32 \
 +
PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 \
 +
  ./configure --prefix=/usr &&
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
  
 
=== N32 ===
 
=== N32 ===
  
  To do ...
+
Compile the package:
 +
 
 +
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
 +
PKG_CONFIG_PATH=$PKG_CONFIG_PATHN32 \
 +
  ./configure --prefix=/usr --libdir=/usr/lib32 &&
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
  
 
=== 64Bit ===
 
=== 64Bit ===
  
  To do ...
+
Compile the package:
 +
 
 +
CC="gcc ${BUILD64}" USE_ARCH=64 \
 +
PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 \
 +
  ./configure --prefix=/usr --libdir=/usr/lib64 &&
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
  
 
== Contents ==
 
== Contents ==

Revision as of 13:12, 31 December 2006

Download Source: http://ftp.gnome.org/pub/GNOME/sources/gdl/2.28/gdl-2.28.2.tar.bz2

Introduction to GDL

This GDL is the GNOME DevTools Library.

Homepage: http://www.gnome.org

Dependencies

Required

Non-Multilib

Compile the package:

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

Install the package:

make install

Multilib

32Bit

Compile the package:

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

Install the package:

make install

N32

Compile the package:

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

Install the package:

make install

64Bit

Compile the package:

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

Install the package:

make install

Contents

Installed Directories: /usr/include/libgdl-1.0/gdl, /usr/share/gdl/glade
Installed Libraries: libgdl-1.{a,so}

Short Descriptions

libgdl-1: The library containing the development tools.