blob: c6540ff7a3aa84c6d2b69bdd5051ad7833576922 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdnav/libdvdnav-0.1.10.ebuild,v 1.1 2005/01/16 22:50:34 luckyduck Exp $
DESCRIPTION="Library for DVD navigation tools"
HOMEPAGE="http://sourceforge.net/projects/dvd/"
SRC_URI="mirror://sourceforge/dvd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/libdvdread"
src_compile() {
econf || die "./configure failed"
emake || die "make failed"
}
src_install () {
make DESTDIR="${D}" install || die
dodoc AUTHORS INSTALL NEWS README
}
pkg_postinst() {
einfo
einfo "Please remove old versions of libdvdnav manually,"
einfo "having multiple versions installed can cause problems."
einfo
}
|