View | Details | Raw Unified | Return to bug 253653
Collapse All | Expand All

(-)games/libretro-gpsp/Makefile (-2 / +2 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	libretro-gpsp
3
PORTNAME=	libretro-gpsp
4
PORTVERSION=	0.20200504
4
PORTVERSION=	0.20210215
5
CATEGORIES=	games
5
CATEGORIES=	games
6
6
7
MAINTAINER=	menelkir@itroll.org
7
MAINTAINER=	menelkir@itroll.org
Lines 15-21 Link Here
15
USE_GITHUB=	yes
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	libretro
16
GH_ACCOUNT=	libretro
17
GH_PROJECT=	gpsp
17
GH_PROJECT=	gpsp
18
GH_TAGNAME=	d8cf63b
18
GH_TAGNAME=	300d0c0
19
19
20
PLIST_FILES=	lib/libretro/gpsp_libretro.so
20
PLIST_FILES=	lib/libretro/gpsp_libretro.so
21
21
(-)games/libretro-gpsp/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1588709812
1
TIMESTAMP = 1613702012
2
SHA256 (libretro-gpsp-0.20200504-d8cf63b_GH0.tar.gz) = 4eefb3d19e911b6a19e945637e441dfa3e22af14088f8698ea4b257b278d105c
2
SHA256 (libretro-gpsp-0.20210215-300d0c0_GH0.tar.gz) = 8ba6000fd42c7de908c22f69d7cceee78ff02cfe8201027376bd7d23c2681079
3
SIZE (libretro-gpsp-0.20200504-d8cf63b_GH0.tar.gz) = 251726
3
SIZE (libretro-gpsp-0.20210215-300d0c0_GH0.tar.gz) = 323510
(-)games/libretro-gpsp/files/patch-libco_aarch64.c (-17 lines)
Lines 1-17 Link Here
1
--- libco/aarch64.c.orig	2020-04-28 06:29:00 UTC
2
+++ libco/aarch64.c
3
@@ -12,7 +12,13 @@
4
 #include <stdint.h>
5
 
6
 #ifndef IOS
7
-#include <malloc.h>
8
+#include <sys/param.h>
9
+
10
+void *
11
+memalign(size_t align, size_t size)
12
+{
13
+	return (aligned_alloc(align, roundup(size, align)));
14
+}
15
 #endif
16
 
17
 #ifdef __cplusplus

Return to bug 253653