blob: d6c3867eb8e3912d2868d4daba9ba83e3718e725 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdv/libdv-0.104-r1.ebuild,v 1.5 2006/02/07 18:06:11 chutzpah Exp $
inherit eutils flag-o-matic
DESCRIPTION="Software codec for dv-format video (camcorders etc)"
HOMEPAGE="http://libdv.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz mirror://gentoo/libdv-0.104-pic-fix.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~sparc ~x86"
IUSE="debug gtk sdl xv"
RDEPEND="dev-libs/popt
gtk? ( =x11-libs/gtk+-1.2* )
sdl? ( >=media-libs/libsdl-1.2.5 )
xv? ( || ( x11-libs/libXv virtual/x11 ) )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
gtk? ( || ( ( x11-proto/xextproto
x11-libs/libXt
)
virtual/x11
)
)"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.99-2.6.patch
epatch "${FILESDIR}"/${PN}-0.104-amd64reloc.patch
epatch "${FILESDIR}"/${PN}-0.104-no-exec-stack.patch
# big patch.. test here hard and fast then push upstream
epatch "${WORKDIR}"/libdv-0.104-pic-fix.patch
# tiny gcc4 fixes
epatch "${FILESDIR}"/${PN}-0.104-gcc4.patch
epunt_cxx #74497
}
src_compile() {
econf \
$(use_with debug) \
$(use_enable gtk) $(use_enable gtk gtktest) \
$(use_enable sdl) \
$(use_enable xv) \
|| die "econf failed"
make || die "compile problem"
}
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog INSTALL NEWS README* TODO
}
|