diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-01-30 22:28:16 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-01-30 22:28:16 +0000 |
commit | 4e6d8f4c51947fd21126dfd60400f84c3900fc92 (patch) | |
tree | 651d08d2e87c264e949730374ce93c143cc3a81a /media-video | |
parent | initial revision (diff) | |
download | gentoo-2-4e6d8f4c51947fd21126dfd60400f84c3900fc92.tar.gz gentoo-2-4e6d8f4c51947fd21126dfd60400f84c3900fc92.tar.bz2 gentoo-2-4e6d8f4c51947fd21126dfd60400f84c3900fc92.zip |
forgot to remove a file
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 - -} - |