diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-01-30 21:09:48 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-01-30 21:09:48 +0000 |
commit | a3f58bc7974fbef93264db2e922448dd87bf1bd7 (patch) | |
tree | fc0a1ffebd4990cafb7c16be509e73957a3fe996 /media-video | |
parent | initial revision. (diff) | |
download | gentoo-2-a3f58bc7974fbef93264db2e922448dd87bf1bd7.tar.gz gentoo-2-a3f58bc7974fbef93264db2e922448dd87bf1bd7.tar.bz2 gentoo-2-a3f58bc7974fbef93264db2e922448dd87bf1bd7.zip |
ogle library fix try #2 (bug #418)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ogle/files/digest-ogle-0.8.2-r2 (renamed from media-video/ogle/files/digest-ogle-0.8.2-r1) | 0 | ||||
-rw-r--r-- | media-video/ogle/ogle-0.8.2-r2.ebuild | 42 |
2 files changed, 42 insertions, 0 deletions
diff --git a/media-video/ogle/files/digest-ogle-0.8.2-r1 b/media-video/ogle/files/digest-ogle-0.8.2-r2 index 9774a8b01d9b..9774a8b01d9b 100644 --- a/media-video/ogle/files/digest-ogle-0.8.2-r1 +++ b/media-video/ogle/files/digest-ogle-0.8.2-r2 diff --git a/media-video/ogle/ogle-0.8.2-r2.ebuild b/media-video/ogle/ogle-0.8.2-r2.ebuild new file mode 100644 index 000000000000..cffd5640e420 --- /dev/null +++ b/media-video/ogle/ogle-0.8.2-r2.ebuild @@ -0,0 +1,42 @@ +# 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-r2.ebuild,v 1.1 2002/01/30 21:09:48 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 --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 + 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 + +} + |