mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 09:07:26 -08:00
Update done using: ``` git grep -l sys-libs/zlib sys-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git grep -l virtual/zlib-ng sys-* | xargs sed -i -e s@virtual/zlib-ng@sys-libs/zlib-ng@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Plus reverts in sys-libs/minizip-ng, sys-libs/zlib-ng and profiles. Signed-off-by: Michał Górny <mgorny@gentoo.org>
119 lines
2.3 KiB
Bash
119 lines
2.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
WX_GTK_VER="3.2-gtk3"
|
|
inherit flag-o-matic wxwidgets xdg cmake
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
EGIT_REPO_URI="https://github.com/visualboyadvance-m/visualboyadvance-m.git"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/visualboyadvance-m/visualboyadvance-m/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
S="${WORKDIR}/visualboyadvance-m-${PV}"
|
|
fi
|
|
|
|
DESCRIPTION="Game Boy, GBC, and GBA emulator forked from VisualBoyAdvance"
|
|
HOMEPAGE="https://github.com/visualboyadvance-m/visualboyadvance-m"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE="ffmpeg link lirc nls +sdl wxwidgets"
|
|
|
|
REQUIRED_USE="
|
|
ffmpeg? ( wxwidgets )
|
|
|| ( sdl wxwidgets )
|
|
"
|
|
|
|
RDEPEND="
|
|
>=media-libs/libpng-1.4:=
|
|
media-libs/libsdl2[joystick]
|
|
virtual/zlib:=
|
|
virtual/glu
|
|
virtual/opengl
|
|
link? (
|
|
<media-libs/libsfml-3.0
|
|
>=media-libs/libsfml-2.0:=
|
|
)
|
|
lirc? ( app-misc/lirc )
|
|
nls? ( virtual/libintl )
|
|
wxwidgets? (
|
|
ffmpeg? ( media-video/ffmpeg:= )
|
|
media-libs/openal
|
|
x11-libs/wxGTK:${WX_GTK_VER}=[X,opengl]
|
|
)
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
BDEPEND="
|
|
app-arch/zip
|
|
virtual/pkgconfig
|
|
wxwidgets? ( virtual/imagemagick-tools )
|
|
amd64? ( || ( dev-lang/nasm dev-lang/yasm ) )
|
|
x86? ( || ( dev-lang/nasm dev-lang/yasm ) )
|
|
nls? ( sys-devel/gettext )
|
|
"
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
sed -i 's/ -mtune=generic//g' CMakeLists.txt || die
|
|
}
|
|
|
|
src_configure() {
|
|
# -Werror=odr
|
|
# https://bugs.gentoo.org/926080
|
|
# https://github.com/visualboyadvance-m/visualboyadvance-m/issues/1260
|
|
filter-lto
|
|
|
|
use wxwidgets && setup-wxwidgets
|
|
|
|
local mycmakeargs=(
|
|
-DENABLE_FFMPEG=$(usex ffmpeg)
|
|
-DENABLE_LINK=$(usex link)
|
|
-DENABLE_LIRC=$(usex lirc)
|
|
-DENABLE_NLS=$(usex nls)
|
|
-DENABLE_SDL=$(usex sdl)
|
|
-DENABLE_WX=$(usex wxwidgets)
|
|
-DENABLE_ASM_CORE=$(usex x86)
|
|
-DENABLE_ASM_SCALERS=$(usex x86)
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
-DENABLE_LTO=OFF
|
|
-DENABLE_ONLINEUPDATES=OFF
|
|
-DDISABLE_MACOS_PACKAGE_MANAGERS=ON
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
|
|
if use sdl ; then
|
|
dodoc doc/ReadMe.SDL.txt
|
|
doman src/debian/vbam.6
|
|
fi
|
|
|
|
use wxwidgets && doman src/debian/visualboyadvance-m.6
|
|
}
|
|
|
|
pkg_preinst() {
|
|
if use wxwidgets ; then
|
|
xdg_pkg_preinst
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if use wxwidgets ; then
|
|
xdg_pkg_postinst
|
|
fi
|
|
}
|
|
|
|
pkg_postrm() {
|
|
if use wxwidgets ; then
|
|
xdg_pkg_postrm
|
|
fi
|
|
}
|