blob: 1511b4a0a6a60bc2c72ac8f5f56fa96f95795bc7 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdread/libdvdread-4.1.3_p1168.ebuild,v 1.2 2009/03/09 18:55:16 beandog Exp $
EAPI="2"
WANT_AUTOCONF="2.5"
inherit eutils autotools multilib
DESCRIPTION="Library for DVD navigation tools"
HOMEPAGE="http://www.mplayerhq.hu/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="+css"
DEPEND="!<=media-libs/libdvdnav-4.1.2
css? ( media-libs/libdvdcss )"
RDEPEND="$DEPEND"
src_unpack() {
unpack ${A}
cd "${S}"
elibtoolize
eautoreconf
}
src_install () {
emake DESTDIR="${D}" install || die "emake install died"
dodoc AUTHORS DEVELOPMENT-POLICY.txt ChangeLog TODO README
}
|