Difference between revisions of "Fast User Switch Applet"

From CBLFS
Jump to navigationJump to search
 
(Required)
 
(4 intermediate revisions by 2 users not shown)
Line 6: Line 6:
  
 
----
 
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 12: Line 14:
 
* [[GNOME Panel]]
 
* [[GNOME Panel]]
 
* [[GDM]]
 
* [[GDM]]
 +
=== Optional ===
 +
* [[GNOME System Tools]] (For users/groups admin program)
 +
 +
== Configuration Information ==
 +
 +
If you build [[GDM]] with [[usermode]] support then you need to pass the following to configure:
 +
 +
--with-gdm-setup="${GNOME_PREFIX}/bin/gdmsetup"
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 18: Line 28:
  
 
  ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
 
  ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
     --libexecdir=${GNOME_PREFIX}/lib/gast-user-switch-applet \
+
     --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \
 
     --with-gdm-config=/etc/gnome/gdm/custom.conf &&
 
     --with-gdm-config=/etc/gnome/gdm/custom.conf &&
 
  make
 
  make
Line 32: Line 42:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
+
  export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
 +
CC="gcc ${BUILD32}" USE_ARCH=32 \
 
  ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
 
  ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
 
     --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \
 
     --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \
Line 40: Line 51:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
unset PKG_CONFIG_PATH
  
 
=== N32 ===
 
=== N32 ===
Line 46: Line 58:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 \
+
  export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" &&
 +
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
 
  ./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 \
 
  ./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 \
 
       --sysconfdir=/etc/gnome --with-gdm-config=/etc/gnome/gdm/custom.conf \
 
       --sysconfdir=/etc/gnome --with-gdm-config=/etc/gnome/gdm/custom.conf \
Line 54: Line 67:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
unset PKG_CONFIG_PATH
  
 
=== 64Bit ===
 
=== 64Bit ===
  
 
Compile the package:
 
Compile the package:
 
+
  export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
+
CC="gcc ${BUILD64}" USE_ARCH=64 \
 
  ./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 \
 
  ./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 \
 
       --sysconfdir=/etc/gnome --with-gdm-config=/etc/gnome/gdm/custom.conf \
 
       --sysconfdir=/etc/gnome --with-gdm-config=/etc/gnome/gdm/custom.conf \
Line 68: Line 82:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
unset PKG_CONFIG_PATH

Latest revision as of 07:51, 19 August 2007

Download Source: http://ftp.gnome.org/pub/GNOME/sources/fast-user-switch-applet/2.22/fast-user-switch-applet-2.22.0.tar.bz2

Introduction to Fast User Switch Applet

Project Homepage: Unknown

Dependencies

Required

Optional

Configuration Information

If you build GDM with usermode support then you need to pass the following to configure:

--with-gdm-setup="${GNOME_PREFIX}/bin/gdmsetup"

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \
    --with-gdm-config=/etc/gnome/gdm/custom.conf &&
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 \
    --libexecdir=${GNOME_PREFIX}/lib/fast-user-switch-applet \
    --with-gdm-config=/etc/gnome/gdm/custom.conf &&
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 --with-gdm-config=/etc/gnome/gdm/custom.conf \
    --libexecdir=${GNOME_PREFIX}/lib32/fast-user-switch-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 --with-gdm-config=/etc/gnome/gdm/custom.conf \
    --libexecdir=${GNOME_PREFIX}/lib64/fast-user-switch-applet &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH