Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro-dosbox/
Date: Tue, 03 Sep 2019 01:28:17
Message-Id: 1567474084.e110d891ad42962638da1877a1960b5a02ef2441.candrews@gentoo
1 commit: e110d891ad42962638da1877a1960b5a02ef2441
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 3 01:12:43 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 3 01:28:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e110d891
7
8 media-plugins/kodi-game-libretro-dosbox: 0.74.0.4 version bump
9
10 Package-Manager: Portage-2.3.75, Repoman-2.3.17
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 media-plugins/kodi-game-libretro-dosbox/Manifest | 1 +
14 .../kodi-game-libretro-dosbox-0.74.0.4.ebuild | 38 ++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/media-plugins/kodi-game-libretro-dosbox/Manifest b/media-plugins/kodi-game-libretro-dosbox/Manifest
18 index 57ac8b7a065..d5f1fcae707 100644
19 --- a/media-plugins/kodi-game-libretro-dosbox/Manifest
20 +++ b/media-plugins/kodi-game-libretro-dosbox/Manifest
21 @@ -1 +1,2 @@
22 DIST kodi-game-libretro-dosbox-0.74.0.3.tar.gz 53861 BLAKE2B bba95d96c9a313a96df7e3774573fdf43040efd23629242f1400a5a5ca8c2ebe948b68fba7d780ccd4cb3ca7cc4db74e23fece9d192e6988493a89eec19cdca7 SHA512 e802f5bdb1c9b82c5fa3224138f1956e4210aa532bea3ead20fba1a9349ef780f52d966b334beb498ab3433bd3822df7ae9e5cdcddbbf5b97318a5b65f4fc277
23 +DIST kodi-game-libretro-dosbox-0.74.0.4.tar.gz 54671 BLAKE2B d3bbea8b7ee5f7122f929af44632181d3ec59153573298027524ddfbe29f9bff69ff239172881f2e9315de4087f31dfb492de9f12a54b08859a1ed6a576b49fd SHA512 bb74b6cc535b95ca088140c3e39cafcce04b3f01917e126e403c1e9d35a4c581b92dcdad57c28c76acfedbf5ee331a7e9ea5cef48010145be638f606e3f8e9ab
24
25 diff --git a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.4.ebuild b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.4.ebuild
26 new file mode 100644
27 index 00000000000..8d15e745cc2
28 --- /dev/null
29 +++ b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.4.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit cmake-utils kodi-addon
37 +
38 +DESCRIPTION="DOSBox GameClient for Kodi"
39 +HOMEPAGE="https://github.com/kodi-game/game.libretro.dosbox"
40 +SRC_URI=""
41 +
42 +if [[ ${PV} == *9999 ]]; then
43 + SRC_URI=""
44 + EGIT_REPO_URI="https://github.com/kodi-game/game.libretro.dosbox.git"
45 + inherit git-r3
46 +else
47 + KEYWORDS="~amd64 ~x86"
48 + CODENAME="Leia"
49 + SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz"
50 + S="${WORKDIR}/game.libretro.dosbox-${PV}-${CODENAME}"
51 +fi
52 +
53 +LICENSE="GPL-2"
54 +SLOT="0"
55 +IUSE=""
56 +
57 +DEPEND="
58 + =media-tv/kodi-18*
59 + games-emulation/libretro-dosbox
60 + "
61 +RDEPEND="
62 + media-plugins/kodi-game-libretro
63 + ${DEPEND}
64 + "
65 +src_prepare() {
66 + echo 'find_library(DOSBOX_LIB NAMES dosbox_libretro${CMAKE_SHARED_LIBRARY_SUFFIX} PATH_SUFFIXES libretro)' > "${S}/Findlibretro-dosbox.cmake" || die
67 + default
68 +}