mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
app-emulation/fs-uae: Add 9999 for testing new v5 alphas
These new v5 alphas integrate a GUI for the eventual retirement of fs-uae-launcher. It's still very basic right now. Signed-off-by: James Le Cuirot <chewi@gentoo.org>
This commit is contained in:
parent
a715a07f74
commit
082e1dcb33
103
app-emulation/fs-uae/fs-uae-9999.ebuild
Normal file
103
app-emulation/fs-uae/fs-uae-9999.ebuild
Normal file
@ -0,0 +1,103 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{13..14} )
|
||||
|
||||
inherit autotools python-single-r1 xdg
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
EGIT_REPO_URI="https://github.com/FrodeSolheim/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/FrodeSolheim/${PN}/releases/download/v${PV}/${P}.tar.xz"
|
||||
KEYWORDS="~amd64 ~ppc64"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Integrates the most accurate Amiga emulation code available from WinUAE"
|
||||
HOMEPAGE="https://fs-uae.net/"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="glew +jit portmidi"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
app-arch/zstd:=
|
||||
dev-libs/glib:2
|
||||
media-libs/flac:=
|
||||
media-libs/libglvnd
|
||||
media-libs/libmpeg2
|
||||
media-libs/libpng:0=
|
||||
media-libs/libsdl3[opengl]
|
||||
media-libs/sdl3-image
|
||||
media-libs/sdl3-ttf
|
||||
media-sound/mpg123
|
||||
sys-libs/zlib
|
||||
glew? ( media-libs/glew:0= )
|
||||
portmidi? ( media-libs/portmidi )
|
||||
"
|
||||
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
"
|
||||
|
||||
BDEPEND="
|
||||
app-arch/zip
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
AT_NO_RECURSIVE=1 eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Udis86 is unused.
|
||||
econf \
|
||||
--enable-a2065 \
|
||||
--enable-action-replay \
|
||||
--enable-aga \
|
||||
--enable-arcadia \
|
||||
--enable-bsdsocket \
|
||||
--enable-caps \
|
||||
--enable-cd32 \
|
||||
--enable-cdtv \
|
||||
--enable-codegen \
|
||||
--enable-drivesound \
|
||||
--enable-fdi2raw \
|
||||
--enable-gfxboard \
|
||||
--enable-netplay \
|
||||
--enable-ncr \
|
||||
--enable-ncr9x \
|
||||
--enable-parallel-port \
|
||||
--enable-prowizard \
|
||||
--enable-savestate \
|
||||
--enable-scp \
|
||||
--enable-serial-port \
|
||||
--enable-slirp \
|
||||
--enable-softfloat \
|
||||
--enable-qemu-cpu \
|
||||
--enable-uaenative \
|
||||
--enable-uaenet \
|
||||
--enable-uaescsi \
|
||||
--enable-uaeserial \
|
||||
--disable-udis86 \
|
||||
--enable-vpar \
|
||||
--enable-xml-shader \
|
||||
--with-glad \
|
||||
$(use_enable jit) \
|
||||
$(use_enable jit jit-fpu) \
|
||||
$(use_with glew) \
|
||||
$(use_with portmidi midi)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
# Needed for QEMU-UAE.
|
||||
insinto /usr/include/uae
|
||||
doins include/uae/{api,attributes,log,ppc,qemu,types}.h
|
||||
}
|
||||
@ -11,5 +11,6 @@
|
||||
<use>
|
||||
<flag name="fmv">Enable support for CD32 FMV (full motion video)</flag>
|
||||
<flag name="glew">Enable support for The OpenGL Extension Wrangler Library (<pkg>media-libs/glew</pkg>)</flag>
|
||||
<flag name="portmidi">Enable support for MIDI via <pkg>media-libs/portmidi</pkg></flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user