blob: ffd870e3bdf2eb2bf032f306a56fff77f324e15f (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/linuxtv-dvb/linuxtv-dvb-1.0.1.ebuild,v 1.6 2004/06/25 00:32:30 agriffis Exp $
DESCRIPTION="Standalone DVB driver for Linux kernel 2.4.x"
HOMEPAGE="http://www.linuxtv.org"
SRC_URI="http://www.linuxtv.org/download/dvb/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~alpha ~ia64 amd64 ~ppc"
IUSE=""
DEPEND="virtual/linux-sources"
#RDEPEND=""
S=${WORKDIR}/${P}
pkg_setup() {
einfo ""
einfo "Please make sure that the following option is enabled"
einfo "in your current kernel 'Multimedia devices'"
einfo "and /usr/src/linux point's to your current kernel"
einfo "or make will die."
einfo ""
}
src_compile() {
emake
}
src_install() {
# install the driver
cd ${S}/driver
mv Makefile Makefile.orig
# don't run depmod now!
sed s/'depmod'/'#depmod'/ Makefile.orig > Makefile
make DESTDIR=${D} install || die
# install av7110_loadkeys
dobin ${S}/apps/av7110_loadkeys/av7110_loadkeys \
${S}/apps/av7110_loadkeys/evtest
# install dvbnet
cd ${S}/apps/dvbnet
make DESTDIR=${D}usr/bin install || die
# install scan
dobin ${S}/apps/scan/scan
# install szap
dobin ${S}/apps/szap/[tsc]zap
dodoc ${S}/apps/szap/channels.conf-dvb*
# 'install' test
dodir /usr/share/doc/${P}/test
insinto /usr/share/doc/${P}/test
doins ${S}/apps/test/*
# install headers
dodir /usr/include/linux
insinto /usr/include/linux
doins ${S}/include/linux/em8300.h
dodir /usr/include/linux/dvb
insinto /usr/include/linux/dvb
doins ${S}/include/linux/dvb/*.h
# install docs
dodoc ${S}/doc/*
dodoc ${S}/driver/makedev.napi
dodir /usr/share/doc/${P}/dvbapi
insinto /usr/share/doc/${P}/dvbapi
doins ${S}/doc/dvbapi/*
# install av7110_loadkeys docs
dodir /usr/share/doc/${P}/av7110_loadkeys
insinto /usr/share/doc/${P}/av7110_loadkeys
cd ${S}/apps/av7110_loadkeys
doins README *.rc5 *.rcmm
# install dvbnet scripts
dodir /usr/share/doc/${P}/dvbnet
insinto /usr/share/doc/${P}/dvbnet
doins ${S}/apps/dvbnet/net_start.*
# install scan docs
dodir /usr/share/doc/${P}/scan
insinto /usr/share/doc/${P}/scan
doins ${S}/apps/scan/README
# install test docs
dodir /usr/share/doc/${P}/test
insinto /usr/share/doc/${P}/test
doins ${S}/apps/test/README
cd ${S}
dodoc CONTRIBUTORS COPYING INSTALL README NEWS BUGS
dodoc ${FILESDIR}/dvb
}
pkg_postinst() {
depmod -a
einfo ""
einfo "If you don't use devfs, execute makedev.napi o create"
einfo "the device nodes. The file is in /usr/share/doc/${PF}/"
einfo ""
einfo "now copy an appropriate from"
einfo "/usr/share/doc/${PF}/channels.conf-XXX"
einfo "channel list for DVB-S/C/T"
einfo " to ~/.szap/channels.conf"
einfo " ~/.czap/channels.conf"
einfo " ~/.tzap/channels.conf"
einfo "and then call szap for DVB-S, czap for DVB-C or tzap for DVB-T"
einfo ""
einfo "If you'd like to load all modules at once, unpack and add"
einfo "/usr/share/doc/${PF}/dvb.gz to /etc/modules.d/"
einfo "then run #update-modules to update your modules.conf"
einfo ""
}
pkg_postrm() {
depmod -a
}
|