blob: b33a9add5677de5f2be59461b42693942493a9b5 (
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
|
# 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.ebuild,v 1.6 2010/05/05 15:17:49 hd_brummy Exp $
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=""
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")
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) :'
fix_vdr_libsi_include server/livestreamer.c
}
src_install() {
vdr-plugin_src_install
cd "${S}"
insinto /etc/vdr/plugins/streamdev
newins streamdevhosts.conf.example streamdevhosts.conf
chown vdr:vdr "${D}"/etc/vdr -R
}
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
}
|