mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
games-emulation/mgba: add 0.10.5, fixes bug #958356
While upstream git master already sets cmake_minimum_required to 3.10, this version still need a patch to raise the VERSION. The next release shouldn't require the patch anymore. Signed-off-by: Michael Mair-Keimberger <mm1ke@gentoo.org> Closes: https://bugs.gentoo.org/958356 Part-of: https://github.com/gentoo/gentoo/pull/43160 Closes: https://github.com/gentoo/gentoo/pull/43160 Signed-off-by: Michael Mair-Keimberger <mm1ke@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST mgba-0.10.4.tar.gz 14355132 BLAKE2B 1f99fd1f79e1645f2de8c1fbd07bdc4996fbc12263fd14b3588e0dcccff910780be73ed92084e53ed873f5e55eef70a983afee2f3f0bd166c578a03bcf57ea0b SHA512 300c09ae8d6dc9677aabb6771345da42b78dc2e4e63e14f1fc404b89737e5161f412f4903488fd222fcf3ac9b0161ba5947a099cd9b5095137d100ce14a14aa3
|
||||
DIST mgba-0.10.5.tar.gz 14358730 BLAKE2B 0542bf6d299f4659033ed1f621f575b486cdb7c04877c894be73f210cfcf16ee1b27130ae94395d18e640590d4de78e7ec8b870c6d26764b6b70937040e9e484 SHA512 d7b0b0c82e2285acafa0dc0cdb4accfcde9d9a8d8a06ed32f3a15585121ee86aecf8f5f6a762003dad1006fb9e2dcd8a3d141fda71c077182623886f64c042f5
|
||||
|
||||
9
games-emulation/mgba/files/mgba-0.10.5-cmake4.patch
Normal file
9
games-emulation/mgba/files/mgba-0.10.5-cmake4.patch
Normal file
@@ -0,0 +1,9 @@
|
||||
Bug: https://bugs.gentoo.org/958356
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -1,4 +1,4 @@
|
||||
-cmake_minimum_required(VERSION 3.1)
|
||||
+cmake_minimum_required(VERSION 3.10)
|
||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/src/platform/cmake/")
|
||||
|
||||
if(POLICY CMP0025)
|
||||
119
games-emulation/mgba/mgba-0.10.5.ebuild
Normal file
119
games-emulation/mgba/mgba-0.10.5.ebuild
Normal file
@@ -0,0 +1,119 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
LUA_COMPAT=( lua5-{3..4} )
|
||||
inherit cmake lua-single xdg
|
||||
|
||||
if [[ ${PV} == 9999 ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/mgba-emu/mgba.git"
|
||||
else
|
||||
SRC_URI="https://github.com/mgba-emu/mgba/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Game Boy Advance Emulator"
|
||||
HOMEPAGE="https://mgba.io/"
|
||||
|
||||
LICENSE="MPL-2.0 BSD LGPL-2.1+ public-domain discord? ( MIT )"
|
||||
SLOT="0/$(ver_cut 1-2)"
|
||||
IUSE="
|
||||
debug discord elf ffmpeg gles2 gles3 gui libretro
|
||||
lua +opengl +sdl +sqlite test
|
||||
"
|
||||
REQUIRED_USE="
|
||||
gui? ( || ( gles2 gles3 opengl ) sqlite )
|
||||
lua? ( ${LUA_REQUIRED_USE} )
|
||||
"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
media-libs/libpng:=
|
||||
sys-libs/zlib:=[minizip]
|
||||
debug? ( dev-libs/libedit )
|
||||
elf? ( dev-libs/elfutils )
|
||||
ffmpeg? ( media-video/ffmpeg:= )
|
||||
gles2? ( media-libs/libglvnd )
|
||||
gles3? ( media-libs/libglvnd )
|
||||
lua? ( ${LUA_DEPS} )
|
||||
opengl? ( media-libs/libglvnd )
|
||||
gui? (
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtmultimedia:5
|
||||
dev-qt/qtnetwork:5
|
||||
dev-qt/qtwidgets:5
|
||||
)
|
||||
sdl? ( media-libs/libsdl2[sound,joystick,gles2?,opengl?,video] )
|
||||
sqlite? ( dev-db/sqlite:3 )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
test? ( dev-util/cmocka )
|
||||
"
|
||||
BDEPEND="
|
||||
gui? ( dev-qt/linguist-tools:5 )
|
||||
lua? ( virtual/pkgconfig )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-0.10.0-optional-updater.patch
|
||||
"${FILESDIR}"/${P}-cmake4.patch
|
||||
)
|
||||
|
||||
CMAKE_QA_COMPAT_SKIP=1 #958356
|
||||
|
||||
pkg_setup() {
|
||||
use lua && lua-single_pkg_setup
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_CINEMA=$(usex test)
|
||||
-DBUILD_GL=$(usex opengl)
|
||||
-DBUILD_GLES2=$(usex gles2)
|
||||
-DBUILD_GLES3=$(usex gles3)
|
||||
-DBUILD_LIBRETRO=$(usex libretro)
|
||||
-DBUILD_QT=$(usex gui)
|
||||
-DBUILD_ROM_TEST=yes #918855
|
||||
-DBUILD_SDL=$(usex sdl) # also used for gamepads in QT build
|
||||
-DBUILD_SUITE=$(usex test)
|
||||
-DBUILD_UPDATER=no
|
||||
-DENABLE_SCRIPTING=$(usex lua)
|
||||
-DMARKDOWN=no #752048
|
||||
-DUSE_DEBUGGERS=$(usex debug)
|
||||
-DUSE_DISCORD_RPC=$(usex discord)
|
||||
-DUSE_EDITLINE=$(usex debug)
|
||||
-DUSE_ELF=$(usex elf)
|
||||
-DUSE_EPOXY=no
|
||||
-DUSE_FFMPEG=$(usex ffmpeg)
|
||||
-DUSE_GDB_STUB=$(usex debug)
|
||||
-DUSE_LIBZIP=no
|
||||
-DUSE_LZMA=yes
|
||||
-DUSE_MINIZIP=yes
|
||||
-DUSE_PNG=yes
|
||||
-DUSE_SQLITE3=$(usex sqlite)
|
||||
-DUSE_ZLIB=yes
|
||||
$(usev libretro -DLIBRETRO_LIBDIR="${EPREFIX}"/usr/$(get_libdir)/libretro)
|
||||
)
|
||||
use lua && mycmakeargs+=( -DUSE_LUA=$(ver_cut 1-2 $(lua_get_version)) )
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# CMakeLists.txt forces SKIP_RPATH=yes when PREFIX=/usr
|
||||
local -x LD_LIBRARY_PATH=${BUILD_DIR}:${LD_LIBRARY_PATH}
|
||||
|
||||
cmake_src_test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
use !test || rm "${ED}"/usr/bin/mgba-cinema || die
|
||||
|
||||
rm -r -- "${ED}"/usr/share/doc/${PF}/{LICENSE,licenses} || die
|
||||
}
|
||||
Reference in New Issue
Block a user