Difference between revisions of "FreeGLUT"

From CBLFS
Jump to navigationJump to search
(I added the "Contents" section from BLFS.)
(convert sed script into patch)
 
(9 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
|-valign="top"
 
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/freeglut/freeglut-2.4.0.tar.gz
+
| http://downloads.sourceforge.net/freeglut/freeglut-{{FreeGLUT-Version}}.tar.gz
 +
|-
 +
!Download Patch:
 +
| http://svn.cross-lfs.org/svn/repos/patches/freeglut/freeglut-{{FreeGLUT-Version}}-forgive_ISO_C90_warnings-1.patch
 
|}
 
|}
  
 
----
 
----
 +
{{Package-Introduction|FreeGLUT is an alternative to the OpenGL Utility Toolkit (GLUT) library which allows the creation and management of windows containing OpenGL contexts and also read the mouse, keyboard and joystick functions.|http://freeglut.sourceforge.net/}}
  
== Introduction to FreeGLUT ==
 
 
FreeGLUT is intended to be a 100% compatible, completely opensourced clone of the GLUT library. GLUT is a window system independent toolkit for writing OpenGL programs, implementing a simple windowing API, which makes learning about and exploring OpenGL programming very easy.
 
  
 
== Dependencies ==
 
== Dependencies ==
Line 17: Line 18:
  
 
== Non-Multilib ==
 
== Non-Multilib ==
 +
Apply the following patch:
 +
 +
patch -Np1 -i ../freeglut-{{FreeGLUT-Version}}-forgive_ISO_C90_warnings-1.patch
  
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/usr --x-libraries=${XORG_PREFIX}/lib &&
+
  ./configure --prefix=/usr &&
 
  make
 
  make
  
Line 26: Line 30:
  
 
  make install &&
 
  make install &&
  install -v -d -m755 /usr/share/doc/freeglut-2.4.0 &&
+
  install -v -d -m755 /usr/share/doc/freeglut-{{FreeGLUT-Version}} &&
 
  install -v -m644 doc/freeglut_user_interface.html \
 
  install -v -m644 doc/freeglut_user_interface.html \
     /usr/share/doc/freeglut-2.4.0
+
     /usr/share/doc/freeglut-{{FreeGLUT-Version}}
  
 
== Multilib ==
 
== Multilib ==
  
 
=== 32Bit ===
 
=== 32Bit ===
 +
 +
Apply the following patch:
 +
 +
patch -Np1 -i ../freeglut-{{FreeGLUT-Version}}-forgive_ISO_C90_warnings-1.patch
  
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/usr \
+
  CC="gcc ${BUILD32}" USE_ARCH=32 \
    --x-libraries=${XORG_PREFIX}/lib &&
+
./configure --prefix=/usr &&
 
  make
 
  make
  
Line 45: Line 53:
  
 
=== N32 ===
 
=== N32 ===
 +
Apply the following patch:
 +
 +
patch -Np1 -i ../freeglut-{{FreeGLUT-Version}}-forgive_ISO_C90_warnings-1.patch
  
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
+
  CC="gcc ${BUILDN32}" USE_ARCH=n32 \
    --x-libraries=${XORG_PREFIX}/lib32 &&
+
./configure --prefix=/usr --libdir=/usr/lib32 &&
 
  make
 
  make
  
Line 57: Line 68:
  
 
=== 64Bit ===
 
=== 64Bit ===
 +
Apply the following patch:
 +
 +
patch -Np1 -i ../freeglut-{{FreeGLUT-Version}}-forgive_ISO_C90_warnings-1.patch
  
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
+
  CC="gcc ${BUILD64}" USE_ARCH=64 \
    --x-libraries=${XORG_PREFIX}/lib64 &&
+
./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make
 
  make
  
Line 67: Line 81:
  
 
  make install &&
 
  make install &&
  install -v -d -m755 /usr/share/doc/freeglut-2.4.0 &&
+
  install -v -d -m755 /usr/share/doc/freeglut-{{FreeGLUT-Version}} &&
 
  install -v -m644 doc/freeglut_user_interface.html \
 
  install -v -m644 doc/freeglut_user_interface.html \
     /usr/share/doc/freeglut-2.4.0
+
     /usr/share/doc/freeglut-{{FreeGLUT-Version}}
  
 
= Contents =
 
= Contents =
Line 82: Line 96:
 
|-valign="top"
 
|-valign="top"
 
! Installed Directories:
 
! Installed Directories:
| /usr/share/doc/freeglut-2.4.0
+
| /usr/share/doc/freeglut-{{FreeGLUT-Version}}
 
|}
 
|}
  
Line 92: Line 106:
 
| contains functions that implement the OpenGL Utility Toolkit.
 
| contains functions that implement the OpenGL Utility Toolkit.
 
|}
 
|}
 +
 +
[[Category:Graphics Libraries]]

Latest revision as of 06:36, 12 April 2009

Download Source: http://downloads.sourceforge.net/freeglut/freeglut-2.4.0.tar.gz
Download Patch: http://svn.cross-lfs.org/svn/repos/patches/freeglut/freeglut-2.4.0-forgive_ISO_C90_warnings-1.patch

Introduction to FreeGLUT

FreeGLUT is an alternative to the OpenGL Utility Toolkit (GLUT) library which allows the creation and management of windows containing OpenGL contexts and also read the mouse, keyboard and joystick functions.

Project Homepage: http://freeglut.sourceforge.net/


Dependencies

Required

Non-Multilib

Apply the following patch:

patch -Np1 -i ../freeglut-2.4.0-forgive_ISO_C90_warnings-1.patch

Compile the package:

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

Install the package

make install &&
install -v -d -m755 /usr/share/doc/freeglut-2.4.0 &&
install -v -m644 doc/freeglut_user_interface.html \
    /usr/share/doc/freeglut-2.4.0

Multilib

32Bit

Apply the following patch:

patch -Np1 -i ../freeglut-2.4.0-forgive_ISO_C90_warnings-1.patch

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make

Install the package

make install

N32

Apply the following patch:

patch -Np1 -i ../freeglut-2.4.0-forgive_ISO_C90_warnings-1.patch

Compile the package:

CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install

64Bit

Apply the following patch:

patch -Np1 -i ../freeglut-2.4.0-forgive_ISO_C90_warnings-1.patch

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install &&
install -v -d -m755 /usr/share/doc/freeglut-2.4.0 &&
install -v -m644 doc/freeglut_user_interface.html \
    /usr/share/doc/freeglut-2.4.0

Contents

Installed Programs: None
Installed Libraries: libglut.{so,a}
Installed Directories: /usr/share/doc/freeglut-2.4.0

Short Descriptions

libglut.{so,a} contains functions that implement the OpenGL Utility Toolkit.