Difference between revisions of "FLTK"

From CBLFS
Jump to navigationJump to search
Line 3: Line 3:
 
!Download Source:
 
!Download Source:
 
| ftp://ftp3.easysw.com/pub/fltk/snapshots/fltk-1.1.x-r5479.tar.bz2
 
| ftp://ftp3.easysw.com/pub/fltk/snapshots/fltk-1.1.x-r5479.tar.bz2
 +
|-
 +
!Required Patch (For 64Bit):
 +
| http://svn.cross-lfs.org/svn/repos/patches/fltk/fltk-1.1.x-r5479-64bit_fixes-1.patch
 
|}
 
|}
  
Line 16: Line 19:
  
 
== Non-Multilib ==
 
== Non-Multilib ==
 +
 +
If you're building a 64bit system apply the following patch:
 +
 +
patch -Np1 -i ../fltk-1.1.x-r5479-64bit_fixes-1.patch
  
 
Compile the package:
 
Compile the package:
Line 58: Line 65:
 
Compile the package:
 
Compile the package:
  
 +
patch -Np1 -i ../fltk-1.1.x-r5479-64bit_fixes-1.patch &&
 
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr \
 
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr \
 
     --x-libraries=${XORG_PREFIX}/lib64 --libdir=/usr/lib64 &&
 
     --x-libraries=${XORG_PREFIX}/lib64 --libdir=/usr/lib64 &&

Revision as of 11:52, 30 September 2006

Download Source: ftp://ftp3.easysw.com/pub/fltk/snapshots/fltk-1.1.x-r5479.tar.bz2
Required Patch (For 64Bit): http://svn.cross-lfs.org/svn/repos/patches/fltk/fltk-1.1.x-r5479-64bit_fixes-1.patch

Dependencies

Required

Optional

Non-Multilib

If you're building a 64bit system apply the following patch:

patch -Np1 -i ../fltk-1.1.x-r5479-64bit_fixes-1.patch

Compile the package:

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

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr \
    --x-libraries=${XORG_PREFIX}/lib &&
make

Install the package

make install &&
mv -v /usr/bin/fltk-config{,-32}

N32

Compile the package:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr \
    --x-libraries=${XORG_PREFIX}/lib32 --libdir=/usr/lib32 &&
make

Install the package

make install &&
mv -v /usr/bin/fltk-config{,-n32}

64Bit

Compile the package:

patch -Np1 -i ../fltk-1.1.x-r5479-64bit_fixes-1.patch &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr \
    --x-libraries=${XORG_PREFIX}/lib64 --libdir=/usr/lib64 &&
make

Install the package

make install &&
mv -v /usr/bin/fltk-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/fltk-config