blob: 90b936a5ff80470c833f7a71ec793d4742e3bdb3 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/dvdauthor-0.6.11.ebuild,v 1.6 2006/01/28 18:06:49 dertobi123 Exp $
inherit eutils
DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players"
HOMEPAGE="http://dvdauthor.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE=""
DEPEND="media-libs/libdvdread
>=media-gfx/imagemagick-5.5.7.14
>=dev-libs/libxml2-2.5.0
media-libs/libpng"
src_install() {
make install DESTDIR="${D}" || die "installation failed"
dodoc README TODO
}
|