gentoo/games-arcade/jazz2/jazz2-3.0.0-r1.ebuild
Michał Górny f42710561c
*/*: update the remaining packages for virtual/zlib
Update done using:

```
git grep -l sys-libs/zlib sys-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git grep -l virtual/zlib-ng sys-* | xargs sed -i -e s@virtual/zlib-ng@sys-libs/zlib-ng@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error
```

Plus reverts in sys-libs/minizip-ng, sys-libs/zlib-ng and profiles.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 09:39:44 +01:00

66 lines
1.4 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake optfeature prefix xdg
DESCRIPTION="Open source reimplementation of Jazz Jackrabbit 2"
HOMEPAGE="https://deat.tk/jazz2/"
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="
media-libs/libglvnd
virtual/zlib:=
openal? (
media-libs/libopenmpt
media-libs/openal
)
!sdl? ( media-libs/glfw )
sdl? ( media-libs/libsdl2 )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-system-source.patch
)
src_prepare() {
cmake_src_prepare
hprefixify Sources/Shared/Environment.cpp
# 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
}
src_configure() {
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=$(usex sdl SDL2 GLFW)
-DNCINE_WITH_AUDIO=$(usex openal)
)
cmake_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "game data unless you want to install it manually" ${CATEGORY}/${PN}-data
}