Difference between revisions of "Xfce4-Utils"
(→32Bit) |
Weibullguy (talk | contribs) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 5: | Line 5: | ||
|} | |} | ||
− | + | {{Package-Introduction|Utility programs for Xfce.|http://www.xfce.org}} | |
− | |||
− | Utility programs for Xfce. | ||
− | |||
− | |||
== Dependencies == | == Dependencies == | ||
Line 28: | Line 24: | ||
{| | {| | ||
− | |<i>--enable-gdm:</i> enable the installation of GDM specific files. | + | |<i>--enable-gdm --with-gdm-prefix=/etc/gnome:</i> enable the installation of GDM specific files. |
|- | |- | ||
|<i>--disable-dbus:</i> disable checking for D-BUS support. | |<i>--disable-dbus:</i> disable checking for D-BUS support. | ||
Line 38: | Line 34: | ||
== Non-Multilib == | == Non-Multilib == | ||
+ | |||
+ | If you're building with '''--enable-gdm''' and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place: | ||
+ | |||
+ | sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in | ||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=$XFCE_PREFIX --sysconfdir=/etc && | + | ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && |
make | make | ||
Line 49: | Line 49: | ||
== Multilib == | == Multilib == | ||
+ | '''''This package does not provide any libraries so only one installation is required.''''' | ||
− | + | === 32Bit === | |
− | + | If you're building with '''--enable-gdm''' and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place: | |
+ | |||
+ | sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in | ||
Compile the package: | Compile the package: | ||
USE_ARCH=32 CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | USE_ARCH=32 CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | ||
− | ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc | + | ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && |
make | make | ||
Line 65: | Line 68: | ||
=== N32 === | === N32 === | ||
+ | |||
+ | If you're building with '''--enable-gdm''' and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place: | ||
+ | |||
+ | sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in | ||
Compile the package: | Compile the package: | ||
USE_ARCH=N32 CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | USE_ARCH=N32 CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | ||
− | ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc | + | ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && |
make | make | ||
Install the package: | Install the package: | ||
+ | |||
make install | make install | ||
=== 64Bit === | === 64Bit === | ||
+ | |||
+ | If you're building with '''--enable-gdm''' and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place: | ||
+ | |||
+ | sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in | ||
Compile the package: | Compile the package: | ||
USE_ARCH=64 CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | USE_ARCH=64 CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
− | ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc | + | ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && |
make | make | ||
Line 129: | Line 141: | ||
| | | | ||
|} | |} | ||
+ | |||
+ | [[Category:XFCE]] |
Latest revision as of 09:02, 19 October 2010
Download Source: | http://www.xfce.org/archive/xfce-4.6.2/src/xfce-utils-4.6.2.tar.bz2 |
---|
Contents
Introduction to Xfce4-Utils
Utility programs for Xfce.
Project Homepage: http://www.xfce.org
Dependencies
Required
Optional
Configuration Information
--enable-gdm --with-gdm-prefix=/etc/gnome: enable the installation of GDM specific files. |
--disable-dbus: disable checking for D-BUS support. |
--with-browser=BROWSER: set the default browser. |
--with-terminal=TERMINAL: set the default terminal. |
Non-Multilib
If you're building with --enable-gdm and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place:
sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in
Compile the package:
./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && make
Install the package:
make install
Multilib
This package does not provide any libraries so only one installation is required.
32Bit
If you're building with --enable-gdm and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place:
sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in
Compile the package:
USE_ARCH=32 CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && make
Install the package:
make install
N32
If you're building with --enable-gdm and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place:
sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in
Compile the package:
USE_ARCH=N32 CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && make
Install the package:
make install
64Bit
If you're building with --enable-gdm and your $GNOME_PREFIX is different then your $XFCE_PREFIX make sure that the xfce xsession gets installed to the proper place:
sed -i "/xsessions/s@\$(datadir)@$GNOME_PREFIX/share@g" gdm/Makefile.in
Compile the package:
USE_ARCH=64 CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=${XFCE_PREFIX} --sysconfdir=/etc/xfce && make
Install the package:
make install
Contents
Installed Directories: | $XFCE_PREFIX/share/xfce4/doc, $XFCE_PREFIX/share/dbus-1/services |
---|---|
Installed Programs: | xfrun4, xfterm4, xflock4, xfmountdev4, xfbrowser4, startxfce4, xfhelp4, xfce4-about |
Installed Libraries: | None |
Short Descriptions
xfrun4 | |
---|---|
xfterm4 | |
xflock4 | |
xfmountdev4 | |
xfbrowser4 | |
startxfce4 | |
xfhelp4 | |
xfce4-about |