Ogle

From CBLFS
Revision as of 00:14, 8 October 2006 by Oppiz (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://www.dtek.chalmers.se/groups/dvd/dist/ogle-0.9.2.tar.gz
Download Gui Source: http://www.dtek.chalmers.se/groups/dvd/dist/ogle_gui-0.9.2.tar.gz

Dependencies

Required

Non-Multilib

Configure and compile the package:

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

Install the package:

make install

Configure and compile the Gui package:

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

Install the package:

make install


Multilib

32Bit

Configure and compile the package:

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

Install the package:

make install

Configure and compile the Gui package:

CC="gcc -m32" USE_ARCH=32 PKG_CONFIG_PATH=/usr/lib/pkgconfig \
./configure --prefix=/usr --enable-gtk2 &&
make 

Install the package:

make install


N32

TO DO!

64Bit

Configure and compile the package:

CC="gcc ${BUILD64}" LDFLAGS="-L/usr/lib64" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install

Configure and compile Gui package:

CC="gcc -m64" USE_ARCH=64 PKG_CONFIG_PATH=/usr/lib64/pkgconfig LDFLAGS="-L/usr/lib64" \
./configure --prefix=/usr --enable-gtk2 &&
make 

Install the package:

make install