Difference between revisions of "ScrollKeeper"

From CBLFS
Jump to navigationJump to search
(Optional)
(Multilib)
Line 40: Line 40:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/usr \
+
  CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
 
     --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
Line 55: Line 55:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
+
  CC="gcc ${BUILDN32}" USE_ARCH=n32 ./configure --prefix=/usr --libdir=/usr/lib32 \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
 
     --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
Line 69: Line 69:
  
 
Compile the package:
 
Compile the package:
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
+
  CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr --libdir=/usr/lib64 \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
 
     --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\

Revision as of 12:42, 16 September 2006

Download Source: http://ftp.gnome.org/pub/gnome/sources/scrollkeeper/0.3/scrollkeeper-0.3.14.tar.bz2

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr \
    --sysconfdir=/etc --localstatedir=/var \
    --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
/opt/kde-3.5.2/share/omf:\
/opt/gnome-2.14.2/share/omf &&
make

Install the package

make install

Multilib

/usr/bin/scrollkeeper-config is not wrapped because it does not contain any arch specific information

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr \
    --sysconfdir=/etc --localstatedir=/var \
    --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
/opt/kde-3.5.2/share/omf:\
/opt/gnome-2.14.2/share/omf &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" USE_ARCH=n32 ./configure --prefix=/usr --libdir=/usr/lib32 \
    --sysconfdir=/etc --localstatedir=/var \
    --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
/opt/kde-3.5.2/share/omf:\
/opt/gnome-2.14.2/share/omf &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr --libdir=/usr/lib64 \
    --sysconfdir=/etc --localstatedir=/var \
    --disable-static --with-omfdirs=/usr/share/omf:/opt/gnome-1.4/share/omf:\
/opt/kde-3.5.2/share/omf:\
/opt/gnome-2.14.2/share/omf &&
make

Install the package

make install