blob: 489801c1a2b30d1da87e086b7941cd7d135230b3 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit vdr-plugin-2
DESCRIPTION="VDR plugin: pin PlugIn"
HOMEPAGE="http://www.jwendel.de"
SRC_URI="http://www.jwendel.de/vdr/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=media-video/vdr-1.6.0[pinplugin]"
src_prepare() {
vdr-plugin-2_src_prepare
epatch "${FILESDIR}/${P}.diff"
}
src_install() {
vdr-plugin-2_src_install
dobin fskcheck
into /usr/share/vdr/pin
dobin "${S}"/scripts/*.sh
insinto /etc/vdr/reccmds
newins "${FILESDIR}"/reccmds.pin.conf-0.0.16 reccmds.pin.conf
}
|