GNOME Power Manager

From CBLFS
Revision as of 15:52, 16 January 2007 by Jciccone (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://ftp.gnome.org/pub/GNOME/desktop/2.16/2.16.2/sources/gnome-power-manager-2.16.2.tar.bz2

Dependencies

Required

Recommended

Optional

Configuration Information

If you do not have PolicyKit installed remove the following from the configure command:

--enable-policykit

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --enable-policykit &&
make

Install the package

make install

Multilib

This package does not install any libraries so only one installation is needed.

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 --with-dbus-sys=/etc/dbus-1/system.d \
    --enable-policykit &&
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 --with-dbus-sys=/etc/dbus-1/system.d \
    --enable-policykit &&
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 --with-dbus-sys=/etc/dbus-1/system.d \
    --enable-policykit &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH