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

(-)/media/system/repositories/portage/media-video/dvdauthor/dvdauthor-0.6.14.ebuild (-12 / +35 lines)
Lines 1-26 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
7
inherit autotools
6
8
7
DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players"
9
DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players"
8
HOMEPAGE="http://dvdauthor.sourceforge.net/"
10
HOMEPAGE="http://github.com/ldo/dvdauthor"
9
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
11
#SRC_URI="mirror://gentoo/${P}.tar.bz2"
12
SRC_URI="http://download.github.com/ldo-${PN}-82f726d.tar.gz"
10
13
11
LICENSE="GPL-2"
14
LICENSE="GPL-2"
12
SLOT="0"
15
SLOT="0"
13
KEYWORDS="amd64 ppc ~ppc64 ~sparc x86"
16
KEYWORDS=""
14
IUSE=""
17
IUSE=""
15
18
16
DEPEND="media-libs/libdvdread
19
DEPEND="app-text/docbook-sgml-utils
17
	>=media-gfx/imagemagick-5.5.7.14
20
	dev-libs/fribidi
18
	>=dev-libs/libxml2-2.6.0
21
	>=dev-libs/libxml2-2.6.0
22
	media-libs/libdvdread
23
	|| ( >=media-gfx/imagemagick-5.5.7.14 media-gfx/graphicsmagick )
19
	media-libs/freetype
24
	media-libs/freetype
20
	dev-libs/fribidi
25
	media-libs/libpng
21
	media-libs/libpng"
26
	sys-devel/gettext
27
	sys-libs/zlib
28
	virtual/libiconv"
29
30
S=${WORKDIR}/ldo-${PN}-82f726d
31
32
src_prepare() {
33
	mkdir autotools
34
	cp /usr/share/gettext/config.rpath autotools/ || die
35
	eautoreconf
36
}
37
38
src_configure() {
39
	econf \
40
		--enable-largefile \
41
		--disable-dependency-tracking \
42
		--disable-rpath \
43
		--disable-xmltest
44
}
22
45
23
src_install() {
46
src_install() {
24
	make install DESTDIR="${D}" || die "installation failed"
47
	make install DESTDIR="${D}" || die
25
	dodoc README TODO ChangeLog
48
	dodoc AUTHORS ChangeLog README TODO || die
26
}
49
}

Return to bug 308899