Difference between revisions of "Xaw3d"

From CBLFS
Jump to navigationJump to search
 
Line 6: Line 6:
  
 
----
 
----
 +
'''Xaw3d-1.5E.tar.gz''' will extract into '''xc/lib/Xaw3d'''. '''cd''' into that directory before running the commands in this page.
  
 
== Introduction to Xaw3d ==
 
== Introduction to Xaw3d ==
Line 20: Line 21:
 
Compile the package:
 
Compile the package:
  
  sed -i "s:X11/Xaw3d/::" *.{c,h}
+
  sed -i "s:X11/Xaw3d/::" *.{c,h} &&
  xmkmf
+
  xmkmf &&
 
  make EXTRA_INCLUDES=-I.
 
  make EXTRA_INCLUDES=-I.
  
Line 34: Line 35:
 
Compile the package:
 
Compile the package:
  
  sed -i "s:X11/Xaw3d/::" *.{c,h}
+
  sed -i "s:X11/Xaw3d/::" *.{c,h} &&
  USE_ARCH=32 xmkmf
+
  USE_ARCH=32 xmkmf &&
 
  make EXTRA_INCLUDES=-I.
 
  make EXTRA_INCLUDES=-I.
  
Line 46: Line 47:
 
Compile the package:
 
Compile the package:
  
  sed -i "s:X11/Xaw3d/::" *.{c,h}
+
  sed -i "s:X11/Xaw3d/::" *.{c,h} &&
  USE_ARCH=n32 xmkmf
+
  USE_ARCH=n32 xmkmf &&
 
  make EXTRA_INCLUDES=-I.
 
  make EXTRA_INCLUDES=-I.
  
Line 58: Line 59:
 
Compile the package:
 
Compile the package:
  
  sed -i "s:X11/Xaw3d/::" *.{c,h}
+
  sed -i "s:X11/Xaw3d/::" *.{c,h} &&
  USE_ARCH=64 xmkmf
+
  USE_ARCH=64 xmkmf &&
 
  make EXTRA_INCLUDES=-I.
 
  make EXTRA_INCLUDES=-I.
  

Revision as of 13:02, 16 December 2006

Download Source: ftp://ftp.visi.com/users/hawkeyd/X/Xaw3d-1.5E.tar.gz

Xaw3d-1.5E.tar.gz will extract into xc/lib/Xaw3d. cd into that directory before running the commands in this page.

Introduction to Xaw3d

Xaw3d is a general-purpose replacement for the Athena toolkit which adds a 3D appearance and support for XPM images.

Dependencies

Required

Non-Multilib

Compile the package:

sed -i "s:X11/Xaw3d/::" *.{c,h} &&
xmkmf &&
make EXTRA_INCLUDES=-I.

Install the package:

make install

Multilib

32Bit

Compile the package:

sed -i "s:X11/Xaw3d/::" *.{c,h} &&
USE_ARCH=32 xmkmf &&
make EXTRA_INCLUDES=-I.

Install the package:

make install

N32

Compile the package:

sed -i "s:X11/Xaw3d/::" *.{c,h} &&
USE_ARCH=n32 xmkmf &&
make EXTRA_INCLUDES=-I.

Install the package:

make install

64Bit

Compile the package:

sed -i "s:X11/Xaw3d/::" *.{c,h} &&
USE_ARCH=64 xmkmf &&
make EXTRA_INCLUDES=-I.

Install the package:

make install