Difference between revisions of "Libgnomeui"

From CBLFS
Jump to navigationJump to search
(Non-Multilib)
Line 34: Line 34:
 
If your '''GNOME_PREFIX''' is anything other then /usr, create the following symbolic link:
 
If your '''GNOME_PREFIX''' is anything other then /usr, create the following symbolic link:
  
  ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)/filesystems \
+
  ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \
     /usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)
+
     /usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)
  
 
== Multilib ==
 
== Multilib ==

Revision as of 14:10, 14 March 2011

Download Source: http://ftp.gnome.org/pub/GNOME/sources/libgnomeui/2.24/libgnomeui-2.24.4.tar.bz2

Introduction to Libgnomeui

Project Homepage: Unknown

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} \
    --libexecdir=${GNOME_PREFIX}/lib/libgnomeui &&
make

Install the package

make install

If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:

ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/filesystems \
    /usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)

Multilib

32Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} \
    --libexecdir=${GNOME_PREFIX}/lib/libgnomeui &&
make

Install the package

make install

If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:

ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)/filesystems \
    /usr/lib/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)

Clean up the environment:

unset PKG_CONFIG_PATH

N32

Compile the package:

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

Install the package

make install

If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:

ln -v -s ${GNOME_PREFIX}/lib32/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)/filesystems \
    /usr/lib32/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)

Clean up the environment:

unset PKG_CONFIG_PATH

64Bit

Compile the package:

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

Install the package

make install

If your GNOME_PREFIX is anything other then /usr, create the following symbolic link:

ln -v -s ${GNOME_PREFIX}/lib64/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)/filesystems \
    /usr/lib64/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0.pc)

Clean up the environment:

unset PKG_CONFIG_PATH