mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 06:57:59 +02:00
The ebuild doesn't depend on media-libs/libsfml but also, that error generally appears when something C++ was built against newer GCC and then you're trying to link against it using older GCC (=> older libstdc++). Besides, <11 is masked and has been for a while. Signed-off-by: Sam James <sam@gentoo.org>
88 lines
2.9 KiB
Bash
88 lines
2.9 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
# basis_universal version
|
|
MY_BU_VER="1_15_update2"
|
|
# meshoptimizer version
|
|
MY_MO_VER="0.16"
|
|
|
|
DESCRIPTION="A spaceship bridge simulator game"
|
|
HOMEPAGE="https://daid.github.io/EmptyEpsilon/"
|
|
# This bundles SeriousProton as the build system does not support using
|
|
# a separate SeriousProton instance (and currently EmptyEpsilon seems to
|
|
# be the only consumer).
|
|
SRC_URI="
|
|
https://github.com/daid/${PN}/archive/EE-${PV}.tar.gz -> ${PN}-${PV}.tar.gz
|
|
https://github.com/daid/SeriousProton/archive/EE-${PV}.tar.gz -> SeriousProton-${PV}.tar.gz
|
|
https://github.com/BinomialLLC/basis_universal/archive/refs/tags/v${MY_BU_VER}.tar.gz -> basis_universal_${MY_BU_VER}.tar.gz
|
|
https://github.com/zeux/meshoptimizer/archive/refs/tags/v${MY_MO_VER}.tar.gz -> meshoptimizer-${MY_MO_VER}.tar.gz
|
|
https://github.com/Flowdalic/SeriousProton/commit/dc9dccf6c802b9c55ac4eccad424d2b1af9f4b93.patch ->
|
|
SeriousProton-2022.10.28-add-missing-cstdint-include.patch
|
|
https://github.com/void-linux/void-packages/raw/bfb212a0ca0f9dda6f34f837e723156f46813d4d/srcpkgs/${PN}/patches/musl_and_ppc.patch ->
|
|
${PN}-2022.10.28-musl-and-ppc.patch
|
|
"
|
|
|
|
# EmptyEpsilon is mostly licensed under GPL, however the art ressources
|
|
# use Creative Commons and the bundled SeriousProton is MIT-licensed.
|
|
LICENSE="Apache-2.0 GPL-2 CC-BY-SA-3.0 MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
|
|
RDEPEND="
|
|
dev-cpp/nlohmann_json
|
|
media-libs/freetype
|
|
media-libs/libsdl2
|
|
>=media-libs/glm-0.9.9.8
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/EmptyEpsilon-EE-${PV}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-cmake-meshoptimizer.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
local -A externals=()
|
|
externals["${BUILD_DIR}/SeriousProton/externals/basis"]="${WORKDIR}/basis_universal-${MY_BU_VER}"
|
|
externals["${BUILD_DIR}/externals/meshoptimizer"]="${WORKDIR}/meshoptimizer-${MY_MO_VER}"
|
|
local link
|
|
for link in "${!externals[@]}"; do
|
|
local external_dir=$(dirname "${link}")
|
|
if [[ ! -d "${external_dir}" ]]; then
|
|
mkdir -p "${external_dir}" || die
|
|
fi
|
|
local target="${externals[${link}]}"
|
|
ln -rs "${target}" "${link}" || die
|
|
done
|
|
|
|
local serious_proton_patches=(
|
|
"${FILESDIR}/SeriousProton-cmake.patch"
|
|
# https://github.com/daid/SeriousProton/pull/236
|
|
"${DISTDIR}/SeriousProton-2022.10.28-add-missing-cstdint-include.patch"
|
|
)
|
|
eapply --directory="${WORKDIR}/SeriousProton-EE-${PV}" \
|
|
"${serious_proton_patches[@]}"
|
|
|
|
# https://bugs.gentoo.org/895994
|
|
eapply -p2 "${DISTDIR}/EmptyEpsilon-2022.10.28-musl-and-ppc.patch"
|
|
}
|
|
|
|
src_configure() {
|
|
local version=( $(ver_rs 1- ' ') )
|
|
local mycmakeargs=(
|
|
-DSERIOUS_PROTON_DIR="${WORKDIR}/SeriousProton-EE-${PV}/"
|
|
-DCPACK_PACKAGE_VERSION="${PV}"
|
|
-DCPACK_PACKAGE_VERSION_MAJOR="${version[0]}"
|
|
-DCPACK_PACKAGE_VERSION_MINOR="${version[1]}"
|
|
-DCPACK_PACKAGE_VERSION_PATCH="${version[2]}"
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|