blob: e73e1515285e39360d9013ad07d63423c6f88398 (
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
66
67
68
69
70
71
72
73
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools desktop flag-o-matic toolchain-funcs vcs-clean
MY_P=${PN}-srcdata-$(ver_rs 1- '')1
DESCRIPTION="Remake of the famous Stunts game"
HOMEPAGE="http://www.ultimatestunts.nl/"
SRC_URI="https://downloads.sourceforge.net/ultimatestunts/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"
RDEPEND="
media-libs/freealut
media-libs/libsdl[joystick,opengl,video]
media-libs/libvorbis
>=media-libs/openal-1
media-libs/sdl-image
virtual/opengl
virtual/glu
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}"
BDEPEND=">=sys-devel/gettext-0.21.1"
PATCHES=(
"${FILESDIR}"/${P}-paths.patch
"${FILESDIR}"/${P}-gcc-4.7.patch
"${FILESDIR}"/${P}-intl.patch
)
src_prepare() {
default
esvn_clean
append-cppflags $(sdl-config --cflags)
# The bundled version is ancient, https://bugs.gentoo.org/944445
rm -r intl/ || die
eautoreconf
}
src_configure() {
# -Werror=strict-aliasing
# https://bugs.gentoo.org/859241
# Upstream sourceforge is inactive since 2017. No bug filed
#
# Do not trust with LTO either.
append-flags -fno-strict-aliasing
filter-lto
econf \
--with-openal \
$(use_enable nls)
}
src_compile() {
emake -C trackedit libtrackedit.a AR=$(tc-getAR)
emake AR=$(tc-getAR)
}
src_install() {
default
newicon data/cars/diablo/steer.png ${PN}.png
make_desktop_entry ustunts "Ultimate Stunts"
}
|