mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
games-emulation/vbam: remove old
Signed-off-by: Tim Harder <radhermit@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST vbam-2.1.0.tar.gz 2977888 BLAKE2B 48884b10d13cdeddfae1dc5a94a4576ebfd7aab263225650a7d4f7138854da3c8bbffa4a8f08e9da001cd967f0e85a7beb82f86350031264a66bfdd5403d36dd SHA512 e4489c84880a7a70e7e94104ffbbdd805e9f15d5c962c0c13a7470496d2fdad8e21c1ddb161b776eb0b1a0c7583182df5838da5a523ce31dac620aa2a7842321
|
||||
DIST vbam-2.1.4.tar.gz 3891574 BLAKE2B 5255fe814ab583c433f273c31b36933c09301330b47b2deefa453453c1d127c29a1b9de2e945e6706b1f9d9ec517444989818f3db329b96c106bf5d51ec71ae3 SHA512 9070715797c6be1648661019f236eb9328eb409f52e80e15aac52d814cf4155cf1ea37c230557c1288f152f0d27d838b11bee38679787a8d5198ca81f173d896
|
||||
|
||||
@@ -1,43 +0,0 @@
|
||||
From a8d0508cf299a58b2a659d6017b049db121de8ba Mon Sep 17 00:00:00 2001
|
||||
From: Rafael Kitover <rkitover@gmail.com>
|
||||
Date: Mon, 2 Jul 2018 18:32:18 -0700
|
||||
Subject: [PATCH] use GetWindow()->Refresh() in Wayland only
|
||||
|
||||
Some people are reporting stuttering, and @retro-wertz tested both
|
||||
DrawArea() and Refresh() on wxgtk3 under xorg and found that the
|
||||
Refresh() method produces more stuttering.
|
||||
|
||||
Change the compile check for wxgtk2 to a runtime check for wayland, and
|
||||
use Refresh() under Wayland only.
|
||||
---
|
||||
src/wx/panel.cpp | 11 ++++-------
|
||||
1 file changed, 4 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/src/wx/panel.cpp b/src/wx/panel.cpp
|
||||
index e4b86301..faaf6e4d 100644
|
||||
--- a/src/wx/panel.cpp
|
||||
+++ b/src/wx/panel.cpp
|
||||
@@ -1817,19 +1817,16 @@ void DrawingPanelBase::DrawArea(uint8_t** data)
|
||||
}
|
||||
|
||||
// next, draw the frame (queue a PaintEv) Refresh must be used under
|
||||
- // Wayland or nothing is drawn, however it causes high CPU usage with GTK2,
|
||||
- // so use the old method in that case
|
||||
-#if !defined(__WXGTK__) || defined(__WXGTK3__)
|
||||
- GetWindow()->Refresh();
|
||||
-#else
|
||||
- {
|
||||
+ // Wayland or nothing is drawn.
|
||||
+ if (wxGetApp().UsingWayland())
|
||||
+ GetWindow()->Refresh();
|
||||
+ else {
|
||||
DrawingPanelBase* panel = wxGetApp().frame->GetPanel()->panel;
|
||||
if (panel) {
|
||||
wxClientDC dc(panel->GetWindow());
|
||||
panel->DrawArea(dc);
|
||||
}
|
||||
}
|
||||
-#endif
|
||||
|
||||
// finally, draw on-screen text using wx method, if possible
|
||||
// this method flickers too much right now
|
||||
@@ -1,96 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
WX_GTK_VER="3.0-gtk3"
|
||||
inherit gnome2-utils wxwidgets xdg-utils cmake-utils
|
||||
|
||||
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 openal +sdl wxwidgets"
|
||||
REQUIRED_USE="openal? ( wxwidgets ) || ( sdl wxwidgets )"
|
||||
|
||||
RDEPEND="
|
||||
>=media-libs/libpng-1.4:0=
|
||||
media-libs/libsdl2[joystick]
|
||||
link? ( >=media-libs/libsfml-2.0:= )
|
||||
sys-libs/zlib:=
|
||||
virtual/glu
|
||||
virtual/opengl
|
||||
ffmpeg? ( =media-video/ffmpeg-3*:= )
|
||||
lirc? ( app-misc/lirc )
|
||||
nls? ( virtual/libintl )
|
||||
wxwidgets? (
|
||||
openal? ( media-libs/openal )
|
||||
x11-libs/wxGTK:${WX_GTK_VER}[X,opengl]
|
||||
)"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/zip
|
||||
wxwidgets? ( virtual/imagemagick-tools )
|
||||
x86? ( || ( dev-lang/nasm dev-lang/yasm ) )
|
||||
nls? ( sys-devel/gettext )
|
||||
virtual/pkgconfig"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-performance_fixup.patch"
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
use wxwidgets && setup-wxwidgets
|
||||
local mycmakeargs=(
|
||||
-DENABLE_FFMPEG=$(usex ffmpeg)
|
||||
-DENABLE_LINK=$(usex link)
|
||||
-DENABLE_LIRC=$(usex lirc)
|
||||
-DENABLE_NLS=$(usex nls)
|
||||
-DENABLE_OPENAL=$(usex openal)
|
||||
-DENABLE_SDL=$(usex sdl)
|
||||
-DENABLE_WX=$(usex wxwidgets)
|
||||
-DENABLE_ASM_CORE=$(usex x86)
|
||||
-DENABLE_ASM_SCALERS=$(usex x86)
|
||||
-DCMAKE_SKIP_RPATH=ON
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_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
|
||||
gnome2_icon_savelist
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use wxwidgets ; then
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
if use wxwidgets ; then
|
||||
gnome2_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user