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

(-)Makefile (-6 / +5 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	eduke32
4
PORTNAME=	eduke32
5
PORTVERSION=	20170614
5
PORTVERSION=	20180218
6
PORTREVISION=	1
7
CATEGORIES=	games
6
CATEGORIES=	games
8
MASTER_SITES=	http://dukeworld.duke4.net/eduke32/synthesis/${PORTVERSION}-${SVNREVISION}/:eduke32 \
7
MASTER_SITES=	http://dukeworld.duke4.net/eduke32/synthesis/${PORTVERSION}-${SVNREVISION}/:eduke32 \
9
		http://www.duke4.org/files/nightfright/hrp/:hrp \
8
		http://www.duke4.org/files/nightfright/hrp/:hrp \
Lines 23-28 Link Here
23
LICENSE_FILE_GPLv2=	${WRKSRC}/source/duke3d/gpl-2.0.txt
22
LICENSE_FILE_GPLv2=	${WRKSRC}/source/duke3d/gpl-2.0.txt
24
LICENSE_PERMS_BUILDLIC=	dist-mirror pkg-mirror auto-accept
23
LICENSE_PERMS_BUILDLIC=	dist-mirror pkg-mirror auto-accept
25
24
25
BROKEN_aarch64=		fails to compile: polymost.cpp:2403:18: non-constant-expression cannot be narrowed from type 'long' to 'int32_t' (aka 'int') in initializer list
26
26
LIB_DEPENDS=	libFLAC.so:audio/flac \
27
LIB_DEPENDS=	libFLAC.so:audio/flac \
27
		libogg.so:audio/libogg \
28
		libogg.so:audio/libogg \
28
		libvorbis.so:audio/libvorbis \
29
		libvorbis.so:audio/libvorbis \
Lines 29-42 Link Here
29
		libvpx.so:multimedia/libvpx \
30
		libvpx.so:multimedia/libvpx \
30
		libpng.so:graphics/png
31
		libpng.so:graphics/png
31
32
32
BROKEN_aarch64=		fails to compile: polymost.cpp:2403:18: non-constant-expression cannot be narrowed from type 'long' to 'int32_t' (aka 'int') in initializer list
33
USES=		dos2unix gmake pkgconfig tar:xz
33
34
USES=		gmake pkgconfig tar:xz
35
USE_GL=		gl glu
34
USE_GL=		gl glu
36
USE_GNOME=	gtk20
35
USE_GNOME=	gtk20
37
USE_SDL=	sdl2 mixer2
36
USE_SDL=	sdl2 mixer2
38
WRKSRC=		${WRKDIR}/${PORTNAME}_${PORTVERSION}-${SVNREVISION}
37
WRKSRC=		${WRKDIR}/${PORTNAME}_${PORTVERSION}-${SVNREVISION}
39
SVNREVISION=	6180
38
SVNREVISION=	6675
40
DATADIR=	${PREFIX}/share/duke3d
39
DATADIR=	${PREFIX}/share/duke3d
41
SUB_FILES=	pkg-message
40
SUB_FILES=	pkg-message
42
MAKEFILE=	GNUmakefile
41
MAKEFILE=	GNUmakefile
(-)distinfo (-3 / +3 lines)
Lines 1-6 Link Here
1
TIMESTAMP = 1497598231
1
TIMESTAMP = 1519048274
2
SHA256 (eduke32_src_20170614-6180.tar.xz) = 5afab56358face5e89323dbb9d35051d4878514613c8254ba6557661a3258ea0
2
SHA256 (eduke32_src_20180218-6675.tar.xz) = e647b293e9435297bd83f97cb0fc126b89b870bb3da8ba5be8efd09611b68ec1
3
SIZE (eduke32_src_20170614-6180.tar.xz) = 14874472
3
SIZE (eduke32_src_20180218-6675.tar.xz) = 14454576
4
SHA256 (duke3d_hrp.zip) = f217df456b4f11055041731033e35e4402fada99253e714e37c4a27e6fdc78a5
4
SHA256 (duke3d_hrp.zip) = f217df456b4f11055041731033e35e4402fada99253e714e37c4a27e6fdc78a5
5
SIZE (duke3d_hrp.zip) = 933440151
5
SIZE (duke3d_hrp.zip) = 933440151
6
SHA256 (duke3d_xxx.zip) = c31713e6400a175a1bfa3bd369d132f8a8abce8915c113549f98262b9a84b534
6
SHA256 (duke3d_xxx.zip) = c31713e6400a175a1bfa3bd369d132f8a8abce8915c113549f98262b9a84b534
(-)files/patch-source_build_include_collections.h (+11 lines)
Line 0 Link Here
1
--- source/build/include/collections.h.orig	2018-02-19 14:35:27 UTC
2
+++ source/build/include/collections.h
3
@@ -41,7 +41,7 @@ struct GrowArray
4
     void vacuum()
5
     {
6
         if (size_ < capacity_)
7
-            reallocate(size);
8
+            reallocate(size());
9
     }
10
 
11
     void clear()
(-)files/patch-source_build_src_lz4.c (-5 / +5 lines)
Lines 1-11 Link Here
1
--- source/build/src/lz4.c.orig	2017-06-16 07:39:10 UTC
1
--- source/build/src/lz4.c.orig	2017-07-05 05:37:35 UTC
2
+++ source/build/src/lz4.c
2
+++ source/build/src/lz4.c
3
@@ -65,7 +65,7 @@
3
@@ -89,7 +89,7 @@
4
 /**************************************
4
 /*-************************************
5
 *  Includes
5
 *  Dependency
6
 **************************************/
6
 **************************************/
7
-#include "lz4.h"
7
-#include "lz4.h"
8
+#include "../include/lz4.h"
8
+#include "../include/lz4.h"
9
 /* see also "memory routines" below */
9
 
10
 
10
 
11
 
11
 /**************************************

Return to bug 226050