blob: 422f70290324effe84d442e02c1dc0bd0a3955df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdread/libdvdread-0.9.6.ebuild,v 1.17 2008/01/29 21:43:22 grobian Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils libtool autotools
DESCRIPTION="Provides a simple foundation for reading DVD-Video images."
SRC_URI="http://www.dtek.chalmers.se/groups/dvd/dist/${P}.tar.gz"
HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86"
IUSE=""
DEPEND=">=media-libs/libdvdcss-1.1.1"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-udfsymbols.patch"
eautoreconf
elibtoolize
}
src_compile() {
local myconf=""
econf ${myconf} || die "./configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "make install failed"
dobin src/.libs/* # install executables
cd ${D}usr/bin
mv ./ifo_dump ./ifo_dump_dvdread
cd ${S}
dodoc AUTHORS ChangeLog NEWS README TODO
}
|