View | Details | Raw Unified | Return to bug 247007 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +3 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	mgba
3
PORTNAME=	mgba
4
DISTVERSION=	0.7.3
4
DISTVERSION=	0.8.1
5
CATEGORIES=	emulators
5
CATEGORIES=	emulators
6
6
7
MAINTAINER=	greg@unrelenting.technology
7
MAINTAINER=	greg@unrelenting.technology
Lines 33-38 Link Here
33
		-DUSE_ZLIB:BOOL=ON \
33
		-DUSE_ZLIB:BOOL=ON \
34
		-DUSE_LZMA:BOOL=ON \
34
		-DUSE_LZMA:BOOL=ON \
35
		-DUSE_SQLITE3:BOOL=ON \
35
		-DUSE_SQLITE3:BOOL=ON \
36
		-DUSE_DISCORD_RPC:BOOL=OFF \
36
		-DBUILD_GL:BOOL=ON \
37
		-DBUILD_GL:BOOL=ON \
37
		-DBUILD_GLES2:BOOL=OFF
38
		-DBUILD_GLES2:BOOL=OFF
38
LDFLAGS+=	-Wl,--as-needed # glu
39
LDFLAGS+=	-Wl,--as-needed # glu
Lines 59-64 Link Here
59
60
60
LIBRETRO_CMAKE_BOOL=	BUILD_LIBRETRO
61
LIBRETRO_CMAKE_BOOL=	BUILD_LIBRETRO
61
LIBRETRO_CMAKE_ON=	-DLIBRETRO_LIBDIR:PATH="${PREFIX}/lib/libretro"
62
LIBRETRO_CMAKE_ON=	-DLIBRETRO_LIBDIR:PATH="${PREFIX}/lib/libretro"
63
LIBRETRO_CONFLICTS_INSTALL=libretro-mgba
62
64
63
MAGICK_CMAKE_BOOL=	USE_MAGICK
65
MAGICK_CMAKE_BOOL=	USE_MAGICK
64
MAGICK_LIB_DEPENDS=	libMagickWand-6.so:graphics/ImageMagick6 \
66
MAGICK_LIB_DEPENDS=	libMagickWand-6.so:graphics/ImageMagick6 \
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1577739643
1
TIMESTAMP = 1591359084
2
SHA256 (mgba-emu-mgba-0.7.3_GH0.tar.gz) = 6d5e8ab6f87d3d9fa85af2543db838568dbdfcecd6797f8153f1b3a10b4a8bdd
2
SHA256 (mgba-emu-mgba-0.8.1_GH0.tar.gz) = df136ea50c9cca380ab93e00fd8d87811e41a49a804c5b0e018babef0c490f13
3
SIZE (mgba-emu-mgba-0.7.3_GH0.tar.gz) = 11228977
3
SIZE (mgba-emu-mgba-0.8.1_GH0.tar.gz) = 11893993
(-)files/patch-src_platform_qt_CoreManager.cpp (+11 lines)
Line 0 Link Here
1
--- src/platform/qt/CoreManager.cpp.orig	2020-06-07 01:07:14 UTC
2
+++ src/platform/qt/CoreManager.cpp
3
@@ -65,7 +65,7 @@ CoreController* CoreManager::loadGame(const QString& p
4
 		if (vfOriginal && (size = vfOriginal->size(vfOriginal)) > 0) {
5
 			void* mem = vfOriginal->map(vfOriginal, size, MAP_READ);
6
 			vf = VFileMemChunk(mem, size);
7
-			vfOriginal->unmap(vfOriginal, mem, (size_t) read);
8
+			vfOriginal->unmap(vfOriginal, mem, size);
9
 			vfOriginal->close(vfOriginal);
10
 		}
11
 	}
(-)pkg-plist (-2 / +143 lines)
Lines 1-8 Link Here
1
bin/mgba
1
bin/mgba
2
%%QT5%%bin/mgba-qt
2
%%QT5%%bin/mgba-qt
3
include/mgba-util/arm-algo.h
4
include/mgba-util/circle-buffer.h
5
include/mgba-util/common.h
6
include/mgba-util/configuration.h
7
include/mgba-util/crc32.h
8
include/mgba-util/elf-read.h
9
include/mgba-util/export.h
10
include/mgba-util/formatting.h
11
include/mgba-util/gui.h
12
include/mgba-util/gui/file-select.h
13
include/mgba-util/gui/font-metrics.h
14
include/mgba-util/gui/font.h
15
include/mgba-util/gui/menu.h
16
include/mgba-util/hash.h
17
include/mgba-util/math.h
18
include/mgba-util/memory.h
19
include/mgba-util/patch.h
20
include/mgba-util/patch/fast.h
21
include/mgba-util/patch/ips.h
22
include/mgba-util/patch/ups.h
23
include/mgba-util/platform/3ds/3ds-vfs.h
24
include/mgba-util/platform/3ds/threading.h
25
include/mgba-util/platform/posix/threading.h
26
include/mgba-util/platform/psp2/sce-vfs.h
27
include/mgba-util/platform/psp2/threading.h
28
include/mgba-util/platform/switch/threading.h
29
include/mgba-util/platform/windows/getopt.h
30
include/mgba-util/platform/windows/threading.h
31
include/mgba-util/png-io.h
32
include/mgba-util/ring-fifo.h
33
include/mgba-util/socket.h
34
include/mgba-util/string.h
35
include/mgba-util/table.h
36
include/mgba-util/text-codec.h
37
include/mgba-util/threading.h
38
include/mgba-util/vector.h
39
include/mgba-util/vfs.h
40
include/mgba/core/bitmap-cache.h
41
include/mgba/core/blip_buf.h
42
include/mgba/core/cache-set.h
43
include/mgba/core/cheats.h
44
include/mgba/core/config.h
45
include/mgba/core/core.h
46
include/mgba/core/cpu.h
47
include/mgba/core/directories.h
48
include/mgba/core/input.h
49
include/mgba/core/interface.h
50
include/mgba/core/library.h
51
include/mgba/core/lockstep.h
52
include/mgba/core/log.h
53
include/mgba/core/map-cache.h
54
include/mgba/core/mem-search.h
55
include/mgba/core/rewind.h
56
include/mgba/core/scripting.h
57
include/mgba/core/serialize.h
58
include/mgba/core/sync.h
59
include/mgba/core/thread.h
60
include/mgba/core/tile-cache.h
61
include/mgba/core/timing.h
62
include/mgba/core/version.h
63
include/mgba/debugger/debugger.h
64
include/mgba/feature/commandline.h
65
include/mgba/feature/thread-proxy.h
66
include/mgba/feature/video-logger.h
3
include/mgba/flags.h
67
include/mgba/flags.h
4
lib/libmgba.so.0.7
68
include/mgba/gb/core.h
5
lib/libmgba.so.0.7.3
69
include/mgba/gb/interface.h
70
include/mgba/gba/core.h
71
include/mgba/gba/interface.h
72
include/mgba/internal/arm/arm.h
73
include/mgba/internal/arm/debugger/cli-debugger.h
74
include/mgba/internal/arm/debugger/debugger.h
75
include/mgba/internal/arm/debugger/memory-debugger.h
76
include/mgba/internal/arm/decoder-inlines.h
77
include/mgba/internal/arm/decoder.h
78
include/mgba/internal/arm/emitter-arm.h
79
include/mgba/internal/arm/emitter-inlines.h
80
include/mgba/internal/arm/emitter-thumb.h
81
include/mgba/internal/arm/isa-arm.h
82
include/mgba/internal/arm/isa-inlines.h
83
include/mgba/internal/arm/isa-thumb.h
84
include/mgba/internal/arm/macros.h
85
include/mgba/internal/debugger/cli-debugger.h
86
include/mgba/internal/debugger/gdb-stub.h
87
include/mgba/internal/debugger/parser.h
88
include/mgba/internal/debugger/symbols.h
89
include/mgba/internal/gb/audio.h
90
include/mgba/internal/gb/cheats.h
91
include/mgba/internal/gb/debugger/debugger.h
92
include/mgba/internal/gb/debugger/symbols.h
93
include/mgba/internal/gb/extra/cli.h
94
include/mgba/internal/gb/gb.h
95
include/mgba/internal/gb/io.h
96
include/mgba/internal/gb/mbc.h
97
include/mgba/internal/gb/memory.h
98
include/mgba/internal/gb/overrides.h
99
include/mgba/internal/gb/renderers/cache-set.h
100
include/mgba/internal/gb/renderers/proxy.h
101
include/mgba/internal/gb/renderers/software.h
102
include/mgba/internal/gb/serialize.h
103
include/mgba/internal/gb/sio.h
104
include/mgba/internal/gb/sio/lockstep.h
105
include/mgba/internal/gb/sio/printer.h
106
include/mgba/internal/gb/timer.h
107
include/mgba/internal/gb/video.h
108
include/mgba/internal/gba/audio.h
109
include/mgba/internal/gba/bios.h
110
include/mgba/internal/gba/cheats.h
111
include/mgba/internal/gba/dma.h
112
include/mgba/internal/gba/extra/audio-mixer.h
113
include/mgba/internal/gba/extra/cli.h
114
include/mgba/internal/gba/gba.h
115
include/mgba/internal/gba/hardware.h
116
include/mgba/internal/gba/input.h
117
include/mgba/internal/gba/io.h
118
include/mgba/internal/gba/matrix.h
119
include/mgba/internal/gba/memory.h
120
include/mgba/internal/gba/overrides.h
121
include/mgba/internal/gba/renderers/cache-set.h
122
include/mgba/internal/gba/renderers/common.h
123
include/mgba/internal/gba/renderers/gl.h
124
include/mgba/internal/gba/renderers/proxy.h
125
include/mgba/internal/gba/renderers/video-software.h
126
include/mgba/internal/gba/rr/mgm.h
127
include/mgba/internal/gba/rr/rr.h
128
include/mgba/internal/gba/rr/vbm.h
129
include/mgba/internal/gba/savedata.h
130
include/mgba/internal/gba/serialize.h
131
include/mgba/internal/gba/sharkport.h
132
include/mgba/internal/gba/sio.h
133
include/mgba/internal/gba/sio/lockstep.h
134
include/mgba/internal/gba/timer.h
135
include/mgba/internal/gba/vfame.h
136
include/mgba/internal/gba/video.h
137
include/mgba/internal/sm83/debugger/cli-debugger.h
138
include/mgba/internal/sm83/debugger/debugger.h
139
include/mgba/internal/sm83/debugger/memory-debugger.h
140
include/mgba/internal/sm83/decoder.h
141
include/mgba/internal/sm83/emitter-sm83.h
142
include/mgba/internal/sm83/isa-sm83.h
143
include/mgba/internal/sm83/sm83.h
144
lib/libmgba.so
145
lib/libmgba.so.0.8
146
lib/libmgba.so.0.8.1
6
%%LIBRETRO%%lib/libretro/mgba_libretro.so
147
%%LIBRETRO%%lib/libretro/mgba_libretro.so
7
%%QT5%%man/man6/mgba-qt.6.gz
148
%%QT5%%man/man6/mgba-qt.6.gz
8
man/man6/mgba.6.gz
149
man/man6/mgba.6.gz

Return to bug 247007