blob: 68be40df19fff97d57344a88fbb2de4e850cee4a (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit vdr-plugin-2
VERSION="936" #every bump, new version
DVDARCHIVE="dvdarchive-2.3-beta.sh"
DESCRIPTION="VDR Plugin: Extended recordings menu"
HOMEPAGE="https://projects.vdr-developer.org/projects/plg-extrecmenu"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz
mirror://gentoo/${DVDARCHIVE}.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=media-video/vdr-1.6.0"
RDEPEND="${DEPEND}"
src_prepare() {
cd "${WORKDIR}"
epatch "${FILESDIR}/${DVDARCHIVE%.sh}-configfile.patch"
cd "${S}"
if grep -q fskProtection /usr/include/vdr/timers.h; then
einfo "Enabling parentalrating option"
sed -i "s:#WITHPINPLUGIN:WITHPINPLUGIN:" Makefile
fi
vdr-plugin-2_src_prepare
if has_version ">=media-video/vdr-1.7.28"; then
sed -i "s:SetRecording(recording->FileName(),recording->Title:SetRecording(recording->FileName:" mymenurecordings.c
fi
if has_version ">=media-video/vdr-1.7.32"; then
export EXTRECMENU_USE_VDR_CUTTER=1
einfo "disabled plugin cutter"
einfo "plugin use now the vdr included cutter"
fi
epatch "${FILESDIR}/${P}_vdr-2.1.2.diff"
}
src_install() {
vdr-plugin-2_src_install
cd "${WORKDIR}"
newbin ${DVDARCHIVE} dvdarchive.sh
insinto /etc/vdr
doins "${FILESDIR}"/dvdarchive.conf
}
|