blob: 7eece1539134860084de46b6d646b4fedbff2c7e (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit vdr-plugin-2
DESCRIPTION="VDR plugin: play video cds"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="http://vdr.websitec.de/download/vdr-vcd/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 x86"
IUSE=""
DEPEND=">=media-video/vdr-1.5.9"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}_xgettext.diff"
"${FILESDIR}/${P}_vdr-1.7.2.diff"
"${FILESDIR}/${P}_devicetrickspeed.patch"
"${FILESDIR}/${P}_gcc-6.patch" )
src_prepare() {
vdr-plugin-2_src_prepare
# Patch Makefile, as VDRDIR is no well known variable name
# to stop spare -I in gcc cmdline
sed -e 's:$(VDRINC):$(VDRDIR)/include:' -i Makefile
}
|