ports/184836: commit references a PR
dfilter service
dfilter at FreeBSD.ORG
Sun Jan 19 13:50:05 UTC 2014
The following reply was made to PR ports/184836; it has been noted by GNATS.
From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:
Subject: Re: ports/184836: commit references a PR
Date: Sun, 19 Jan 2014 13:47:27 +0000 (UTC)
Author: miwi
Date: Sun Jan 19 13:47:16 2014
New Revision: 340292
URL: http://svnweb.freebsd.org/changeset/ports/340292
QAT: https://qat.redports.org/buildarchive/r340292/
Log:
- Fix build with clang
PR: 184836
Submitted by: Ports Fury
Added:
head/games/gillo/files/patch-src__goal.cpp (contents, props changed)
head/games/gillo/files/patch-src__goal.h (contents, props changed)
head/games/gillo/files/patch-src__simpleball.cpp (contents, props changed)
head/games/gillo/files/patch-src__simpleball.h (contents, props changed)
Modified:
head/games/gillo/Makefile (contents, props changed)
Modified: head/games/gillo/Makefile
==============================================================================
--- head/games/gillo/Makefile Sun Jan 19 13:46:19 2014 (r340291)
+++ head/games/gillo/Makefile Sun Jan 19 13:47:16 2014 (r340292)
@@ -11,18 +11,20 @@ DISTNAME= ${PORTNAME}-${DISTVERSION}-src
MAINTAINER= ports at FreeBSD.org
COMMENT= Players are cars throwing a magnetic fuzzy ball into a goal
+LICENSE= GPLv2
+
BUILD_DEPENDS= ${JAM}:${PORTSDIR}/devel/jam \
${LOCALBASE}/lib/libode.a:${PORTSDIR}/devel/ode \
${LOCALBASE}/lib/libplibsg.a:${PORTSDIR}/x11-toolkits/plib
+WRKSRC= ${WRKDIR}/${PORTNAME}
+
USE_BZIP2= yes
USE_GL= gl
USE_SDL= yes
-WRKSRC= ${WRKDIR}/${PORTNAME}
JAM?= ${LOCALBASE}/bin/jam
-NO_STAGE= yes
post-patch:
@${REINPLACE_CMD} -i '' -e 's|SDL/||g' ${WRKSRC}/src/*
@${REINPLACE_CMD} -e 's|%%SDL_CFLAGS%%|`${SDL_CONFIG} --cflags`|' \
@@ -33,11 +35,11 @@ post-patch:
do-build:
cd ${WRKSRC} && ${SETENV} "C++=${CC}" "LOCALBASE=${LOCALBASE}" \
"CFLAGS=${CFLAGS} -DDATADIR=\\\"${PREFIX}/share\\\"" \
- ${JAM} -dx -sPREFIX=${PREFIX}
+ ${JAM} -dx -sPREFIX=${PREFIX}
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/src/gillo3 ${PREFIX}/bin
- @${MKDIR} ${DATADIR}
- ${INSTALL_DATA} ${WRKSRC}/data/*.* ${DATADIR}
+ (cd ${WRKSRC}/src && ${INSTALL_PROGRAM} gillo3 ${STAGEDIR}${PREFIX}/bin)
+ @${MKDIR} ${STAGEDIR}${DATADIR}
+ (cd ${WRKSRC}/data && ${INSTALL_DATA} *.* ${STAGEDIR}${DATADIR})
.include <bsd.port.mk>
Added: head/games/gillo/files/patch-src__goal.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/gillo/files/patch-src__goal.cpp Sun Jan 19 13:47:16 2014 (r340292)
@@ -0,0 +1,11 @@
+--- src/goal.cpp.orig
++++ src/goal.cpp
+@@ -22,6 +22,8 @@
+
+ namespace gillo {
+
++const float Goal::areaRadius = ODE_GOAL_DISTANCE;
++
+ Goal::Goal(Context& c)
+ : Entity(c)
+ {
Added: head/games/gillo/files/patch-src__goal.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/gillo/files/patch-src__goal.h Sun Jan 19 13:47:16 2014 (r340292)
@@ -0,0 +1,11 @@
+--- src/goal.h.orig
++++ src/goal.h
+@@ -32,7 +32,7 @@
+ */
+ class Goal : public Entity
+ {
+- static const float areaRadius = ODE_GOAL_DISTANCE;
++ static const float areaRadius;
+ dGeomID gids[6];
+ public:
+ Goal(Context& c);
Added: head/games/gillo/files/patch-src__simpleball.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/gillo/files/patch-src__simpleball.cpp Sun Jan 19 13:47:16 2014 (r340292)
@@ -0,0 +1,11 @@
+--- src/simpleball.cpp.orig
++++ src/simpleball.cpp
+@@ -26,6 +26,8 @@
+ const sgVec4 SimpleBall::p1[3] = { {0.3, 0.0, 0.0, 1.0}, {1.0, 0.0, 0.0, 1.0}, {1.0, 0.4, 0.4, 1.0} };
+ const sgVec4 SimpleBall::ne[3] = { {0.0, 0.0, 0.0, 1}, {0.6, 0.6, 0.6, 1}, {1.0, 1.0, 1.0, 1} };
+ const sgVec4 SimpleBall::p2[3] = { {0.0, 0.0, 0.3, 1}, {0.0, 0.0, 1.0, 1}, {0.4, 0.4, 1.0, 1} };
++const double SimpleBall::weight = ODE_BALL_MASS;
++const double SimpleBall::radius = ODE_BALL_RADIUS;
+
+ SimpleBall::SimpleBall(Context& c)
+ : Entity(c), ballEffectPtr(NULL), possessionIncrement(0), targetSize(2*radius), currentSize(2*radius)
Added: head/games/gillo/files/patch-src__simpleball.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/gillo/files/patch-src__simpleball.h Sun Jan 19 13:47:16 2014 (r340292)
@@ -0,0 +1,13 @@
+--- src/simpleball.h.orig
++++ src/simpleball.h
+@@ -37,8 +37,8 @@
+ static const sgVec4 p1[3];
+ static const sgVec4 ne[3];
+ static const sgVec4 p2[3];
+- static const double weight = ODE_BALL_MASS;
+- static const double radius = ODE_BALL_RADIUS;
++ static const double weight;
++ static const double radius;
+
+ SimpleBall(Context& c);
+ SimpleBall(Context& c, float size, ssgSimpleState* state);
_______________________________________________
svn-ports-all at freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe at freebsd.org"
More information about the freebsd-ports-bugs
mailing list