Difference between revisions of "Ogle"

From CBLFS
Jump to navigationJump to search
 
(10 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://www.dtek.chalmers.se/groups/dvd/dist/ogle-0.9.2.tar.gz
+
| http://www.dtek.chalmers.se/groups/dvd/dist/ogle-{{Ogle-Version}}.tar.gz
 
|-
 
|-
 
!Download Gui Source:
 
!Download Gui Source:
| http://www.dtek.chalmers.se/groups/dvd/dist/ogle_gui-0.9.2.tar.gz
+
| http://www.dtek.chalmers.se/groups/dvd/dist/ogle_gui-{{Ogle-Version}}.tar.gz
 +
|-
 +
!Download Patch:
 +
| http://oppiz.net/ogle-{{Ogle-Version}}-gcc4.patch
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
  
Required
+
=== Required ===
 
+
*[[Libdvdcss]]
 +
*[[Libdvdread]]
 +
*[[Libjpeg]]
 +
*[[LibXML2]]
 +
*[[Libmad]]
 
*[[Liba52]]
 
*[[Liba52]]
*[[libglade]]
+
*[[Libglade]]
 
*[[gtk2]]
 
*[[gtk2]]
  
Line 22: Line 31:
 
Configure and compile the package:
 
Configure and compile the package:
  
 +
patch -Np1 -i ../ogle-{{Ogle-Version}}-gcc4.patch &&
 
  ./configure --prefix=/usr &&
 
  ./configure --prefix=/usr &&
 
  make
 
  make
Line 37: Line 47:
  
 
  make install
 
  make install
 
  
 
== Multilib ==
 
== Multilib ==
Line 45: Line 54:
 
Configure and compile the package:
 
Configure and compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
+
patch -Np1 -i ../ogle-{{Ogle-Version}}-gcc4.patch &&
 +
  CC="gcc ${BUILD32}" LDFLAGS="-L/usr/lib" ./configure --prefix=/usr \
 +
    --x-libraries=${XORG_PREFIX}/lib &&
 
  make
 
  make
  
Line 54: Line 65:
 
Configure and compile the Gui package:
 
Configure and compile the Gui package:
  
  CC="gcc -m32" USE_ARCH=32 PKG_CONFIG_PATH=/usr/lib/pkgconfig \
+
  CC="gcc ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
 
  ./configure --prefix=/usr --enable-gtk2 &&
 
  ./configure --prefix=/usr --enable-gtk2 &&
 
  make  
 
  make  
Line 61: Line 72:
  
 
  make install
 
  make install
 
  
 
=== N32 ===
 
=== N32 ===
Line 71: Line 81:
 
Configure and compile the package:
 
Configure and compile the package:
  
  CC="gcc ${BUILD64}" LDFLAGS="-L/usr/lib64" ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
patch -Np1 -i ../ogle-{{Ogle-Version}}-gcc4.patch &&
 +
sed -i "/-L/s:/lib:&64:g" configure &&
 +
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
 +
    --x-libraries=${XORG_PREFIX}/lib64 &&
 +
sed -i -e "/^sys_lib_search_path_spec=/s:/lib:&64:g" \
 +
        -e "/^sys_lib_dlsearch_path_spec=/s:/lib:&64:g" libtool &&
 
  make
 
  make
  
Line 80: Line 95:
 
Configure and compile Gui package:
 
Configure and compile Gui package:
  
  CC="gcc -m64" USE_ARCH=64 PKG_CONFIG_PATH=/usr/lib64/pkgconfig LDFLAGS="-L/usr/lib64" \
+
sed -i "/-L/s:/lib:&64:g" configure &&
  ./configure --prefix=/usr --enable-gtk2 &&
+
  CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 +
  ./configure --prefix=/usr --libdir=/usr/lib64 --enable-gtk2 &&
 
  make  
 
  make  
  
Line 92: Line 108:
 
Ogle is a free DVD player. It will utilize DVD Menus and has a simple gui.
 
Ogle is a free DVD player. It will utilize DVD Menus and has a simple gui.
  
*[[Main Page]]
+
[[Category:Media Utilities]]

Latest revision as of 16:19, 19 March 2009

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
Download Patch: http://oppiz.net/ogle-0.9.2-gcc4.patch

Introduction to Ogle

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

Configure and compile the package:

patch -Np1 -i ../ogle-0.9.2-gcc4.patch &&
./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:

patch -Np1 -i ../ogle-0.9.2-gcc4.patch &&
CC="gcc ${BUILD32}" LDFLAGS="-L/usr/lib" ./configure --prefix=/usr \
    --x-libraries=${XORG_PREFIX}/lib &&
make

Install the package:

make install

Configure and compile the Gui package:

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

Install the package:

make install

N32

TO DO!

64Bit

Configure and compile the package:

patch -Np1 -i ../ogle-0.9.2-gcc4.patch &&
sed -i "/-L/s:/lib:&64:g" configure &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
    --x-libraries=${XORG_PREFIX}/lib64 &&
sed -i -e "/^sys_lib_search_path_spec=/s:/lib:&64:g" \
       -e "/^sys_lib_dlsearch_path_spec=/s:/lib:&64:g" libtool &&
make

Install the package:

make install

Configure and compile Gui package:

sed -i "/-L/s:/lib:&64:g" configure &&
CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 --enable-gtk2 &&
make 

Install the package:

make install

Contents

Ogle is a free DVD player. It will utilize DVD Menus and has a simple gui.