System-tools-backends

From CBLFS
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Download Source: http://ftp.gnome.org/pub/gnome/sources/system-tools-backends/2.10/system-tools-backends-2.10.1.tar.bz2

Introduction to System-tools-backends

Project Homepage: Unknown

Dependencies

If Net::Dbus is installed only one installation is needed. If it is not installed system-tools-backends will provide it.

Required

Optional

Creating the stb-admin Group

groupadd -g 61 stb-admin

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} \
    --sysconfdir=/etc &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
USE_ARCH=32 ./configure --prefix=${GNOME_PREFIX} \
    --sysconfdir=/etc &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

N32

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" &&
USE_ARCH=n32 ./configure --prefix=${GNOME_PREFIX} \
    --libdir=${GNOME_PREFIX}/lib32 --sysconfdir=/etc &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

64Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
USE_ARCH=64 ./configure --prefix=${GNOME_PREFIX} \
    --libdir=${GNOME_PREFIX}/lib64 --sysconfdir=/etc &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH