Index: head/games/briquolo/Makefile =================================================================== --- head/games/briquolo/Makefile (revision 460697) +++ head/games/briquolo/Makefile (revision 460698) @@ -1,36 +1,36 @@ # Created by: Kirill Ponomarew # $FreeBSD$ PORTNAME= briquolo PORTVERSION= 0.5.7 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= games MASTER_SITES= http://briquolo.free.fr/download/ MAINTAINER= martymac@FreeBSD.org COMMENT= Breakout clone with an OpenGL 3D representation LICENSE= GPLv2 LIB_DEPENDS= libpng.so:graphics/png USES= tar:bzip2 gmake iconv desktop-file-utils USE_GL= gl USE_SDL= mixer sdl ttf USE_XORG= x11 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib PLIST_SUB= VERSION="${PORTVERSION}" # Mandatory: wants to link against libintl anyway USES+= gettext PLIST_SUB+= NLS="" post-patch: ${REINPLACE_CMD} -e 's|png_infopp_NULL|NULL|g' \ -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ ${WRKSRC}/src/MOGL/MOGL_Image.cpp .include Index: head/games/briquolo/files/patch-Constante.h =================================================================== --- head/games/briquolo/files/patch-Constante.h (nonexistent) +++ head/games/briquolo/files/patch-Constante.h (revision 460698) @@ -0,0 +1,13 @@ +Fix typo + +--- src/Constante.h.orig 2018-01-29 22:01:42.080765000 +0100 ++++ src/Constante.h 2018-01-29 22:01:53.560724000 +0100 +@@ -20,7 +20,7 @@ + * + *****************************************************************************/ + #ifndef _CONSTANTE +-#define _CONTANSTE ++#define _CONSTANTE + + #include + Property changes on: head/games/briquolo/files/patch-Constante.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/briquolo/files/patch-src-Constante.cpp =================================================================== --- head/games/briquolo/files/patch-src-Constante.cpp (revision 460697) +++ head/games/briquolo/files/patch-src-Constante.cpp (revision 460698) @@ -1,10 +1,19 @@ ---- src/Constante.cpp.orig 2013-10-29 17:15:21.000000000 +0100 -+++ src/Constante.cpp 2013-10-29 17:18:30.000000000 +0100 +--- ./src/Constante.cpp.orig 2008-03-22 10:40:33.000000000 +0100 ++++ ./src/Constante.cpp 2018-01-29 22:09:08.069039000 +0100 @@ -32,6 +32,7 @@ #define WIN32_LEAN_AND_MEAN #include #else +#include #include #endif +@@ -102,7 +103,7 @@ + #else + + string dir1(getenv("HOME")); +- string dir2("/."PACKAGE); ++ string dir2("/." PACKAGE); + _Local=dir1+dir2; + + _NumVersion=VERSION; Index: head/games/briquolo/files/patch-src-ElementCollision.h =================================================================== --- head/games/briquolo/files/patch-src-ElementCollision.h (nonexistent) +++ head/games/briquolo/files/patch-src-ElementCollision.h (revision 460698) @@ -0,0 +1,11 @@ +--- ./src/ElementCollision.h.orig 2018-01-29 21:56:58.057957000 +0100 ++++ ./src/ElementCollision.h 2018-01-29 22:04:08.902625000 +0100 +@@ -30,7 +30,7 @@ + using namespace std; + + class Balle; +-class Struct_Collision; ++struct Struct_Collision; + + class Point + { Property changes on: head/games/briquolo/files/patch-src-ElementCollision.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/briquolo/files/patch-src-MOGL-MOGL_PoliceTTF.h =================================================================== --- head/games/briquolo/files/patch-src-MOGL-MOGL_PoliceTTF.h (nonexistent) +++ head/games/briquolo/files/patch-src-MOGL-MOGL_PoliceTTF.h (revision 460698) @@ -0,0 +1,28 @@ +Fix types passed to SDL_Rect structure (SDL 1.2) + +--- src/MOGL/MOGL_PoliceTTF.h.orig 2018-02-01 22:04:52.124355000 +0100 ++++ src/MOGL/MOGL_PoliceTTF.h 2018-02-01 22:06:25.875693000 +0100 +@@ -42,10 +42,10 @@ + { + GLuint TextureName; + Uint16 carac; +- unsigned int x1; +- unsigned int y1; +- unsigned int x2; +- unsigned int y2; ++ Sint16 x1; ++ Sint16 y1; ++ int x2; ++ int y2; + }; + + struct MOGL_Struct_TextureCarac +@@ -141,7 +141,7 @@ + MOGL_Struct_Carac * _Caracteres; + MOGL_Struct_Carac * (_Correspondance[256-32]); + +- unsigned int _LastTextureX, _LastTextureY; ++ Sint16 _LastTextureX, _LastTextureY; + unsigned int maxHeightCarac; + MOGL_Map_Carac _MapCarac; + MOGL_Vector_TextureName _VectorTextureName; Property changes on: head/games/briquolo/files/patch-src-MOGL-MOGL_PoliceTTF.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property