Gentoo Archives: gentoo-commits

From: "Jörg Bornkessel" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-radio/
Date: Fri, 03 Jan 2020 18:13:26
Message-Id: 1578075170.415a2f04b5e0172f6f5cf7d0175c3267d4a557a3.hd_brummy@gentoo
1 commit: 415a2f04b5e0172f6f5cf7d0175c3267d4a557a3
2 Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 3 18:12:21 2020 +0000
4 Commit: Jörg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 3 18:12:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415a2f04
7
8 media-plugins/vdr-radio: bump, keyworded ~arm
9
10 this version works up from vdr-2.2
11 added keyword ~arm (rpi tested)
12 new project page and SRC_URI, fixed
13
14 Closes: https://bugs.gentoo.org/703998
15 Package-Manager: Portage-2.3.83, Repoman-2.3.20
16 Signed-off-by: Joerg Bornkessel <hd_brummy <AT> gentoo.org>
17
18 media-plugins/vdr-radio/Manifest | 1 +
19 media-plugins/vdr-radio/vdr-radio-1.1.0.ebuild | 33 ++++++++++++++++++++++++++
20 2 files changed, 34 insertions(+)
21
22 diff --git a/media-plugins/vdr-radio/Manifest b/media-plugins/vdr-radio/Manifest
23 index 0e6f58db547..37da0def67e 100644
24 --- a/media-plugins/vdr-radio/Manifest
25 +++ b/media-plugins/vdr-radio/Manifest
26 @@ -1 +1,2 @@
27 +DIST vdr-plugin-radio-1.1.0.tar.gz 710385 BLAKE2B fa9c692d528d718ace371359fea915eaf972b8ec759c28f86f52b9564c4f6e405da87639522af9a2c24138808351ee421d112dfacf3954d9779da9307a1f0a94 SHA512 d6c5ea7c457b5611b689bd5bc051c185feb108be6d82ea45ae9e9847a86cd06df38b38a1851bcdcf49808111cd1e9aea1f08decca66973c8020592d3a261aae6
28 DIST vdr-radio-0.9.1.tgz 353414 BLAKE2B ff0d735188e6972e029256599b2832d4eea9bed377721966f2b956b5a750f47a34b474492addba0bb3f8964188611f2f10a3a47db3aa60101c851e1db43955f0 SHA512 81ab0d92ee390eecbbce73bc035714dda6157dc1f0781b6f8765603f65707e1711af64a48168923e2a78b77e0d869471fa313656d517cba27a3104e483085f43
29
30 diff --git a/media-plugins/vdr-radio/vdr-radio-1.1.0.ebuild b/media-plugins/vdr-radio/vdr-radio-1.1.0.ebuild
31 new file mode 100644
32 index 00000000000..c99c2cec7b6
33 --- /dev/null
34 +++ b/media-plugins/vdr-radio/vdr-radio-1.1.0.ebuild
35 @@ -0,0 +1,33 @@
36 +# Copyright 1999-2020 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +inherit vdr-plugin-2
42 +
43 +DESCRIPTION="VDR plugin: show background image for radio and decode RDS Text"
44 +HOMEPAGE="https://projects.vdr-developer.org/projects/vdr-plugin-radio"
45 +SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-radio.git/snapshot/vdr-plugin-radio-${PV}.tar.gz"
46 +
47 +LICENSE="GPL-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~x86"
50 +
51 +RDEPEND="media-video/vdr"
52 +DEPEND="${RDEPEND}"
53 +
54 +S="${WORKDIR}/vdr-plugin-radio-${PV}"
55 +
56 +src_install() {
57 + vdr-plugin-2_src_install
58 +
59 + cd "${S}"/config || die "Can't enter source folder"
60 +
61 + insinto /usr/share/vdr/radio
62 + doins mpegstill/rtext*
63 + dosym rtextOben-kleo2-live.mpg /usr/share/vdr/radio/radio.mpg
64 + dosym rtextOben-kleo2-replay.mpg /usr/share/vdr/radio/replay.mpg
65 +
66 + exeinto /usr/share/vdr/radio
67 + doexe scripts/radioinfo*
68 +}