Difference between revisions of "Icewm"

From CBLFS
Jump to navigationJump to search
m (Last tested version)
Line 1: Line 1:
 
{|-
 
{|-
 
!Download Source:
 
!Download Source:
| http://sourceforge.net/projects/icewm
+
| http://downloads.sourceforge.net/icewm/icewm-1.2.30.tar.gz
 
|}
 
|}
 
As the homepage says, The features of icewm are speed, simplicity, and not getting in the user's way.
 
  
 
----
 
----
Line 12: Line 10:
 
=== Required ===
 
=== Required ===
 
* [[X Window System]]
 
* [[X Window System]]
 
 
=== Optional ===
 
=== Optional ===
 
* [[Imlib2]]
 
* [[Imlib2]]
  
== Multilib Considerations ==
+
== Non-Multilib ==
  
'''''This package does not provide any libraries, so you will only need to install it once.'''''
+
Compile the package:
  
'''If for some reason you wish to use the non-default ABI on a multilib install, remember to configure with'''
+
./configure --prefix=/usr --without-imlib &&
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32
+
  make
  
== Compile and Install ==
+
Install the package:
  
  ./configure --prefix=/usr --without-imlib
+
make install
'''you can omit the --without-imlib switch if imlib is installed'''
+
 
 +
== Multilib ==
 +
'''''This package does not install any libraries so only one installation is needed.'''''
 +
 
 +
=== 32Bit ===
 +
 
 +
Compile the package:
 +
 
 +
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
 +
  ./configure --prefix=/usr --without-imlib &&
 
  make
 
  make
 +
 +
Install the package:
 +
 +
make install
 +
 +
=== N32 ===
 +
 +
Compile the package:
 +
 +
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 \
 +
./configure --prefix=/usr --without-imlib &&
 +
make
 +
 +
Install the package:
 +
 +
make install
 +
 +
=== 64Bit ===
 +
 +
Compile the package:
 +
 +
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
 +
./configure --prefix=/usr --without-imlib &&
 +
make
 +
 +
Install the package:
 +
 
  make install
 
  make install
  
Line 33: Line 69:
  
 
  The default settings are in /etc/icewm-preferences.  Copy this to ~/.icewm/preferences and edit as you please.
 
  The default settings are in /etc/icewm-preferences.  Copy this to ~/.icewm/preferences and edit as you please.
 
== Last tested version ==
 
icewm-1.2.28
 

Revision as of 14:35, 7 January 2007

Download Source: http://downloads.sourceforge.net/icewm/icewm-1.2.30.tar.gz

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --without-imlib &&
make

Install the package:

make install

Multilib

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

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
./configure --prefix=/usr --without-imlib &&
make

Install the package:

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 \
./configure --prefix=/usr --without-imlib &&
make

Install the package:

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
./configure --prefix=/usr --without-imlib &&
make

Install the package:

make install

Configuring Icewm

The default settings are in /etc/icewm-preferences.  Copy this to ~/.icewm/preferences and edit as you please.