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-dvdswitch/
Date: Fri, 27 Dec 2019 16:23:04
Message-Id: 1577463762.9b6d70e58a0dfe1bb1b4a526eea92d5b4c87c0cd.hd_brummy@gentoo
1 commit: 9b6d70e58a0dfe1bb1b4a526eea92d5b4c87c0cd
2 Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 27 16:22:07 2019 +0000
4 Commit: Jörg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 27 16:22:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b6d70e5
7
8 media-plugins/vdr-dvdswitch: bump
9
10 Bug: https://bugs.gentoo.org/703968
11 Closes: https://bugs.gentoo.org/703968
12 Package-Manager: Portage-2.3.83, Repoman-2.3.18
13 Signed-off-by: Joerg Bornkessel <hd_brummy <AT> gentoo.org>
14
15 media-plugins/vdr-dvdswitch/Manifest | 1 +
16 .../vdr-dvdswitch/vdr-dvdswitch-0.2.3.ebuild | 30 ++++++++++++++++++++++
17 2 files changed, 31 insertions(+)
18
19 diff --git a/media-plugins/vdr-dvdswitch/Manifest b/media-plugins/vdr-dvdswitch/Manifest
20 index e617dfa498f..b53967f5d5f 100644
21 --- a/media-plugins/vdr-dvdswitch/Manifest
22 +++ b/media-plugins/vdr-dvdswitch/Manifest
23 @@ -1 +1,2 @@
24 DIST vdr-dvdswitch-0.2.2.tgz 50332 BLAKE2B c84fe0c1525a037bb3509d240f6d2fcdf41560a705d064167f5a21316e33ce7dc0b072367a393ddf245e0a8a3c3a5dbb795bb2e61c0ef6d80507dbf069b082d8 SHA512 37a89f33a2280823a885fdb8aa4919c7bc438c26ba6273ec25a7c980d7dac6c57df125f560b6f2f04d46a1db623c129a6e598d61cde66f5944e5b349d65ffeb8
25 +DIST vdr-dvdswitch-0.2.3.tgz 48515 BLAKE2B 5a342a518be0729be114500fe50d47330aa319fc84ef90e3fc1384be91b8e79748bf6c4301e549d7a7ce9d6d3b466ce89dfbba3f979be0e6927e7d8a4dcb6c06 SHA512 2c27b28a9b68f4880396c7297358eecb13d76341c98902c02eca86ef366709f38cba414b3e94445c52b56816e37e742340c93145816f5bae1b7ffca0bcd48df7
26
27 diff --git a/media-plugins/vdr-dvdswitch/vdr-dvdswitch-0.2.3.ebuild b/media-plugins/vdr-dvdswitch/vdr-dvdswitch-0.2.3.ebuild
28 new file mode 100644
29 index 00000000000..e20d6e3795c
30 --- /dev/null
31 +++ b/media-plugins/vdr-dvdswitch/vdr-dvdswitch-0.2.3.ebuild
32 @@ -0,0 +1,30 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit vdr-plugin-2
39 +
40 +VERSION="2084" # every bump, new version
41 +
42 +DESCRIPTION="VDR Plugin: to play dvds and dvd file structures"
43 +HOMEPAGE="https://projects.vdr-developer.org/projects/plg-dvdswitch"
44 +SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE=""
50 +
51 +DEPEND="media-video/vdr"
52 +RDEPEND="media-plugins/vdr-dvd"
53 +
54 +DEFAULT_IMAGE_DIR="/var/vdr/video/dvd-images"
55 +
56 +VDR_CONFD_FILE="${FILESDIR}/0.1.3/confd-r2"
57 +
58 +src_prepare() {
59 + vdr-plugin-2_src_prepare
60 +
61 + sed -e "s:/video/dvd:${DEFAULT_IMAGE_DIR}:" -i setup.c
62 +}