blob: 60d3a48fdba848a34083244e9ae0569dad1c53c6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dvgrab/dvgrab-1.8.ebuild,v 1.1 2005/05/25 18:27:46 luckyduck Exp $
inherit eutils
DESCRIPTION="Digital Video (DV) grabber for GNU/Linux"
HOMEPAGE="http://kino.schirmacher.de/"
SRC_URI="mirror://sourceforge/kino/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="jpeg quicktime"
DEPEND="sys-libs/libavc1394
>=media-libs/libdv-0.102
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_install () {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog README INSTALL TODO NEWS || die "dodoc failed"
}
|