Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/oshu/
Date: Tue, 31 Mar 2020 08:39:28
Message-Id: 1585643939.95c554b30a9d7251f151d0a75c3bb110e9436222.juippis@gentoo
1 commit: 95c554b30a9d7251f151d0a75c3bb110e9436222
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Tue Mar 31 08:25:08 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 31 08:38:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c554b3
7
8 games-arcade/oshu: Version bump, 2.0.1
9
10 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 games-arcade/oshu/Manifest | 1 +
14 games-arcade/oshu/oshu-2.0.1.ebuild | 55 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 56 insertions(+)
16
17 diff --git a/games-arcade/oshu/Manifest b/games-arcade/oshu/Manifest
18 index ef952619335..58793eeb050 100644
19 --- a/games-arcade/oshu/Manifest
20 +++ b/games-arcade/oshu/Manifest
21 @@ -1,2 +1,3 @@
22 DIST oshu-2.0.0.tar.gz 144088 BLAKE2B c4383746624f4de62e158a2f94d4e5c1a3e2f037fd05d80607932414f20a031103bd73f108644a93faadf61c21f3d2505da3afd2ea7ea43bd59e32966724928b SHA512 ed2b8294b06d239948c563135d997b422191be681ff86714a244ca64079251508a5a62e23cf3ae1e0ac2b3128b6401901233714eab7787989296ca1700192643
23 +DIST oshu-2.0.1.tar.gz 144900 BLAKE2B 47f1d0a11255459ae357142499aeffcf07fbcad961cb34ba98e9efa7cb4229cf8d61ec836a4c899f2ea0883f1252395bc0c6ff34c5d670d67091cf6483d135ff SHA512 65768b3d8e7733464f05a19bbee594c0be728267bbd0667bc0f34e0d01a39e52d4ecce89a9223f7c454d73b21bc735401e9d83eea8b0a2eaf1c7825a3bd6b1cf
24 DIST oshu-skin-v1.tar.gz 2224947 BLAKE2B 0b463133dd7ab54421551627d12932f5257848b1130d57af8c2ff6b6836a49c9322b8f2f7e95de540909390d0139e547650a6bb321614cf92fac464b09075674 SHA512 d562294ac5e122a9d9971e3ab92f6168d848177cc5e22a94bbc450fde2b3b14007796a24d33722da9b6675467b109ce128ba94dca5dcc7c61c91c1e373032618
25
26 diff --git a/games-arcade/oshu/oshu-2.0.1.ebuild b/games-arcade/oshu/oshu-2.0.1.ebuild
27 new file mode 100644
28 index 00000000000..84d415b3c11
29 --- /dev/null
30 +++ b/games-arcade/oshu/oshu-2.0.1.ebuild
31 @@ -0,0 +1,55 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit cmake xdg
38 +
39 +DESCRIPTION="Lightweight osu! port"
40 +HOMEPAGE="https://github.com/fmang/oshu"
41 +
42 +if [[ $PV = *9999 ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://github.com/fmang/oshu.git"
45 + SRC_URI="osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> ${PN}-skin-v1.tar.gz )"
46 +else
47 + SRC_URI="https://github.com/fmang/oshu/archive/${PV}.tar.gz -> oshu-${PV}.tar.gz
48 + osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> ${PN}-skin-v1.tar.gz )"
49 + KEYWORDS="~amd64 ~x86"
50 +fi
51 +
52 +LICENSE="GPL-3 CC-BY-NC-4.0"
53 +SLOT="0"
54 +IUSE="osu-skin"
55 +
56 +RDEPEND="
57 + media-libs/libsdl2
58 + media-libs/sdl2-image
59 + x11-libs/cairo
60 + x11-libs/pango
61 + media-video/ffmpeg:=
62 +"
63 +
64 +DEPEND="${RDEPEND}"
65 +
66 +# Doesn't build executable needed for the test
67 +# https://github.com/fmang/oshu/issues/87
68 +RESTRICT="test"
69 +
70 +src_prepare() {
71 + if use osu-skin; then
72 + eapply "${FILESDIR}/oshu-2.0.0-use_unpacked_osu-skin.patch"
73 + mv "${WORKDIR}/osu" share/skins/ || die "Failed to move osu-skin"
74 + fi
75 +
76 + cmake_src_prepare
77 +}
78 +
79 +src_configure() {
80 + local mycmakeargs=(
81 + '-DOSHU_DEFAULT_SKIN='$(usex osu-skin 'osu' 'minimal')
82 + '-DOSHU_SKINS=minimal'$(usex osu-skin ';osu' '')
83 + )
84 +
85 + cmake_src_configure
86 +}