diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-03-25 21:18:35 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-03-25 21:18:35 +0000 |
commit | af11dd2f64a047b818748103c4dba203b9854225 (patch) | |
tree | a2e40097eefa02fe9e0f53e50d962180c8b0d37f /media-video/ogle | |
parent | fix path's in .la files (diff) | |
download | historical-af11dd2f64a047b818748103c4dba203b9854225.tar.gz historical-af11dd2f64a047b818748103c4dba203b9854225.tar.bz2 historical-af11dd2f64a047b818748103c4dba203b9854225.zip |
fix for the now all famous "relink" bug
Diffstat (limited to 'media-video/ogle')
-rw-r--r-- | media-video/ogle/files/digest-ogle-0.8.2-r4 | 1 | ||||
-rw-r--r-- | media-video/ogle/ogle-0.8.2-r4.ebuild | 46 |
2 files changed, 47 insertions, 0 deletions
diff --git a/media-video/ogle/files/digest-ogle-0.8.2-r4 b/media-video/ogle/files/digest-ogle-0.8.2-r4 new file mode 100644 index 000000000000..9774a8b01d9b --- /dev/null +++ b/media-video/ogle/files/digest-ogle-0.8.2-r4 @@ -0,0 +1 @@ +MD5 0b2c949e372b7e79f9106d99c5d2ba45 ogle-0.8.2.tar.gz 480190 diff --git a/media-video/ogle/ogle-0.8.2-r4.ebuild b/media-video/ogle/ogle-0.8.2-r4.ebuild new file mode 100644 index 000000000000..05fbb8ac3504 --- /dev/null +++ b/media-video/ogle/ogle-0.8.2-r4.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bruce A. Locke <blocke@shivan.org> +# $Header: /var/cvsroot/gentoo-x86/media-video/ogle/ogle-0.8.2-r4.ebuild,v 1.1 2002/03/25 21:18:35 spider Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Ogle is a full featured DVD player that supports DVD menus" +SRC_URI="http://www.dtek.chalmers.se/groups/dvd/dist/${P}.tar.gz" +HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd/" + +DEPEND="media-libs/libdvdcss media-libs/jpeg dev-libs/libxml2 media-libs/libdvdread media-libs/a52dec x11-base/xfree" + +src_compile() { + # Fix libxml2. note, this is CLUDGE and not good! + CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml" + CXXFLAGS="${CXXFLAGS} -I/usr/include/libxml2/libxml" + local myconf + + use mmx || myconf="--disable-mmx" + use oss || myconf="${myconf} --disable-oss" + libtoolize --copy --force + ./configure --prefix=/usr --enable-shared --sysconfdir=/etc --host=${CHOST} || die + make CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml -I/usr/include/libxml2" || die + +} + +src_install() { + + make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info docdir=${D}/usr/share/doc/${PF}/html sysconfdir=${D}/etc install || die + dodoc AUTHORS COPYING ChangeLog HISTORY INSTALL NEWS README TODO doc/liba52.txt + + # fix bug #376: ogle build does not install libdvdcontrol shared libs + # if libs are not already installed... (could not find error in makefile) + insinto /usr/lib/ogle + doins ogle/.libs/libdvdcontrol.a + mv ogle/libdvdcontrol.la ogle/libdvdcontrol.la.old + sed 's|/var/tmp/portage/ogle-0.8.2-r2/work/ogle-0.8.2/ogle|/usr/lib/ogle|' ogle/libdvdcontrol.la.old > ogle/libdvdcontrol.la + doins ogle/libdvdcontrol.la + mv ogle/.libs/libdvdcontrol.so.3.2.0U ogle/.libs/libdvdcontrol.so.3.2.0 + doins ogle/.libs/libdvdcontrol.so.3.2.0 + dosym /usr/lib/ogle/libdvdcontrol.so.3.2.0 /usr/lib/ogle/libdvdcontrol.so + dosym /usr/lib/ogle/libdvdcontrol.so.3.2.0 /usr/lib/ogle/libdvdcontrol.so.3 + dosym /usr/lib/ogle /usr/lib/ogle/.libs + +} + |