# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdnav/libdvdnav-4.1.1_p997-r1.ebuild,v 1.1 2008/02/18 21:07:54 beandog Exp $ WANT_AUTOCONF="2.5" inherit eutils autotools multilib DESCRIPTION="Library for DVD navigation tools" HOMEPAGE="http://mplayerhq.hu/" SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" IUSE="debug" DEPEND="media-libs/libdvdread" src_compile() { ./configure2 --prefix=/usr --libdir=/usr/$(get_libdir) \ --shlibdir=/usr/$(get_libdir) --enable-static --enable-shared \ --with-dvdread=/usr/include/dvdread --disable-strip --disable-opts \ --extra-cflags=${CFLAGS} $(use_enable debug) || die "configure2 died" emake version.h && emake || die "emake version.h died" emake || die "emake died" } src_install () { emake DESTDIR="${D}" install || die "emake install died" dodoc AUTHORS DEVELOPMENT-POLICY.txt ChangeLog TODO \ doc/dvd_structures }