Difference between revisions of "GNOME Utilities"

From CBLFS
Jump to navigationJump to search
(Optional)
(Dependencies)
Line 17: Line 17:
 
* [[HAL]]
 
* [[HAL]]
 
* [[usermode]]
 
* [[usermode]]
 +
 +
== Configuration Information ==
 +
 +
If you have [[usermode]] installed and would like to utilize consolehelper pass the following argument to configure:
 +
 +
--enable-console-helper=yes
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Revision as of 14:36, 28 October 2006

Download Source: http://ftp.gnome.org/pub/gnome/sources/gnome-utils/2.16/gnome-utils-2.16.1.tar.bz2

Dependencies

Required

Optional

Configuration Information

If you have usermode installed and would like to utilize consolehelper pass the following argument to configure:

--enable-console-helper=yes

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --libexecdir=${GNOME_PREFIX}/lib/gnome-utils \
    --mandir=${GNOME_PREFIX}/share/man --with-pam-prefix=/etc &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --libexecdir=${GNOME_PREFIX}/lib/gnome-utils \
    --mandir=${GNOME_PREFIX}/share/man --with-pam-prefix=/etc &&
make

Install the package

make install &&
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} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --libexecdir=${GNOME_PREFIX}/lib/gnome-utils \
    --mandir=${GNOME_PREFIX}/share/man --with-pam-prefix=/etc \
    --libdir=${GNOME_PREFIX}/lib32 &&
make

Install the package

make install &&
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} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --libexecdir=${GNOME_PREFIX}/lib/gnome-utils \
    --mandir=${GNOME_PREFIX}/share/man --with-pam-prefix=/etc \
    --libdir=${GNOME_PREFIX}/lib64 &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH