summaryrefslogtreecommitdiff
blob: a51ba83b6f6a7f3f5c22d2b24826b2367b5ee3fe (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
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit vdr-plugin-2

DESCRIPTION="VDR plugin: display the usage status of the available DVB devices"
HOMEPAGE="http://www.u32.de/vdr.html"
SRC_URI="http://www.u32.de/download/${P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND="media-video/vdr"
RDEPEND="${DEPEND}"

QA_FLAGS_IGNORED="
	usr/lib/vdr/plugins/libvdr-.*
	usr/lib64/vdr/plugins/libvdr-.*"
PATCHES=(
	"${FILESDIR}/${P}-recordingfound.patch"
	"${FILESDIR}/${P}-channelswitch.patch"
	"${FILESDIR}/${P}-dvb-adapter-frontend.patch"
	"${FILESDIR}/${P}-memoryleak.patch"
	"${FILESDIR}/${P}-vdr2.3.patch"
)

src_prepare() {
	# remove untranslated .po files
	rm "${S}"/po/{ca_ES,cs_CZ,da_DK,el_GR,et_EE,hr_HR,hu_HU,nl_NL,nn_NO,pl_PL,pt_PT,ro_RO,sl_SI,sv_SE,tr_TR}.po \
		|| die "failed to remove untranslated .po files"

	vdr-plugin-2_src_prepare
}