blob: 98f359f386f41e3b04d4940623635b420a8fbd35 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-extb/vdr-extb-0.2.9.ebuild,v 1.2 2008/03/30 12:29:21 hd_brummy Exp $
inherit vdr-plugin
DESCRIPTION="VDR Plugin: used to control the VDR Extension Board"
HOMEPAGE="http://www.deltab.de/content/view/74/76/"
SRC_URI="mirror://vdrfiles/${PN}/${P}.tgz
mirror://vdrfiles/${PN}/extb_firmware_1.08_lircd.conf.zip
mirror://vdrfiles/${PN}/extb.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=media-video/vdr-1.2.5
app-misc/lirc"
src_unpack() {
vdr-plugin_src_unpack
cd "${WORKDIR}"
epatch "${FILESDIR}/${P}-gentoo.diff"
}
src_install() {
vdr-plugin_src_install
dodoc README.de
dodoc "${S}/../lircd.conf.extb_FW1.08"
docinto wakeup
dodoc "${S}/wakeup/README.de"
dobin "${S}/../extb/bin/extb.sh"
dobin "${S}/../extb/bin/picdl"
dobin "${S}/../extb/bin/status.sh"
dobin "${S}/../extb/bin/tx.sh"
dobin "${S}/wakeup/extb-poweroff.pl"
dobin "${S}/wakeup/examples/checkscript.sh"
insinto /usr/share/extb/
doins "${S}/../extb_1.08.hex"
insinto /etc/extb
doins "${S}/../extb/bin/PICflags.conf"
doins "${S}/wakeup/examples/extb-poweroff.conf"
}
pkg_postinst() {
vdr-plugin_pkg_postinst
einfo
einfo "You need to upload the included firmware (1.08)"
einfo "into the extension board and update your lircd.conf"
einfo "See the supplied lircd.conf.extb_FW1.08 in"
einfo "/usr/share/doc/vdrplugin-extb"
}
|