commit: a52d46e80805d45860e5b7d404a7804c081b18fa
Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Tue Oct 8 19:29:35 2024 +0000
Commit: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
CommitDate: Tue Oct 8 19:29:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a52d46e8
games-arcade/taisei: add 1.4.2
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
games-arcade/taisei/Manifest | 1 +
games-arcade/taisei/taisei-1.4.2.ebuild | 80 +++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
diff --git a/games-arcade/taisei/Manifest b/games-arcade/taisei/Manifest
index bad127321..622d194ea 100644
--- a/games-arcade/taisei/Manifest
+++ b/games-arcade/taisei/Manifest
@@ -1 +1,2 @@
DIST taisei-1.4.1.tar.xz 219550456 BLAKE2B
640b4e53b4ee4784173a8ba0ea435a75aa547a788e549f56c3dff99f9a36997a3c7c73d857fc86bf7aa10d6c22f3bf826991d3a61147e2ec24771fb96c987ed6
SHA512
7c11ed1c7a7898ca4f43854224c8e55305fcef8312f0d32b488c85fbf16cceaa84fd52948bb81e311095b93254d95ea7eaa8f85c42bbbe54cf81d2702242cb2b
+DIST taisei-1.4.2.tar.xz 219573092 BLAKE2B
382e6e02013573f4218a073ad9d19cd128f0b4366d3f3f586e8ab4de9a5948ffedd13a22cefc9a8af04cccd2cf0205c9d6c738b125fd332b363606acd5938e4a
SHA512
81cb2e354169eac2495fe5aaf65136580240af6bfaf194b0288352a527e0d12e2e7b2eb2510f8f8cf4fc96ed3b5a66934e3d62c8b53b497e7f2cd8be962a5f98
diff --git a/games-arcade/taisei/taisei-1.4.2.ebuild
b/games-arcade/taisei/taisei-1.4.2.ebuild
new file mode 100644
index 000000000..854e6491a
--- /dev/null
+++ b/games-arcade/taisei/taisei-1.4.2.ebuild
@@ -0,0 +1,80 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit meson python-any-r1 xdg
+
+if [[ ${PV} == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/taisei-project/taisei.git"
+else
+ # Auto-generated tarballs lacks submodules, all of which are taisei
subrepos
+
SRC_URI="https://github.com/taisei-project/taisei/releases/download/v${PV}/taisei-${PV}.tar.xz"
+ KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Clone of the Touhou series, written in C using SDL/OpenGL/OpenAL."
+HOMEPAGE="https://taisei-project.org/"
+LICENSE="MIT CC-BY-4.0 CC0-1.0 public-domain"
+SLOT="0"
+
+IUSE="doc lto zip"
+
+RDEPEND="
+ media-libs/freetype:2
+ media-libs/opusfile
+ >=media-libs/libpng-1.5
+ media-libs/libsdl2
+ media-libs/libwebp
+ media-libs/opusfile
+ app-arch/zstd
+ sys-libs/zlib
+ dev-libs/openssl:=
+ zip? ( dev-libs/libzip )
+"
+# see: https://github.com/taisei-project/taisei/issues/381
+DEPEND="
+ ${RDEPEND}
+ >=dev-libs/cglm-0.7.8
+ !!~dev-libs/cglm-0.9.3
+"
+BDEPEND="
+ dev-build/meson
+ $(python_gen_any_dep '
+ dev-python/zstandard[${PYTHON_USEDEP}]
+ ')
+ ${PYTHON_DEPS}
+ doc? ( dev-python/docutils )"
+
+python_check_deps() {
+ python_has_version "dev-python/zstandard[${PYTHON_USEDEP}]"
+}
+
+src_prepare() {
+ # Path patching needed also without USE=doc (COPYING etc.)
+ sed -i "s/doc_path = join.*/doc_path = join_paths(datadir, \'doc\',
\'${PF}\')/" \
+ meson.build || die "Failed changing doc_path"
+
+ # Remove blobs
+ rm external/basis_universal/OpenCL/lib/*.lib \
+ external/basis_universal/webgl_videotest/basis.wasm \
+
external/basis_universal/webgl/transcoder/build/basis_transcoder.wasm \
+ external/basis_universal/webgl/encoder/build/basis_encoder.wasm
\
+ || die
+
+ default
+}
+
+src_configure() {
+ local emesonargs=(
+ $(meson_feature doc docs)
+ $(meson_use lto b_lto)
+ $(meson_feature zip vfs_zip)
+ -Dstrip=false
+ -Duse_libcrypto=enabled
+ )
+ meson_src_configure
+}