From owner-svn-ports-branches@FreeBSD.ORG Sat Jan 25 13:06:07 2014 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18FF44F9; Sat, 25 Jan 2014 13:06:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC50C1FE3; Sat, 25 Jan 2014 13:06:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PD66rc010736; Sat, 25 Jan 2014 13:06:06 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PD65Cc010731; Sat, 25 Jan 2014 13:06:05 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251306.s0PD65Cc010731@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 13:06:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r341026 - in branches/2014Q1/games/gillo: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Jan 2014 13:06:07 -0000 Author: miwi Date: Sat Jan 25 13:06:05 2014 New Revision: 341026 URL: http://svnweb.freebsd.org/changeset/ports/341026 QAT: https://qat.redports.org/buildarchive/r341026/ Log: MFH: r340292 - Fix build with clang PR: 184836 Submitted by: Ports Fury Added: branches/2014Q1/games/gillo/files/patch-src__goal.cpp - copied unchanged from r340292, head/games/gillo/files/patch-src__goal.cpp branches/2014Q1/games/gillo/files/patch-src__goal.h - copied unchanged from r340292, head/games/gillo/files/patch-src__goal.h branches/2014Q1/games/gillo/files/patch-src__simpleball.cpp - copied unchanged from r340292, head/games/gillo/files/patch-src__simpleball.cpp branches/2014Q1/games/gillo/files/patch-src__simpleball.h - copied unchanged from r340292, head/games/gillo/files/patch-src__simpleball.h Modified: branches/2014Q1/games/gillo/Makefile (contents, props changed) Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/games/gillo/Makefile ============================================================================== --- branches/2014Q1/games/gillo/Makefile Sat Jan 25 13:04:46 2014 (r341025) +++ branches/2014Q1/games/gillo/Makefile Sat Jan 25 13:06:05 2014 (r341026) @@ -11,18 +11,20 @@ DISTNAME= ${PORTNAME}-${DISTVERSION}-src MAINTAINER= ports@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 Copied: branches/2014Q1/games/gillo/files/patch-src__goal.cpp (from r340292, head/games/gillo/files/patch-src__goal.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/games/gillo/files/patch-src__goal.cpp Sat Jan 25 13:06:05 2014 (r341026, copy of r340292, head/games/gillo/files/patch-src__goal.cpp) @@ -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) + { Copied: branches/2014Q1/games/gillo/files/patch-src__goal.h (from r340292, head/games/gillo/files/patch-src__goal.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/games/gillo/files/patch-src__goal.h Sat Jan 25 13:06:05 2014 (r341026, copy of r340292, head/games/gillo/files/patch-src__goal.h) @@ -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); Copied: branches/2014Q1/games/gillo/files/patch-src__simpleball.cpp (from r340292, head/games/gillo/files/patch-src__simpleball.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/games/gillo/files/patch-src__simpleball.cpp Sat Jan 25 13:06:05 2014 (r341026, copy of r340292, head/games/gillo/files/patch-src__simpleball.cpp) @@ -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) Copied: branches/2014Q1/games/gillo/files/patch-src__simpleball.h (from r340292, head/games/gillo/files/patch-src__simpleball.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/games/gillo/files/patch-src__simpleball.h Sat Jan 25 13:06:05 2014 (r341026, copy of r340292, head/games/gillo/files/patch-src__simpleball.h) @@ -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);