svn commit: r323043 - in head/games/bomberinstinct: . files
Martin Wilke
miwi at FreeBSD.org
Mon Jul 15 14:48:35 UTC 2013
Author: miwi
Date: Mon Jul 15 14:48:34 2013
New Revision: 323043
URL: http://svnweb.freebsd.org/changeset/ports/323043
Log:
- Unbreak with clang
PR: 180514
Submitted by: Ports Fury
Added:
head/games/bomberinstinct/files/patch-src__main.c (contents, props changed)
Modified:
head/games/bomberinstinct/Makefile
Modified: head/games/bomberinstinct/Makefile
==============================================================================
--- head/games/bomberinstinct/Makefile Mon Jul 15 14:47:53 2013 (r323042)
+++ head/games/bomberinstinct/Makefile Mon Jul 15 14:48:34 2013 (r323043)
@@ -1,9 +1,5 @@
-# New ports collection makefile for: bomberinstinct
-# Date created: 28 September 2000
-# Whom: Maxim Sobolev <sobomax at FreeBSD.org>
-#
+# Created by: Maxim Sobolev <sobomax at FreeBSD.org>
# $FreeBSD$
-#
PORTNAME= bomberinstinct
PORTVERSION= 0.8.9
@@ -13,20 +9,19 @@ MASTER_SITES= SF/${PORTNAME}/Bomber%20In
DISTNAME= BomberInstinct-${PORTVERSION}
MAINTAINER= ports at FreeBSD.org
-COMMENT= A nice Bomberman-like multiplayer game
+COMMENT= Bomberman-like multiplayer game
WRKSRC= ${WRKDIR}/${DISTNAME}
+USES= gettext gmake
USE_SDL= mixer sdl
-USES= gettext
-USE_GMAKE= yes
GNU_CONFIGURE= yes
-USE_PERL5_BUILD=yes
-CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
-LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lintl
-
-pre-patch:
- @${FIND} ${WRKSRC} -name "*.[ch]" | \
- ${XARGS} ${PERL} -pi -e 's|<SDL/|<|g'
+
+CPPFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -L${LOCALBASE}/lib -lintl -pthread
+
+post-patch:
+ @${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \
+ 's|<SDL/|<|g'
.include <bsd.port.mk>
Added: head/games/bomberinstinct/files/patch-src__main.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/bomberinstinct/files/patch-src__main.c Mon Jul 15 14:48:34 2013 (r323043)
@@ -0,0 +1,52 @@
+--- src/main.c.orig
++++ src/main.c
+@@ -341,6 +341,24 @@
+ }
+
+
++/*--Rafraichir l'écran (à chaque frame), suivant le mode--*/
++void rafraichit(void)
++ {
++ if (dblebuf) {
++ SDL_Flip(ecran);
++ nrsrect=0;
++ nrs=!nrs;
++ }
++ else {
++ SDL_UpdateRects(ecran, nrsrect, rsrect);
++ nrsrect=0;
++ nrs=0;
++ }
++
++ return;
++}
++
++
+ /*--Affiche des informations, pose une question--*/
+ void dialogue(char * texte, int estunequestion)
+ {
+@@ -1176,24 +1194,6 @@
+ }
+
+
+-/*--Rafraichir l'écran (à chaque frame), suivant le mode--*/
+-int rafraichit(void)
+-{
+- if (dblebuf) {
+- SDL_Flip(ecran);
+- nrsrect=0;
+- nrs=!nrs;
+- }
+- else {
+- SDL_UpdateRects(ecran, nrsrect, rsrect);
+- nrsrect=0;
+- nrs=0;
+- }
+-
+- return;
+-}
+-
+-
+ /*--Dessine la jauge d'énergie du joueur n à droite de l'écran--*/
+ void jauge(int n)
+ {
More information about the svn-ports-head
mailing list