mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 06:09:43 +02:00
32 lines
742 B
Bash
32 lines
742 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit user-info vdr-plugin-2
|
|
|
|
DESCRIPTION="VDR plugin: Show rdf Newsticker on TV"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
|
|
SRC_URI="http://vdr.websitec.de/download/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
BDEPEND="acct-user/vdr"
|
|
DEPEND="media-video/vdr"
|
|
RDEPEND="${DEPEND}
|
|
net-misc/wget"
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-gcc4.diff" )
|
|
QA_FLAGS_IGNORED="
|
|
usr/lib/vdr/plugins/libvdr-.*
|
|
usr/lib64/vdr/plugins/libvdr-.*"
|
|
|
|
src_install() {
|
|
vdr-plugin-2_src_install
|
|
|
|
local vdr_user_home=$(egethome vdr)
|
|
keepdir "${vdr_user_home}/newsticker/"
|
|
fowners -R vdr:vdr "${vdr_user_home}//newsticker/"
|
|
}
|