# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdread/libdvdread-0.9.7.ebuild,v 1.7 2007/01/04 22:39:31 drizzt Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" inherit eutils libtool autotools DESCRIPTION="Provides a simple foundation for reading DVD-Video images" HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd/" SRC_URI="http://www.dtek.chalmers.se/groups/dvd/dist/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" IUSE="" DEPEND=">=media-libs/libdvdcss-1.1.1" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-udfsymbols.patch eautoreconf } src_compile() { local myconf="" use ppc-macos && myconf="--with-libdvdcss=/usr" econf ${myconf} || die "./configure failed" emake || die "make failed" } src_install() { emake install DESTDIR="${D}" || die "make install failed" dodoc AUTHORS ChangeLog NEWS README TODO # install executables dobin src/.libs/* || die cd "${D}"/usr/bin mv ifo_dump ifo_dump_dvdread || die }