diff options
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ogle/ogle-0.8.2-r1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/media-video/ogle/ogle-0.8.2-r1.ebuild b/media-video/ogle/ogle-0.8.2-r1.ebuild deleted file mode 100644 index 6fe53dbfa826..000000000000 --- a/media-video/ogle/ogle-0.8.2-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Bruce A. Locke -# $Header: /var/cvsroot/gentoo-x86/media-video/ogle/ogle-0.8.2-r1.ebuild,v 1.1 2002/01/29 18:09:14 blocke 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() { - - local myconf - - use mmx || myconf="--disable-mmx" - use oss || myconf="${myconf} --disable-oss" - - ./configure --prefix=/usr --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) - into /usr/lib/ogle - doins ogle/.libs/libdvdcontrol.a - doins ogle/libdvdcontrol.la - 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 - -} - |