From owner-svn-ports-all@FreeBSD.ORG Sat Oct 19 02:58:42 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTP id E7A451EA; Sat, 19 Oct 2013 02:58:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) 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 D49C42E78; Sat, 19 Oct 2013 02:58:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9J2wfQc009989; Sat, 19 Oct 2013 02:58:41 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9J2wfH9009982; Sat, 19 Oct 2013 02:58:41 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201310190258.r9J2wfH9009982@svn.freebsd.org> From: Dmitry Marakasov Date: Sat, 19 Oct 2013 02:58:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330839 - in head/games/shootingstar: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Oct 2013 02:58:42 -0000 Author: amdmi3 Date: Sat Oct 19 02:58:40 2013 New Revision: 330839 URL: http://svnweb.freebsd.org/changeset/ports/330839 Log: - Support staging - Convert USE_GMAKE to USES - Fix segfault - Rename patches according to porter's handbook Added: head/games/shootingstar/files/patch-src-engine-cTextureFont.cpp - copied unchanged from r330763, head/games/shootingstar/files/patch-src--engine--cTextureFont.cpp head/games/shootingstar/files/patch-src-game-cMainMenu.cpp (contents, props changed) head/games/shootingstar/files/patch-src-game-cOptions.cpp - copied unchanged from r330763, head/games/shootingstar/files/patch-src--game--cOptions.cpp Deleted: head/games/shootingstar/files/patch-src--engine--cTextureFont.cpp head/games/shootingstar/files/patch-src--game--cOptions.cpp head/games/shootingstar/pkg-plist Modified: head/games/shootingstar/Makefile Modified: head/games/shootingstar/Makefile ============================================================================== --- head/games/shootingstar/Makefile Sat Oct 19 02:58:22 2013 (r330838) +++ head/games/shootingstar/Makefile Sat Oct 19 02:58:40 2013 (r330839) @@ -12,7 +12,7 @@ MAINTAINER= amdmi3@FreeBSD.org COMMENT= SDL/OpenGL top-down shooter GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake USE_GL= gl USE_SDL= sdl mixer image @@ -20,5 +20,7 @@ CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes +PLIST_FILES= bin/${PORTNAME} +PORTDATA= * + .include Copied: head/games/shootingstar/files/patch-src-engine-cTextureFont.cpp (from r330763, head/games/shootingstar/files/patch-src--engine--cTextureFont.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/shootingstar/files/patch-src-engine-cTextureFont.cpp Sat Oct 19 02:58:40 2013 (r330839, copy of r330763, head/games/shootingstar/files/patch-src--engine--cTextureFont.cpp) @@ -0,0 +1,10 @@ +--- src/engine/cTextureFont.cpp.orig Sun Jul 6 22:31:10 2003 ++++ src/engine/cTextureFont.cpp Sun Nov 20 02:33:54 2005 +@@ -31,6 +31,7 @@ + #include + #include + #include ++#include + #include "cTextureManager.hpp" + #include "Debug.hpp" + //------------------------------------------------------------------------------ Added: head/games/shootingstar/files/patch-src-game-cMainMenu.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/shootingstar/files/patch-src-game-cMainMenu.cpp Sat Oct 19 02:58:40 2013 (r330839) @@ -0,0 +1,11 @@ +--- src/game/cMainMenu.cpp.orig 2004-02-21 15:48:50.000000000 +0300 ++++ src/game/cMainMenu.cpp 2013-10-19 04:20:28.484773573 +0400 +@@ -399,7 +399,7 @@ + + string &text = mDemoStrings[mCurrentString]; + +- static unsigned int i = 0; ++ static int i = 0; + if ( mLastLetter + 100 < now ) + { + i++; Copied: head/games/shootingstar/files/patch-src-game-cOptions.cpp (from r330763, head/games/shootingstar/files/patch-src--game--cOptions.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/shootingstar/files/patch-src-game-cOptions.cpp Sat Oct 19 02:58:40 2013 (r330839, copy of r330763, head/games/shootingstar/files/patch-src--game--cOptions.cpp) @@ -0,0 +1,11 @@ +--- src/game/cOptions.cpp.orig Mon Dec 22 08:09:06 2003 ++++ src/game/cOptions.cpp Sun Nov 20 03:12:28 2005 +@@ -201,7 +201,7 @@ + dbgError () << "Unable to read from options file\n"; + throw runtime_error ("Unable to load options"); + } +- int (keys.keys[i]) = key; // IS THIS SAFE? ++ keys.keys[i] = (SDLKey)key; // IS THIS SAFE? + + fin >> key; + keys.buttons[i] = key;