LibBonoboUI-2.24.5

Introduction to LibBonoboUI

The Bonobo User Interface library provides user interface code for Bonobo, the Object Activation Framework for GNOME 2.

This package is known to build and work properly using an LFS-7.2 platform.

[Note]

Note

This is a legacy GNOME-2 package which has been deprecated by the GNOME developers and will be removed from the book in due course. Please ensure that you really want or need it before you build it.

Package Information

LibBonoboUI Dependencies

Required

libglade-2.6.4, libgnome-2.32.1 and libgnomecanvas-2.30.3

Optional

GTK-Doc-1.18

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libbonoboui

Installation of LibBonoboUI

Install LibBonoboUI by running the following commands:

./configure --prefix=$(pkg-config --variable=prefix ORBit-2.0) \
  --disable-static &&
make

To test the results, issue: make check.

Now, as the root user:

make install &&

install -v -m755 -d $(pkg-config \
        --variable=prefix ORBit-2.0)/share/doc/libbonoboui-2.24.5 &&

install -v -m644 doc/*.{dtd,txt,xml,html} $(pkg-config \
        --variable=prefix ORBit-2.0)/share/doc/libbonoboui-2.24.5

Command Explanations

--prefix=$(pkg-config --variable=prefix ORBit-2.0): Setting the prefix using this parameter instead of with $GNOME_PREFIX will ensure that the prefix is consistent with the installation environment and the package will be installed in the correct location.

--disable-static: This switch prevents installation of static versions of the libraries.

--enable-gtk-doc: Use this parameter if GTK-Doc is installed and you wish to rebuild and install the API documentation.

Configuring LibBonoboUI

If you have installed gnome with a different prefix to LibGlade (eg, LibGlade is installed into /usr and LibBonoboUI is installed into /opt/gnome) you will need to add the directory containing the Glade files to the environment variable ${LIBGLADE_MODULE_PATH}. As the root user:

echo export \
   LIBGLADE_MODULE_PATH=$(pkg-config --variable=prefix ORBit-2.0)/lib/libglade/2.0 \
   >> /etc/profile

Contents

Installed Programs: bonobo-browser and test-moniker
Installed Libraries: libbonoboui-2.so and libbonobo.so Glade library
Installed Directories: /usr/include/libbonoboui-2.0/bonobo, /usr/share/doc/libbonoboui-2.24.3, /usr/share/gnome-2.0/ui and /usr/share/gtk-doc/html/libbonoboui

Short Descriptions

libbonoboui-2.so

are the GUI portion of the Bonobo libraries.

Last updated on 2012-09-26 20:18:27 +0000