games-engines/xsystem35-sdl2: add 2.16.1

Signed-off-by: hautist <lookatnadeko@protonmail.com>
This commit is contained in:
hautist
2025-08-28 21:19:41 +01:00
parent 054896be62
commit 2fda22137f
2 changed files with 45 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST xsystem35-sdl2-2.15.1.tar.gz 4607849 BLAKE2B 1f7f9adfcb8ef67e8cbb75cc8f1eb8bd9f1c90ceea34e3c79dd3014fc84a543fc5161e1c03932f4a77a804009ef14b2c3733d4555f4cd35974b74f5818548f6f SHA512 d011d28d683ab9492b4f9b3c88eb758723d17f0508c4aba4706281aed653a8af89c9d89141a8fd410139a82551e3b438964c71328c097da66278cde025551122
DIST xsystem35-sdl2-2.16.0.tar.gz 4547571 BLAKE2B 3027e53f152b19e7e1498c7716c5d18b11484069b13e6d461f19449e75f73b5688f9cfeededd5b9662c79316d961a22b0580e5c9a6114ad88c68500b0660df31 SHA512 8e45bf78a78b20cdc1283a50fdc984b34028b13b58992031641b58f24f97de04269de2a36ab673f61d733dcd624add6536ce89093585430e3c83638588b31401
DIST xsystem35-sdl2-2.16.1.tar.gz 4547613 BLAKE2B fdc3788da45279472608c89004740505c93edca637227ba63ed18d2a587b70c0a790109624a755099c36b895e3fc7e0fac998471362378375f166af7887ba02e SHA512 e0933ed33f854ba9b054c261f0b008a6eb492a827415a8bfaaedd1837d99a8439500cec1d35397d9c083b7472112a668d2c6198c4c4724ad126234f7a760f6da

View File

@@ -0,0 +1,44 @@
EAPI=8
inherit cmake
DESCRIPTION="Port of xsystem35, a free implementation of AliceSoft's System 3.x game engine."
HOMEPAGE="https://github.com/kichikuou/xsystem35-sdl2"
SRC_URI="https://github.com/kichikuou/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+man debug +portmidi +webp"
DEPEND="
media-libs/libsdl2
media-libs/sdl2-mixer
media-libs/sdl2-ttf
sys-libs/zlib
webp? ( media-libs/libwebp )
debug? ( dev-libs/cJSON )
portmidi? ( media-libs/portmidi )
"
RDEPEND="${DEPEND}"
BDEPEND="
sys-devel/gettext
man? ( dev-ruby/asciidoctor )
"
src_configure() {
local mycmakeargs=(
-DCMAKE_BUILD_TYPE=$(usex debug Debug Release)
-DENABLE_DEBUGGER=$(usex debug)
-DENABLE_PORTMIDI=$(usex portmidi)
-DENABLE_WEBP=$(usex webp)
)
cmake_src_configure
}
src_install() {
cmake_src_install
# Install additional documentation
dodoc CHANGELOG.md game_compatibility.md
}