Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-hts/
Date: Mon, 25 Apr 2016 11:51:32
Message-Id: 1461585078.e7b569918d1dedffe881c6539f63ab6836502c4c.fordfrog@gentoo
1 commit: e7b569918d1dedffe881c6539f63ab6836502c4c
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 25 11:51:18 2016 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 25 11:51:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b56991
7
8 media-plugins/kodi-pvr-hts: version bump
9
10 Package-Manager: portage-2.2.28
11
12 media-plugins/kodi-pvr-hts/Manifest | 1 +
13 .../kodi-pvr-hts/kodi-pvr-hts-16_p20160419.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/media-plugins/kodi-pvr-hts/Manifest b/media-plugins/kodi-pvr-hts/Manifest
17 index b61844e..9764fd7 100644
18 --- a/media-plugins/kodi-pvr-hts/Manifest
19 +++ b/media-plugins/kodi-pvr-hts/Manifest
20 @@ -1 +1,2 @@
21 DIST kodi-pvr-hts-16_p20160220.tar.gz 187707 SHA256 f8fc1f8c4ff92be6fdcb2e4d49c1e91c0e0638b859ca04cd6296d28d64551330 SHA512 6ae00e2c5e226be0fbe98aafd5495e0e962ae36187ff6cf2641c82ddec5b69dfc6fd7eaf4c91ce7ed28fe992f1e914b4cb1fd88d3502e7359f9bc867858a0322 WHIRLPOOL 3b1b9d6c03e65ceae934cc9bc4af6d539794034f00efcd048f68bcd599366751a8691423fbbc0f69db09b56d32fbfd0f28617d69e879e1b3a98c13f61ae04b27
22 +DIST kodi-pvr-hts-16_p20160419.tar.gz 187786 SHA256 4df61466a588e1cabde21e4f733b41f18df4d3989701ea70cc60241ac843f93a SHA512 02aba6242ef6b6d39480585bed9a82569b123c2272f25a9373e75ae65a64c107638f1dee42872a688378eb48d2a5bdd7db8f108dbf42bd2ea1664b6e99ed5d13 WHIRLPOOL 385eb10f920e243f41a84a39f451e14cae6435c90f08531ef8190cf92289a84cd37945e8daa78ca3cabba2355537577df37c221e2a4f0d0b7a3ed247e142c866
23
24 diff --git a/media-plugins/kodi-pvr-hts/kodi-pvr-hts-16_p20160419.ebuild b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-16_p20160419.ebuild
25 new file mode 100644
26 index 0000000..8da4de0
27 --- /dev/null
28 +++ b/media-plugins/kodi-pvr-hts/kodi-pvr-hts-16_p20160419.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit cmake-utils
37 +
38 +GIT_COMMIT="ada1e05"
39 +DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi"
40 +HOMEPAGE="https://github.com/kodi-pvr/pvr.hts"
41 +SRC_URI="https://github.com/kodi-pvr/pvr.hts/tarball/${GIT_COMMIT} -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE=""
47 +
48 +# libplatform changed in version 2 from platform to p8-platform which makes it incompatible
49 +DEPEND="=dev-libs/libplatform-1*
50 + =media-libs/kodi-platform-16*
51 + =media-tv/kodi-16*"
52 +RDEPEND="${DEPEND}"
53 +
54 +S="${WORKDIR}/kodi-pvr-pvr.hts-${GIT_COMMIT}"
55 +
56 +src_configure() {
57 + local mycmakeargs=(
58 + -DCMAKE_INSTALL_LIBDIR="${EPREFIX}"/usr/lib/kodi
59 + )
60 +
61 + cmake-utils_src_configure
62 +}