blob: 82ada1eac0f605f8b46e8c4f667afc6b6ab4fe9a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/rivatv/rivatv-0.8.6-r1.ebuild,v 1.1 2005/11/16 16:50:52 blauwers Exp $
inherit linux-mod toolchain-funcs eutils
S=${WORKDIR}/${P/_/-}
DESCRIPTION="kernel driver for nVidia based cards with video-in"
SRC_URI="mirror://sourceforge/rivatv/${P/_/-}.tar.gz
http://www.fmwb.org/gentoo/rivatv-linux-2.6.14.patch.gz"
HOMEPAGE="http://rivatv.sourceforge.net/"
DEPEND="virtual/x11
>=virtual/linux-sources-2.4.20"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""
CONFIG_CHECK="VIDEO_DEV I2C_ALGOBIT"
MODULE_NAMES="tuner(media/video:${S}:${S}/bttv) tvmixer(media/video:${S}:${S}/bttv) tvaudio(media/video:${S}:${S}/bttv) rivatv(media/video:${S}:${S}/src) \
saa7108e(media/video:${S}:${S}/src) saa7111a(media/video:${S}:${S}/src) saa7113h(media/video:${S}:${S}/src) saa7174hl(media/video:${S}:${S}/src) \
tw98(media/video:${S}:${S}/src) vpx32xx(media/video:${S}:${S}/src)"
BUILD_PARAMS="KSRC=${ROOT}${KV_DIR} KVERS=${KV_MAJOR}${KV_MINOR}"
BUILD_TARGETS="all"
MODULESD_TUNER_ALIASES=("/dev/video0 char-major-81" "/dev/video1 char-major-81" "/dev/video2 char-major-81" "/dev/video3 char-major-81")
src_unpack() {
unpack ${A}
# set compiler
sed -i "s:gcc:$(tc-getCC):" ${S}/Makefile.in
# fix for new coreutils (#31801)
sed -i "s:tail -1:tail -n 1:" ${S}/configure
convert_to_m ${S}/Makefile.in
epatch ${DISTDIR}/rivatv-linux-2.6.14.patch.gz
epatch ${FILESDIR}/rivatv-0.8.6-tuner.patch
}
src_compile() {
econf || die "configure failed"
linux-mod_src_compile
}
pkg_postinst() {
linux-mod_pkg_postinst
einfo "See ${HOMEPAGE} for more information."
}
|