blob: ba9c107d430f38c236d0fcdde9a3548987228735 (
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
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit ssl-cert vdr-plugin-2
MY_P="v3.0.6"
DESCRIPTION="VDR Plugin: Web Access To Settings"
HOMEPAGE="https://github.com/MarkusEh/vdr-plugin-live"
SRC_URI="https://github.com/MarkusEh/vdr-plugin-live/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0 GPL-2+ RSA"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="pcre ssl"
DEPEND="media-video/vdr
>=dev-libs/tntnet-3[ssl=]
>=dev-libs/cxxtools-3
pcre? ( >=dev-libs/libpcre-8.12[cxx] )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/vdr-plugin-live-${PV}"
VDR_CONFD_FILE="${FILESDIR}/confd-2.3"
VDR_RCADDON_FILE="${FILESDIR}/rc-addon-2.3.sh"
KEEP_I18NOBJECT="yes"
make_live_cert() {
# TODO: still true?
# ssl-cert eclass creates a "invalid" cert, create our own one
local base=$(get_base 1)
local keydir="/etc/vdr/plugins/live"
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
install -d "${ROOT}${keydir}"
install -m0400 "${base}.key" "${ROOT}${keydir}/live-key.pem"
install -m0444 "${base}.crt" "${ROOT}${keydir}/live.pem"
chown vdr:vdr "${ROOT}${keydir}/live.pem"
chown vdr:vdr "${ROOT}${keydir}/live-key.pem"
}
src_prepare() {
vdr-plugin-2_src_prepare
if ! use pcre; then
sed -i "s:^HAVE_LIBPCRECPP:#HAVE_LIBPCRECPP:" Makefile || die
fi
# do not call ar directly
export _VDRAR="$(tc-getAR)"
sed -e "s:\$(AR):\$(_VDRAR):" \
-i css/Makefile \
-i javascript/Makefile || die
}
src_install() {
vdr-plugin-2_src_install
insinto /usr/share/vdr/plugins/live
doins -r live/*
fowners -R vdr:vdr /usr/share/vdr/plugins/live
}
pkg_postinst() {
vdr-plugin-2_pkg_postinst
elog "To be able to use all functions of vdr-live"
elog "you should emerge and enable"
elog "media-plugins/vdr-epgsearch to search the EPG,"
elog "media-plugins/vdr-streamdev for Live-TV streaming"
elog "The default username/password is:"
elog "\tadmin:live"
if use ssl ; then
make_live_cert
fi
}
|