Difference between revisions of "Vtwm"

From CBLFS
Jump to navigationJump to search
(New page: {|style="text-align: left; background-color: AliceBlue;" |- !Download Source: |http://www.vtwm.org/downloads/vtwm-{{Vtwm-Version}}.tar.gz |} ---- {{Package-Introduction|VTWM is a TWM des...)
 
m (Fixed mispelling...obviously no-one uses vtwm!)
Line 22: Line 22:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
  
  sed -i 's/XCOMM NO_XOUND/NO_XOUND/' Imakefile &&
+
  sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
Line 43: Line 43:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
  
  sed -i 's/XCOMM NO_XOUND/NO_XOUND/' Imakefile &&
+
  sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
Line 61: Line 61:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
  
  sed -i 's/XCOMM NO_XOUND/NO_XOUND/' Imakefile &&
+
  sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
Line 79: Line 79:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
 
Generate the Makefile.  The seds disable system sound support ([[rplay]] build failures) and puts the system-wide configuration file in /etc/twm:
  
  sed -i 's/XCOMM NO_XOUND/NO_XOUND/' Imakefile &&
+
  sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
 
  sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&

Revision as of 17:21, 11 September 2008

Download Source: http://www.vtwm.org/downloads/vtwm-5.4.7.tar.gz

Introduction to Vtwm

VTWM is a TWM descendant that implements a Virtual Desktop (VD)

Project Homepage: http://www.vtwm.org/

Dependencies

Required

Recommended

Non-Multilib

Generate the Makefile. The seds disable system sound support (rplay build failures) and puts the system-wide configuration file in /etc/twm:

sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
sed -i 's@$(LIBDIR)/twm@/etc/twm@' Imakefile &&
xmkmf -a

Compile the package:

make

Install the package:

make install

Multilib

This package does not provide any libraries so only one installation is required.

32Bit

Generate the Makefile. The seds disable system sound support (rplay build failures) and puts the system-wide configuration file in /etc/twm:

sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
sed -i 's@$(LIBDIR)/twm@/etc/twm@' Imakefile &&
USE_ARCH=32 xmkmf -a

Compile the package:

 make CC="gcc ${BUILD32}"

Install the package:

make install

N32

Generate the Makefile. The seds disable system sound support (rplay build failures) and puts the system-wide configuration file in /etc/twm:

sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
sed -i 's@$(LIBDIR)/twm@/etc/twm@' Imakefile &&
USE_ARCH=n32 xmkmf -a

Compile the package:

make CC="gcc ${BUILDN32}"

Install the package:

make install

64Bit

Generate the Makefile. The seds disable system sound support (rplay build failures) and puts the system-wide configuration file in /etc/twm:

sed -i 's/XCOMM NO_SOUND/NO_SOUND/' Imakefile &&
sed -i 's/SOUNDLIB =/XCOMM SOUNDLIB =/' Imakefile &&
sed -i 's/SOUNDINC =/XCOMM SOUNDINC =/' Imakefile &&
sed -i 's@$(LIBDIR)/twm@/etc/twm@' Imakefile &&
USE_ARCH=64 xmkmf -a

Compile the package:

make CC="gcc ${BUILD64}"

Install the package:

make install

Configuring

Contents

Installed Directories: /etc/twm
Installed Programs: vtwm
Installed Libraries: None

Short Descriptions

vtwm is a window manager providing virtual desktops.