blob: 0aa3c4319d0fb2772bc4020f697caf1216339914 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dvgrab/dvgrab-1.5.ebuild,v 1.1 2004/03/20 21:36:23 kanaka Exp $
DESCRIPTION="Digital Video (DV) grabber for GNU/Linux"
HOMEPAGE="http://kino.schirmacher.de/"
SRC_URI="http://kino.schirmacher.de/filemanager/download/20/${P}.tar.gz"
LICENSE="GPL-2"
IUSE="jpeg quicktime"
SLOT="0"
KEYWORDS="~x86"
DEPEND="sys-libs/libavc1394
>=media-libs/libdv-0.98
jpeg? ( media-libs/jpeg )
quicktime? ( media-libs/libquicktime )"
# The following would be better but if it's satisfied by
# quicktime4linux then we need to use some special linker options
# (-ldl -lglib)
# quicktime? ( virtual/quicktime )"
src_compile() {
econf ${myconf} || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog README INSTALL TODO NEWS
}
|