blob: 99b6e2cb9b292c7b75404995fb6b48e59c4ec854 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-vompserver/vdr-vompserver-0.3.0.ebuild,v 1.2 2009/05/07 17:56:46 hd_brummy Exp $
EAPI="2"
inherit vdr-plugin
DESCRIPTION="VDR Plugin: server part for MediaMVP device"
HOMEPAGE="http://www.loggytronic.com/vomp.php"
SRC_URI="http://www.loggytronic.com/dl/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=media-video/vdr-1.2.6"
RDEPEND="${DEPEND}"
PATCHES="${FILESDIR}/${P}_vdr-1.7.3-compile.diff"
src_prepare() {
vdr-plugin_src_prepare
sed -i "s:vompserver:vomp:" vompserver.c
}
src_install() {
vdr-plugin_src_install
dodoc README HISTORY
insinto /etc/vdr/plugins/vomp
newins vomp.conf.sample vomp.conf
newins vomp-00-00-00-00-00-00.conf.sample vomp-00-00-00-00-00-00.conf
}
pkg_postinst() {
vdr-plugin_pkg_postinst
echo
elog "Have a look to the VOMP sample files in /etc/vdr/plugins."
echo
elog "You have to download the dongle file (i.e. firmware) and adapt"
elog "the vomp configuration files accordingly."
echo
elog "Please edit up from version ${PN}-0.2.6"
elog "all config files in /etc/vdr/plugins/vomp/"
}
|