blob: af9bc3d8d547619bccb3d200b09d329fdcf2f853 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Decompilation of 3D Pinball for Windows - Space Cadet"
HOMEPAGE="https://github.com/k4zmu2a/SpaceCadetPinball"
SRC_URI="https://github.com/k4zmu2a/${PN}/archive/refs/tags/Release_${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
media-libs/libsdl2
media-libs/sdl2-mixer[midi]
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/"${P}"-respect-XDG_DATA_HOME.patch
)
S="${WORKDIR}/${PN}-Release_${PV}"
src_install(){
dobin "${S}/bin/${PN}"
}
pkg_postinst(){
ewarn "This game is distributed without the data files."
ewarn "To play, copy the original DAT and SOUND files from a Windows or"
ewarn 'Full Tilt! installation and place them in $XDG_DATA_HOME/'"${PN}/"
ewarn "(usually: ~/.local/share/${PN}/)"
}
|