diff options
author | Robert Clausecker <fuz@fuz.su> | 2022-02-13 17:11:39 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2022-02-13 17:13:15 +0000 |
commit | 5b9dabc1d04810328de32507973dd644261be046 (patch) | |
tree | 062707e809027aae21bc66ab0eefeeb66894f26b | |
parent | fee7c34884744c8a71ffeabc028fd949fa77c628 (diff) |
emulators/fceux: Update to 2.6.2
Also remove a superflous USE_QT entry.
Changes: https://fceux.com/web/help/WhatsNew262.html
PR: 261844
-rw-r--r-- | emulators/fceux/Makefile | 4 | ||||
-rw-r--r-- | emulators/fceux/distinfo | 6 | ||||
-rw-r--r-- | emulators/fceux/files/patch-src_drivers_Qt_sdl-sound.cpp | 12 |
3 files changed, 5 insertions, 17 deletions
diff --git a/emulators/fceux/Makefile b/emulators/fceux/Makefile index 47ac7a49edf9..67008ecd48bf 100644 --- a/emulators/fceux/Makefile +++ b/emulators/fceux/Makefile @@ -1,5 +1,5 @@ PORTNAME= fceux -DISTVERSION= 2.6.1 +DISTVERSION= 2.6.2 CATEGORIES= emulators games MASTER_SITES= SF/fceultra/Source%20Code/${DISTVERSION}%20src/ @@ -13,7 +13,7 @@ LIB_DEPENDS= libminizip.so:archivers/minizip USES= cmake desktop-file-utils gl lua:51 pkgconfig qt:5 sdl USE_GL= gl glu -USE_QT= buildtools_build core gui opengl qmake_build sql widgets +USE_QT= buildtools_build core gui opengl qmake_build widgets USE_SDL= sdl2 CFLAGS+= -DPUBLIC_RELEASE diff --git a/emulators/fceux/distinfo b/emulators/fceux/distinfo index d19da94da8fb..a502c014e893 100644 --- a/emulators/fceux/distinfo +++ b/emulators/fceux/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1642789615 -SHA256 (fceux-2.6.1.tar.gz) = 3a845dfe97975b5c5fd2e9637fe31e79ddc2f337d99a61296134d82c641d02d6 -SIZE (fceux-2.6.1.tar.gz) = 23326768 +TIMESTAMP = 1644250746 +SHA256 (fceux-2.6.2.tar.gz) = 2dc943cf9719919c61752c8f4d00cb911ecddbc9e9ef239eb65b5dcd3b9d9707 +SIZE (fceux-2.6.2.tar.gz) = 23334976 diff --git a/emulators/fceux/files/patch-src_drivers_Qt_sdl-sound.cpp b/emulators/fceux/files/patch-src_drivers_Qt_sdl-sound.cpp deleted file mode 100644 index 011c34595a3c..000000000000 --- a/emulators/fceux/files/patch-src_drivers_Qt_sdl-sound.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- src/drivers/Qt/sdl-sound.cpp.orig 2022-01-21 20:48:31 UTC -+++ src/drivers/Qt/sdl-sound.cpp -@@ -219,8 +219,7 @@ InitSound() - spec.freq = s_SampleRate = soundrate; - spec.format = AUDIO_S16SYS; - spec.channels = 1; -- //spec.samples = 512; -- spec.samples = (int)( ( (double)s_SampleRate / getBaseFrameRate() ) ); -+ spec.samples = 512; - spec.callback = fillaudio; - spec.userdata = 0; - |