blob: 2fa5504d2d2e6a4541fa47a88bdec7c05527ef09 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/tvheadend/tvheadend-3.2.ebuild,v 1.1 2012/10/27 06:09:17 yngwin Exp $
EAPI=4
inherit eutils toolchain-funcs user git-2
DESCRIPTION="A combined DVB receiver, Digital Video Recorder and Live TV streaming server"
HOMEPAGE="https://www.lonelycoder.com/redmine/projects/tvheadend/"
#SRC_URI="https://github.com/downloads/${PN}/${PN}/${P}.tar.gz"
EGIT_REPO_URI="git://github.com/tvheadend/tvheadend.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="avahi xmltv zlib"
DEPEND="dev-libs/openssl
virtual/linuxtv-dvb-headers
avahi? ( net-dns/avahi )
zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}
xmltv? ( media-tv/xmltv )"
pkg_setup() {
enewuser tvheadend -1 -1 /dev/null video
}
src_prepare() {
# set the correct version number
#sed -e "s:(3.1.694):(${PV}):" -i debian/changelog || die 'sed failed!'
# remove '-Werror' wrt bug #438424
sed -e 's:-Werror::' -i Makefile || die 'sed failed!'
}
src_configure() {
econf --prefix="${EPREFIX}"/usr \
--datadir="${EPREFIX}"/usr/share/"${PN}" \
--mandir="${EPREFIX}"/usr/share/man/man1 \
--release \
--disable-dvbscan \
$(use_enable avahi) \
$(use_enable zlib)
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
default
newinitd "${FILESDIR}/tvheadend.initd" tvheadend
newconfd "${FILESDIR}/tvheadend.confd" tvheadend
dodir /etc/tvheadend
fperms 0700 /etc/tvheadend
fowners tvheadend:video /etc/tvheadend
}
pkg_postinst() {
elog "The Tvheadend web interface can be reached at:"
elog "http://localhost:9981/"
elog
elog "Make sure that you change the default username"
elog "and password via the Configuration / Access control"
elog "tab in the web interface."
}
|