blob: 4ab495ded59995aa30a4e3f3330849c304c67a45 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/vdr-live-0.2.0.ebuild,v 1.6 2011/01/19 16:46:20 hd_brummy Exp $
EAPI="2"
inherit vdr-plugin
DESCRIPTION="VDR Plugin: Web Access To Settings"
HOMEPAGE="http://live.vdr-developer.org"
SRC_URI="http://live.vdr-developer.org/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="media-video/vdr
>=dev-libs/tntnet-1.5.3
>=dev-libs/cxxtools-1.4.3"
RDEPEND="${DEPEND}"
DEPEND="${DEPEND}
|| ( >=sys-devel/gcc-4.1 >=dev-libs/boost-1.33.0 )"
S="${WORKDIR}/${VDRPLUGIN}-${PV}"
src_prepare() {
vdr-plugin_src_prepare
sed -e "18s/==/=/" -i buildutil/version-util
}
src_install() {
vdr-plugin_src_install
cd "${S}/live"
insinto /etc/vdr/plugins/live
doins -r *
chown vdr:vdr -R "${D}"/etc/vdr/plugins/live
}
pkg_postinst() {
vdr-plugin_pkg_postinst
elog "Use for login:pass"
elog "admin:live"
elog "on first install"
elog
elog "To be able to use all functions of vdr-live"
elog "you should emerge and enable vdr-epgsearch"
elog
elog "\temerge vdr-epgsearch"
elog "\teselect vdr-plugin enable epgsearch"
}
|