blob: c1d02ab63c76837c8e97c890b1e4e88e00defae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg
DESCRIPTION="Lightweight osu! port"
HOMEPAGE="https://github.com/fmang/oshu"
if [[ ${PV} = *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/fmang/oshu.git"
SRC_URI="osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> ${PN}-skin-v1.tar.gz )"
else
SRC_URI="https://github.com/fmang/oshu/archive/${PV}.tar.gz -> oshu-${PV}.tar.gz
osu-skin? ( https://www.mg0.fr/oshu/skins/osu-v1.tar.gz -> ${PN}-skin-v1.tar.gz )"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3 CC-BY-NC-4.0"
SLOT="0"
IUSE="osu-skin"
RDEPEND="
media-libs/libsdl2
media-libs/sdl2-image
x11-libs/cairo
x11-libs/pango
media-video/ffmpeg:=
"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/oshu-2.0.2-ffmpeg4-compat.patch" )
src_unpack() {
default
if [[ ${PV} = *9999 ]]; then
git-r3_src_unpack
fi
}
src_prepare() {
if use osu-skin; then
eapply "${FILESDIR}/oshu-2.0.0-use_unpacked_osu-skin.patch"
mv "${WORKDIR}/osu" share/skins/ || die "Failed to move osu-skin"
fi
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DOSHU_DEFAULT_SKIN=$(usex osu-skin osu minimal)
-DOSHU_SKINS=minimal$(usev osu-skin ';osu')
)
cmake_src_configure
}
src_test() {
cmake_build check
}
|