blob: 4050a4cd08bc600211b7f169351e0fd433a60c11 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdv/libdv-0.99-r1.ebuild,v 1.3 2003/08/25 18:47:05 max Exp $
DESCRIPTION="Software codec for dv-format video (camcorders etc)."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://libdv.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64"
IUSE="debug gtk sdl xv"
DEPEND="dev-libs/popt
gtk? ( =x11-libs/gtk+-1.2* )
sdl? ( >=media-libs/libsdl-1.2.4.20020601 )
xv? ( virtual/x11 )"
src_unpack() {
unpack ${A} && cd "${S}"
epatch "${FILESDIR}/${P}-disablegtk.patch"
}
src_compile() {
local myconf
myconf="${myconf} `use_with debug`"
myconf="${myconf} `use_enable gtk` `use_enable gtk gtktest`"
myconf="${myconf} `use_enable sdl`"
myconf="${myconf} `use_enable xv`"
unset CFLAGS CXXFLAGS
econf ${myconf}
make || die "compile problem"
}
src_install () {
einstall
dodoc AUTHORS COPYING COPYRIGHT ChangeLog INSTALL NEWS README* TODO
}
|