blob: a0d444d29a12d8199cbff869ee25e458d25fa5b2 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/gv4l/gv4l-2.2.3.ebuild,v 1.4 2004/07/14 21:43:22 agriffis Exp $
DESCRIPTION="Gv4l is a GUI frontend for the V4L functions of transcode"
HOMEPAGE="http://gv4l.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
DEPEND=">=gnome-base/libgnomeui-2.0"
RDEPEND=">=media-video/transcode-0.6.7
media-tv/xawtv"
src_compile() {
cd ${S}
econf ${myconf} || die "configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog README TODO
}
|