Difference between revisions of "GNOME Applets"

From CBLFS
Jump to navigationJump to search
 
(2 intermediate revisions by 2 users not shown)
Line 6: Line 6:
  
 
----
 
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 16: Line 18:
 
=== Optional ===
 
=== Optional ===
 
* [[libGTop]]
 
* [[libGTop]]
 +
* [[LibGWeather]]
 
* [[gst-plugins-base]]
 
* [[gst-plugins-base]]
 
* [[HAL]]
 
* [[HAL]]
Line 34: Line 37:
 
     --localstatedir=/var/lib \
 
     --localstatedir=/var/lib \
 
     --libexecdir=${GNOME_PREFIX}/lib/gnome-applets \
 
     --libexecdir=${GNOME_PREFIX}/lib/gnome-applets \
     --mandir=${GNOME_PREFIX}/share/man &&
+
     --mandir=${GNOME_PREFIX}/share/man \
 +
    --enable-mixer-applet &&
 
  make
 
  make
  
Line 54: Line 58:
 
     --localstatedir=/var/lib \
 
     --localstatedir=/var/lib \
 
     --libexecdir=${GNOME_PREFIX}/lib/gnome-applets \
 
     --libexecdir=${GNOME_PREFIX}/lib/gnome-applets \
     --mandir=${GNOME_PREFIX}/share/man &&
+
     --mandir=${GNOME_PREFIX}/share/man \
 +
    --enable-mixer-applet &&
 
  make
 
  make
  
Line 73: Line 78:
 
     --localstatedir=/var/lib \
 
     --localstatedir=/var/lib \
 
     --libexecdir=${GNOME_PREFIX}/lib32/gnome-applets \
 
     --libexecdir=${GNOME_PREFIX}/lib32/gnome-applets \
     --mandir=${GNOME_PREFIX}/share/man &&
+
     --mandir=${GNOME_PREFIX}/share/man \
 +
    --enable-mixer-applet &&
 
  make
 
  make
  
Line 92: Line 98:
 
     --localstatedir=/var/lib \
 
     --localstatedir=/var/lib \
 
     --libexecdir=${GNOME_PREFIX}/lib64/gnome-applets \
 
     --libexecdir=${GNOME_PREFIX}/lib64/gnome-applets \
     --mandir=${GNOME_PREFIX}/share/man &&
+
     --mandir=${GNOME_PREFIX}/share/man \
 +
    --enable-mixer-applet &&
 
  make
 
  make
  

Latest revision as of 16:36, 12 September 2009

Download Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-applets/2.32/gnome-applets-2.32.1.1.tar.bz2

Introduction to GNOME Applets

Project Homepage: Unknown

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} \
    --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib \
    --libexecdir=${GNOME_PREFIX}/lib/gnome-applets \
    --mandir=${GNOME_PREFIX}/share/man \
    --enable-mixer-applet &&
make

Install the package

make install &&
make -C man install-man

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-applets \
    --mandir=${GNOME_PREFIX}/share/man \
    --enable-mixer-applet &&
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} \
    --libdir=${GNOME_PREFIX}/lib32 \
    --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib \
    --libexecdir=${GNOME_PREFIX}/lib32/gnome-applets \
    --mandir=${GNOME_PREFIX}/share/man \
    --enable-mixer-applet &&
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} \
    --libdir=${GNOME_PREFIX}/lib64 \
    --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib \
    --libexecdir=${GNOME_PREFIX}/lib64/gnome-applets \
    --mandir=${GNOME_PREFIX}/share/man \
    --enable-mixer-applet &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH