kumquat-buildroot/package/minetest/Config.in
Romain Naour 3e41117c64 package/minetest{-game}: bump to version 5.6.1
Release announcement:
5.6.0: https://forum.minetest.net/viewtopic.php?f=18&t=28511
5.6.1: https://forum.minetest.net/viewtopic.php?f=18&t=28703

minetest:
- Update license file hash due to new image file in the project sources.
- IrrlichtMt 1.9.0mt8 is required to build Minetest >= 5.6.1.
- Add xlib_libXi dependency for xinput2 support enabled by default for Linux.
- Remove xlib_libXxf86vm dependency previously used by gamma ramp code [1].

[1] 538c9e5cde

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2023-01-04 22:27:29 +01:00

66 lines
1.9 KiB
Plaintext

config BR2_PACKAGE_MINETEST
bool "minetest"
depends on BR2_INSTALL_LIBSTDCPP # irrlichtMt (bundled)
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_PACKAGE_XORG7 # irrlichtMt (bundled)
depends on BR2_PACKAGE_HAS_LIBGL # irrlichtMt (bundled)
depends on BR2_PACKAGE_LUAJIT
select BR2_PACKAGE_GMP
select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_SQLITE
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_ZSTD
# At least one option must be enabled
select BR2_PACKAGE_MINETEST_CLIENT if !BR2_PACKAGE_MINETEST_SERVER
help
Minetest is a near-infinite-world block sandbox game and a
game engine, inspired by InfiniMiner, Minecraft, and the
like.
http://www.minetest.net
if BR2_PACKAGE_MINETEST
config BR2_PACKAGE_MINETEST_CLIENT
bool "minetest client"
select BR2_PACKAGE_BZIP2
select BR2_PACKAGE_FREETYPE
select BR2_PACKAGE_LIBPNG
select BR2_PACKAGE_JPEG
select BR2_PACKAGE_XLIB_LIBXI
help
Build Minetest client.
config BR2_PACKAGE_MINETEST_SERVER
bool "minetest server"
help
Build Minetest server.
config BR2_PACKAGE_MINETEST_SOUND
bool "enable sound"
depends on BR2_PACKAGE_MINETEST_CLIENT
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # openal
select BR2_PACKAGE_LIBVORBIS
select BR2_PACKAGE_OPENAL
comment "sound support needs a toolchain w/ threads NPTL"
depends on BR2_PACKAGE_MINETEST_CLIENT
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
endif
comment "minetest needs a toolchain w/ C++, gcc >= 5.1, threads"
depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS
depends on !BR2_INSTALL_LIBSTDCPP \
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_5 \
|| !BR2_TOOLCHAIN_HAS_THREADS
comment "minetest needs X11 and an OpenGL provider"
depends on (BR2_INSTALL_LIBSTDCPP \
&& BR2_TOOLCHAIN_GCC_AT_LEAST_5 \
&& BR2_TOOLCHAIN_HAS_THREADS)
depends on !BR2_PACKAGE_HAS_LIBGL || !BR2_PACKAGE_XORG7