The aim of this game is to shoot colored balls so the form similarily

colored groups, causing them to fall out of the screen. You can
either win by clearing your entire field, or lose if any balls
attach below the white line near the bottom.

The main difference between this game and the classic Bust a Move,
is online multiplayer support, with menu options for playing against
random opponents, or starting or joining a named (private) game.

WWW: http://www.junoplay.com/

PR:		ports/98966
Submitted by:	Dmitry Marakasov <amdmi3@mail.ru>
This commit is contained in:
Ion-Mihai Tetcu 2006-06-16 12:06:00 +00:00
parent bab0c51054
commit 422b6e5c91
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=165566
5 changed files with 59 additions and 0 deletions

View file

@ -487,6 +487,7 @@
SUBDIR += pear-Games_Chess
SUBDIR += pengpong
SUBDIR += penguin-command
SUBDIR += pengupop
SUBDIR += pentix
SUBDIR += phalanx
SUBDIR += phpua-bf

35
games/pengupop/Makefile Normal file
View file

@ -0,0 +1,35 @@
# New ports collection makefile for: pengupop
# Date created: 14 Jun 2006
# Whom: Dmitry Marakasov <amdmi3@mail.ru>
#
# $FreeBSD$
#
PORTNAME= pengupop
PORTVERSION= 2.0.2
CATEGORIES= games
MASTER_SITES= http://www.junoplay.com/files/
MAINTAINER= amdmi3@mail.ru
COMMENT= Online multiplayer clone of Bust a Move
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_SDL= sdl
USE_GCC= 3.4+
CONFIGURE_ENV= CPPFLAGS="`${SDL_CONFIG} --cflags`" \
LDFLAGS="`${SDL_CONFIG} --libs`"
PLIST_FILES= bin/pengupop
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
BROKEN= does not build on FreeBSD 4.x: lack of swprintf
.endif
post-patch:
@${REINPLACE_CMD} -e 's|SDL/|SDL11/|' ${WRKSRC}/*.c
@${REINPLACE_CMD} -e 's|-lSDL||' ${WRKSRC}/Makefile.in
.include <bsd.port.post.mk>

3
games/pengupop/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (pengupop-2.0.2.tar.gz) = 5c213ecb3cf1bd714dbae771f97ee19a
SHA256 (pengupop-2.0.2.tar.gz) = 8f8bd11a6f55ba5ad2e45635d109850f1d5c2eb733bb8149ee10f8fc216b20c1
SIZE (pengupop-2.0.2.tar.gz) = 1936736

View file

@ -0,0 +1,10 @@
--- main.c.orig Wed Jun 14 15:41:04 2006
+++ main.c Thu Jun 15 03:42:45 2006
@@ -29,6 +29,7 @@
#include <io.h>
#endif
+#include <sys/time.h>
#include <errno.h>
#include <limits.h>
#include <math.h>

10
games/pengupop/pkg-descr Normal file
View file

@ -0,0 +1,10 @@
The aim of this game is to shoot colored balls so the form similarily
colored groups, causing them to fall out of the screen. You can
either win by clearing your entire field, or lose if any balls
attach below the white line near the bottom.
The main difference between this game and the classic Bust a Move,
is online multiplayer support, with menu options for playing against
random opponents, or starting or joining a named (private) game.
WWW: http://www.junoplay.com/