From owner-svn-ports-all@FreeBSD.ORG Sat Sep 1 15:55:57 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 750141065675; Sat, 1 Sep 2012 15:55:57 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 550CC8FC1D; Sat, 1 Sep 2012 15:55:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q81Ftvku034189; Sat, 1 Sep 2012 15:55:57 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q81Ftvj8034183; Sat, 1 Sep 2012 15:55:57 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201209011555.q81Ftvj8034183@svn.freebsd.org> From: Glen Barber Date: Sat, 1 Sep 2012 15:55:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303486 - in head/games: . iceicepenguin iceicepenguin/files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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, 01 Sep 2012 15:55:57 -0000 Author: gjb Date: Sat Sep 1 15:55:56 2012 New Revision: 303486 URL: http://svn.freebsd.org/changeset/ports/303486 Log: Ice Ice Penguin is a remake of an old SEGA Dreamcast game called Chu Chu Rocket. PR: ports/171097 Submitted by: nemysis (maintainer) Approved by: crees (mentor) Added: head/games/iceicepenguin/ head/games/iceicepenguin/Makefile (contents, props changed) head/games/iceicepenguin/distinfo (contents, props changed) head/games/iceicepenguin/files/ head/games/iceicepenguin/files/iceicepenguin.in (contents, props changed) head/games/iceicepenguin/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Sat Sep 1 15:41:31 2012 (r303485) +++ head/games/Makefile Sat Sep 1 15:55:56 2012 (r303486) @@ -385,6 +385,7 @@ SUBDIR += holotz-castle SUBDIR += icbm3d SUBDIR += icebreaker + SUBDIR += iceicepenguin SUBDIR += ifm SUBDIR += imaze SUBDIR += impossible_mission_puzzle Added: head/games/iceicepenguin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/iceicepenguin/Makefile Sat Sep 1 15:55:56 2012 (r303486) @@ -0,0 +1,65 @@ +# $FreeBSD$ + +PORTNAME= iceicepenguin +PORTVERSION= 1.5.1 +CATEGORIES= games python +MASTER_SITES= SF/${PORTNAME}/Default/Ice%20Ice%20Penguin/ \ + SF/nemysisfreebsdp/:icons +DISTNAME= iip.${DISTVERSION}-final +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + ${PORTNAME}_icons.zip:icons +DIST_SUBDIR= python + +MAINTAINER= nemysis@gmx.ch +COMMENT= Remake of an old SEGA Dreamcast game called Chu Chu Rocket + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game + +WRKSRC= ${WRKDIR}/"ice ice penguin" + +FETCH_ARGS?= -Fpr +USE_ZIP= yes +USE_PYTHON= yes +NO_BUILD= yes + +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}_48.png \ + share/pixmaps/${PORTNAME}_64.png \ + share/pixmaps/${PORTNAME}_72.png \ + share/pixmaps/${PORTNAME}_96.png + +PORTDATA= * +PORTDOCS= CHANGELOG.txt readme.txt + +SUB_FILES= ${PORTNAME} + +.include + +do-install: +# Scripts + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + +# Executable + ${MKDIR} ${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIR} + +# Data + ${MKDIR} ${DATADIR} +.for d in fonts gfx lvls menu sfx + @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR}) +.endfor + +# Pixmaps + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps + +# Documentation +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} +. for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +. endfor +.endif + +.include Added: head/games/iceicepenguin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/iceicepenguin/distinfo Sat Sep 1 15:55:56 2012 (r303486) @@ -0,0 +1,4 @@ +SHA256 (python/iip.1.5.1-final.zip) = 6fde1fc6b432951ed73c0f75c769d4550e5b4a014783bf49aaef24e904b7910e +SIZE (python/iip.1.5.1-final.zip) = 17948605 +SHA256 (python/iceicepenguin_icons.zip) = 623826fb3536d0837d5a076a9bb73fb6582986dd1234491be728e72f21ae46fc +SIZE (python/iceicepenguin_icons.zip) = 29562 Added: head/games/iceicepenguin/files/iceicepenguin.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/iceicepenguin/files/iceicepenguin.in Sat Sep 1 15:55:56 2012 (r303486) @@ -0,0 +1,7 @@ +#!/bin/sh +# +# $FreeBSD$ +# +echo "Ice Ice Penguin: Starting up..." +cd "%%DATADIR%%" +exec /usr/bin/env python ./iceicepengui.py Added: head/games/iceicepenguin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/iceicepenguin/pkg-descr Sat Sep 1 15:55:56 2012 (r303486) @@ -0,0 +1,21 @@ +Ice Ice Penguin is a remake of an old SEGA Dreamcast game called Chu Chu Rocket. + +Two to four players try to steer penguins from the safety of the central igloo +to the player's water hole. To do this, each player can place up to three of the +five random direction arrows assigned to him on the gamefield. +Arrows can be chosen using the control cursor in the lower part of the screen, +and be placed on any free field using the field cursor and the action key. +Each arrow will disappear after after a given time (15 seconds by default) and +a new arrow will automagically appear in the control field. + +Bears eat penguins (at least in this game). If a bear enter a player's target +area, the player loses up to 15 points (the score can not become negative) +Special penguins, marked by a colored ring, score 10 points and launch a +10 second long special event. See below for a list of events. + +The game ends when the ice on the right side of the screen has reached +the bottom (after 3 minutes by default) + +Winner is the player who gathered the most penguins. + +WWW: https://sourceforge.net/projects/iceicepenguin/