Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 308899 | Differences between
and this patch

Collapse All | Expand All

(-)dvdauthor-0.6.14.ebuild (-11 / +30 lines)
Lines 1-8 Link Here
1
# Copyright 1999-2008 Gentoo Foundation
1
# Copyright 1999-2010 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/dvdauthor-0.6.14.ebuild,v 1.3 2008/12/21 14:51:30 nixnut Exp $
3
# $Header: $
4
4
5
inherit eutils
5
EAPI=2
6
6
7
DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players"
7
DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players"
8
HOMEPAGE="http://dvdauthor.sourceforge.net/"
8
HOMEPAGE="http://dvdauthor.sourceforge.net/"
Lines 10-26 Link Here
10
10
11
LICENSE="GPL-2"
11
LICENSE="GPL-2"
12
SLOT="0"
12
SLOT="0"
13
KEYWORDS="amd64 ppc ~ppc64 ~sparc x86"
13
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
14
IUSE=""
14
IUSE=""
15
15
16
DEPEND="media-libs/libdvdread
16
DEPEND="
17
	>=media-gfx/imagemagick-5.5.7.14
17
	media-libs/libdvdread
18
	>=dev-libs/libxml2-2.6.0
18
	|| (
19
	media-libs/freetype
19
		media-libs/libpng
20
		>=media-gfx/imagemagick-5.5.7.14
21
		media-gfx/graphicsmagick[imagemagick]
22
	)
23
	media-libs/fontconfig
20
	dev-libs/fribidi
24
	dev-libs/fribidi
21
	media-libs/libpng"
25
	media-libs/freetype
26
	>=dev-libs/libxml2-2.6.0
27
	app-text/docbook-sgml-utils
28
	sys-devel/gettext
29
	dev-util/pkgconfig"
30
31
S=${WORKDIR}/${PN}
32
33
src_configure() {
34
	econf \
35
		--enable-largefile \
36
		--disable-dependency-tracking \
37
		--disable-localize-filenames \
38
		--disable-rpath \
39
		--disable-xmltest
40
}
22
41
23
src_install() {
42
src_install() {
24
	make install DESTDIR="${D}" || die "installation failed"
43
	make install DESTDIR="${D}" || die
25
	dodoc README TODO ChangeLog
44
	dodoc AUTHORS ChangeLog README TODO || die
26
}
45
}

Return to bug 308899