diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-12-31 21:14:57 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2025-01-01 09:55:17 +0100 |
commit | cc61d595da2f367711b49e15bad51d81883e44ff (patch) | |
tree | d906be3f737e9afe8de0439560d8f54ccbd5f201 /games-emulation/fceux | |
parent | games-emulation/fceux: Drop IUSE qt6 (diff) | |
download | gentoo-cc61d595da2f367711b49e15bad51d81883e44ff.tar.gz gentoo-cc61d595da2f367711b49e15bad51d81883e44ff.tar.bz2 gentoo-cc61d595da2f367711b49e15bad51d81883e44ff.zip |
games-emulation/fceux: drop 2.6.6-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-emulation/fceux')
-rw-r--r-- | games-emulation/fceux/fceux-2.6.6-r1.ebuild | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/games-emulation/fceux/fceux-2.6.6-r1.ebuild b/games-emulation/fceux/fceux-2.6.6-r1.ebuild deleted file mode 100644 index a610a06cc96e..000000000000 --- a/games-emulation/fceux/fceux-2.6.6-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LUA_COMPAT=( lua5-1 luajit ) -inherit cmake lua-single xdg - -DESCRIPTION="Portable Famicom/NES emulator, an evolution of the original FCE Ultra" -HOMEPAGE="https://fceux.com/" -SRC_URI=" - https://github.com/TASEmulators/fceux/archive/refs/tags/v${PV}.tar.gz - -> ${P}.tar.gz -" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="archive ffmpeg qt6 x264 x265" -REQUIRED_USE="${LUA_REQUIRED_USE}" - -RDEPEND=" - ${LUA_DEPS} - media-libs/libglvnd - media-libs/libsdl2[joystick,sound,threads(+),video] - sys-libs/zlib:=[minizip] - archive? ( app-arch/libarchive:= ) - qt6? ( dev-qt/qtbase:6[gui,opengl,widgets,-gles2-only] ) - !qt6? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtopengl:5[-gles2-only] - dev-qt/qtwidgets:5 - ) - ffmpeg? ( media-video/ffmpeg:= ) - x264? ( media-libs/x264:= ) - x265? ( media-libs/x265:= ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-2.4.0-desktop.patch - "${FILESDIR}"/${PN}-2.4.0-no-git.patch - "${FILESDIR}"/${PN}-2.6.6-luajit.patch - "${FILESDIR}"/${PN}-2.6.6-no-glx.patch -) - -src_prepare() { - cmake_src_prepare - - local use - for use in archive:libarchive ffmpeg:libav x264 x265; do - use ${use%:*} || - sed -i "/check_modules( ${use#*:} /Id" src/CMakeLists.txt || die - done - - rm output/*.{chm,dll} || die # windows-only -} - -src_configure() { - local mycmakeargs=( - -DGLVND=yes - -DPUBLIC_RELEASE=yes - -DQT6=$(usex qt6) - ) - - cmake_src_configure -} - -src_install() { - local DOCS=( README TODO-SDL changelog.txt documentation/. readme.md ) - cmake_src_install - - rm "${ED}"/usr/share/doc/${PF}/fceux{,-net-server}.6 || die # duplicate - rm "${ED}"/usr/share/man/man6/fceux-net-server.6 || die # not used -} |