blob: fe1c08c839e7845763d4a88ed97c3db4fe22ccc8 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild,v 1.2 2012/04/17 09:37:49 ssuominen Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards"
HOMEPAGE="http://www.ivtvdriver.org/"
SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/1.4.x/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="perl"
DEPEND="!media-tv/ivtv"
RDEPEND="${DEPEND}
media-tv/v4l-utils
perl? (
dev-perl/Video-Frequencies
dev-perl/Video-ivtv
dev-perl/Config-IniFiles
virtual/perl-Getopt-Long
dev-perl/perl-tk
)"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-1.4.0-gentoo.patch \
"${FILESDIR}"/${PN}-1.4.1-overflow.patch
}
src_compile() {
tc-export CC CXX
emake
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install
dodoc ChangeLog README doc/*
if use perl; then
dobin utils/perl/*.pl
dodoc utils/perl/README.ptune
fi
}
|