blob: 60a15eeceb3ae857c0553240d858c097f2554375 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-streamdev/vdr-streamdev-0.3.4-r1.ebuild,v 1.2 2010/05/05 15:17:49 hd_brummy Exp $
EAPI="1"
inherit vdr-plugin eutils
DESCRIPTION="Video Disk Recorder Client/Server streaming plugin"
HOMEPAGE="http://streamdev.vdr-developer.org/"
SRC_URI="http://streamdev.vdr-developer.org/releases/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+client +server"
DEPEND=">=media-video/vdr-1.3.24
!media-plugins/vdr-streamdev-client
!media-plugins/vdr-streamdev-server"
RDEPEND="${DEPEND}"
EXTERNREMUX_PATH=/usr/share/vdr/streamdev/externremux.sh
PATCHES=("${FILESDIR}/${P}-gentoo.diff")
pkg_setup() {
vdr-plugin_pkg_setup
if ! use client && ! use server; then
die "no plugins selected, change useflags and enable at least client or server!"
fi
}
src_unpack() {
vdr-plugin_src_unpack
cd "${S}"
# Moving externremux.sh out of /root
sed -i remux/extern.c \
-e "s#/root/externremux.sh#${EXTERNREMUX_PATH}#"
# make subdir libdvbmpeg respect CXXFLAGS
sed -i Makefile \
-e '/CXXFLAGS.*+=/s:^:#:'
sed -i libdvbmpeg/Makefile \
-e 's:CFLAGS = -g -Wall -O2:CFLAGS = $(CXXFLAGS) :'
for flag in client server; do
if ! use ${flag}; then
sed -i Makefile \
-e '/^all:/s/libvdr-$(PLUGIN)-'${flag}'.so//'
fi
done
fix_vdr_libsi_include server/livestreamer.c
}
src_install() {
vdr-plugin_src_install
cd "${S}"
if use server; then
insinto /etc/vdr/plugins/streamdev
newins streamdevhosts.conf.example streamdevhosts.conf
chown vdr:vdr "${D}"/etc/vdr -R
fi
}
pkg_postinst() {
vdr-plugin_pkg_postinst
elog "If you want to use the externremux-feature, then put"
elog "your custom script as ${EXTERNREMUX_PATH}."
if [[ -e "${ROOT}"/etc/vdr/plugins/streamdevhosts.conf ]]; then
einfo "move config file to new config DIR ${ROOT}/etc/vdr/plugins/streamdev/"
mv "${ROOT}"/etc/vdr/plugins/streamdevhosts.conf "${ROOT}"/etc/vdr/plugins/streamdev/streamdevhosts.conf
fi
}
|