From owner-svn-ports-branches@FreeBSD.ORG Thu May 7 20:37:14 2015 Return-Path: Delivered-To: svn-ports-branches@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2939F82; Thu, 7 May 2015 20:37:14 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6ACD1AD9; Thu, 7 May 2015 20:37:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t47KbEli054161; Thu, 7 May 2015 20:37:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t47KbEcf054159; Thu, 7 May 2015 20:37:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201505072037.t47KbEcf054159@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 7 May 2015 20:37:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r385669 - in branches/2015Q2/games/flobopuyo: . 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.20 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: Thu, 07 May 2015 20:37:14 -0000 Author: amdmi3 Date: Thu May 7 20:37:13 2015 New Revision: 385669 URL: https://svnweb.freebsd.org/changeset/ports/385669 Log: MFH: r385602 - Fix broken keypad handling (mixed up keys) - While here, add LICENSE Submitted by: きくちゃん Approved by: ports-secteam (delphij) Added: branches/2015Q2/games/flobopuyo/files/patch-InputManager.cpp - copied unchanged from r385602, head/games/flobopuyo/files/patch-InputManager.cpp Modified: branches/2015Q2/games/flobopuyo/Makefile Directory Properties: branches/2015Q2/ (props changed) Modified: branches/2015Q2/games/flobopuyo/Makefile ============================================================================== --- branches/2015Q2/games/flobopuyo/Makefile Thu May 7 20:34:30 2015 (r385668) +++ branches/2015Q2/games/flobopuyo/Makefile Thu May 7 20:37:13 2015 (r385669) @@ -3,7 +3,7 @@ PORTNAME= flobopuyo PORTVERSION= 0.20 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= games MASTER_SITES= http://www.ios-software.com/flobopuyo/ \ http://mirror.amdmi3.ru/distfiles/ @@ -11,6 +11,9 @@ MASTER_SITES= http://www.ios-software.co MAINTAINER= amdmi3@FreeBSD.org COMMENT= Clone of the famous PuyoPuyo +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + USES= bison gmake dos2unix tar:tgz DOS2UNIX_FILES= IosVector.cpp PuyoGame.cpp USE_SDL= sdl mixer image Copied: branches/2015Q2/games/flobopuyo/files/patch-InputManager.cpp (from r385602, head/games/flobopuyo/files/patch-InputManager.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q2/games/flobopuyo/files/patch-InputManager.cpp Thu May 7 20:37:13 2015 (r385669, copy of r385602, head/games/flobopuyo/files/patch-InputManager.cpp) @@ -0,0 +1,11 @@ +--- InputManager.cpp.orig 2004-10-09 07:41:12.000000000 +0900 ++++ InputManager.cpp 2015-05-06 22:08:05.341688383 +0900 +@@ -164,7 +164,7 @@ + } + + int JoystickAxisSwitch::id() const { +- return 3000 + which * 50 + axis + (maximum?1:0); ++ return 3000 + which * 50 + axis * 2 + (maximum?1:0); + } + + bool JoystickAxisSwitch::isArrowUp() const {