blob: a8cb725c0cee8e448da89f4afb9fd840d6040be4 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/ivtv/ivtv-0.7.1.ebuild,v 1.8 2007/04/27 01:43:45 beandog Exp $
inherit eutils linux-mod
DESCRIPTION="ivtv driver for Hauppauge PVR PCI cards"
HOMEPAGE="http://www.ivtvdriver.org"
SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/0.7.x/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
BUILD_TARGETS="all"
BUILD_PARAMS="KDIR=${KERNEL_DIR}"
RDEPEND="|| ( >=sys-fs/udev-103 sys-apps/hotplug )"
DEPEND="app-arch/unzip"
PDEPEND="=media-tv/pvr-firmware-20061007"
pkg_setup() {
if ! kernel_is 2 6 17; then
eerror "Each IVTV driver branch will only work with a specific"
eerror "linux kernel branch."
eerror ""
eerror "You will need to either:"
eerror "a) emerge a different kernel"
eerror "b) emerge a different driver"
eerror ""
eerror "ivtv branch <--> kernel branch"
eerror "0.8.x <--> 2.6.18.x"
eerror "0.7.x <--> 2.6.17.x"
eerror "0.6.x <--> 2.6.16.x"
eerror "0.4.x <--> 2.6.15.x"
eerror ""
eerror "See http://ivtvdriver.org/ for more information"
die "This only works on 2.6.17 kernels"
fi
linux-mod_pkg_setup
MODULE_NAMES="ivtv(extra:${S}/driver) \
saa717x(extra:${S}/i2c-drivers)"
CONFIG_CHECK="EXPERIMENTAL VIDEO_DEV I2C VIDEO_V4L1 VIDEO_V4L2 FW_LOADER"
CONFIG_CHECK="${CONFIG_CHECK} VIDEO_WM8775 VIDEO_MSP3400 VIDEO_CX25840 VIDEO_TUNER"
CONFIG_CHECK="${CONFIG_CHECK} VIDEO_SAA711X VIDEO_SAA7127 VIDEO_TVEEPROM"
linux_chkconfig_present FB && \
MODULE_NAMES="${MODULE_NAMES} ivtv-fb(extra:${S}/driver)"
linux-mod_pkg_setup
}
src_unpack() {
unpack ${A}
cd ${S}
sed -e "s:^VERS26=.*:VERS26=${KV_MAJOR}.${KV_MINOR}:g" \
-i ${S}/driver/Makefile || die "sed failed"
}
src_compile() {
cd ${S}/driver
linux-mod_src_compile || die "failed to build driver "
cd ${S}/utils
emake || die "failed to build utils "
}
src_install() {
cd ${S}/utils
make KERNELDIR="${KERNEL_DIR}" DESTDIR="${D}" PREFIX=/usr install \
|| die "failed to install utils"
cd ${S}
dodoc README doc/* utils/README.X11
cd ${S}/driver
linux-mod_src_install || die "failed to install modules"
# Add the aliases
insinto /etc/modules.d
newins "${FILESDIR}"/ivtv ivtv
}
|