blob: 2293ae2aff094a7966896ece4a2794f96f3a2417 (
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
74
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg-utils
DESCRIPTION="Open source reimplementation of Jazz Jackrabbit 2"
HOMEPAGE="
https://deat.tk/jazz2/
https://github.com/deathkiller/jazz2-native
"
SRC_URI="
https://github.com/deathkiller/jazz2-native/archive/refs/tags/${PV}.tar.gz
-> ${P}.tar.gz
"
S="${WORKDIR}/${PN}-native-${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+openal sdl"
DEPEND="
sys-libs/zlib:=
openal? (
media-libs/libopenmpt
media-libs/openal
)
!sdl? ( media-libs/glfw:= )
sdl? ( media-libs/libsdl2:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${P}-about-section.patch"
"${FILESDIR}/${P}-strict-aliasing.patch" #940326
)
src_prepare() {
# We need to install README.md to a different directory, default
# src_install will handle that.
sed -i '/README_INSTALL_DESTINATION/d' cmake/ncine_installation.cmake || die
cmake_src_prepare
}
src_configure() {
local backend=GLFW
use sdl && backend=SDL2
local mycmakeargs=(
-DNCINE_LINUX_PACKAGE="${PN}"
-DNCINE_DOWNLOAD_DEPENDENCIES=OFF
-DNCINE_LINKTIME_OPTIMIZATION=OFF
-DNCINE_STRIP_BINARIES=OFF
-DNCINE_VERSION_FROM_GIT=OFF
-DNCINE_WITH_BACKWARD=OFF
-DNCINE_WITH_GLEW=OFF
-DNCINE_PREFERRED_BACKEND=${backend}
-DNCINE_WITH_AUDIO=$(usex openal)
)
cmake_src_configure
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
|