blob: 10c07ebbd4001a6765c5e8e55f43cd9f382f031d (
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
|
# Copyright 1999-2012 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.20120114.ebuild,v 1.2 2012/03/09 23:25:19 hd_brummy Exp $
EAPI="4"
inherit vdr-plugin ssl-cert
DESCRIPTION="VDR Plugin: Web Access To Settings"
HOMEPAGE="http://live.vdr-developer.org"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ssl"
DEPEND="media-video/vdr
>=dev-libs/tntnet-2.0[ssl=,sdk]
>=dev-libs/cxxtools-2.0
>=dev-libs/libpcre-8.12[cxx]"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${VDRPLUGIN}"
VDR_CONFD_FILE="${FILESDIR}/confd-0.2"
VDR_RCADDON_FILE="${FILESDIR}/rc-addon-0.2.sh"
make_live_cert() {
# ssl-cert eclass create invalide cert, create my own
SSL_ORGANIZATION="${SSL_ORGANIZATION:-VDR Plugin Live}"
SSL_COMMONNAME="${SSL_COMMONNAME:-`hostname -f`}"
echo
gen_cnf || return 1
echo
gen_key 1 || return 1
gen_csr 1 || return 1
gen_crt 1 || return 1
echo
}
src_prepare() {
vdr-plugin_src_prepare
#make it work with /bin/sh as indicated in the file header
sed -e "18s/==/=/" -i buildutil/version-util
sed -e "s/ERROR:/WARNING:/" -i tntconfig.cpp
sed -i "s:^HAVE_LIBPCRECPP:#HAVE_LIBPCRECPP:" Makefile
if ! has_version ">=media-video/vdr-1.7.13"; then
sed -i "s:-include \$(VDRDIR)/Make.global:#-include \$(VDRDIR)/Make.global:" Makefile
fi
}
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 "To be able to use all functions of vdr-live"
elog "you should emerge and enable"
elog "=media-plugins/vdr-epgsearch-0.9.25_beta* to search the EPG,"
elog "media-plugins/vdr-streamdev-0.5.0 for Live-TV streaming"
elog "On first install use login:pass"
elog "\tadmin:live"
ewarn "\t\tWARNiNG!!!"
ewarn "This is a developer snapshot"
einfo "On problems, use the stable amd64, x86 versions of"
einfo "dev-libs/tntnet dev-libs/cxxtools media-plugins/vdr-live"
if use ssl ; then
if path_exists -a "${ROOT}"/etc/vdr/plugins/live/live.key; then
einfo "found SSL cert"
einfo ""
einfo "to create a new SSL cert, run:"
einfo ""
einfo "emerge --config ${PN}"
else
einfo "NO SSL cert found"
einfo ""
einfo "Create SSL cert, now ..."
pkg_config
fi
fi
}
pkg_config() {
make_live_cert
local base=$(get_base 1)
local keydir="/etc/vdr/plugins/live"
install -d "${ROOT}${keydir}"
install -m0400 "${base}.key" "${ROOT}${keydir}/live.key"
install -m0444 "${base}.crt" "${ROOT}${keydir}/live.crt"
chown vdr:vdr "${ROOT}"/etc/vdr/plugins/live/live.*
}
|