blob: 4a8f2bd40e8457b0b5c38ce6e2d2b19616f00598 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/rivatv/rivatv-0.8.4.ebuild,v 1.3 2004/04/27 20:47:24 agriffis Exp $
inherit eutils
S=${WORKDIR}/${P/_/-}
DESCRIPTION="kernel driver for nVidia based cards with video-in"
SRC_URI="http://unc.dl.sourceforge.net/sourceforge/rivatv/${P/_/-}.tar.gz"
HOMEPAGE="http://rivatv.sourceforge.net/"
DEPEND="virtual/x11
>=virtual/linux-sources-2.4.17"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
#src_unpack() {
#unpack ${A}
#cd ${S}
#epatch ${FILESDIR}/${P/_/-}-configure.patch
#}
src_compile() {
#cd rivatv/linux/drivers/media/video
sed -i -e 's/^install: devices.*/install:/' Makefile.in
econf || die
emake || die
}
src_install () {
modp=`awk '/^MODULES/{ print "'${D}'" $3}' Makefile` || die
mkdir -p ${modp} || die
emake MODULES=${modp} DEPMOD=":" install || die
dodoc README
}
pkg_postinst() {
depmod -a
einfo "To load the module automatically at boot up, add these and"
einfo "\"rivatv\" to your /etc/modules.autoload."
einfo
einfo "Also, see ${HOMEPAGE} for more information."
}
|