The object of the game is to remove all of the blocks from the screen

before the time runs out. Two blocks are removed at a time,
and must be of the same color. After completing a level,
you will be rewarded with a bonus point for every tick left on the clock.
For each level thereafter, the time to complete the the level will be shorter.

PR:	ports/166854
Submitted by:	nemysis <nemysis@gmx.ch>
Approved by:	eadler (mentor)
This commit is contained in:
Alex Kozlov 2012-05-03 20:56:57 +00:00
parent 4d2779ac98
commit 6621e8f035
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=295979
4 changed files with 57 additions and 0 deletions

View File

@ -900,6 +900,7 @@
SUBDIR += tuxracer
SUBDIR += tuxracer_golf
SUBDIR += tuxtype
SUBDIR += twind
SUBDIR += twitch
SUBDIR += tycho
SUBDIR += typespeed

47
games/twind/Makefile Normal file
View File

@ -0,0 +1,47 @@
# New Ports collection makefile for: twind
# Date created: 2012-04-11
# Whom: nemysis@gmx.ch
#
# $FreeBSD$
#
PORTNAME= twind
PORTVERSION= 1.1.0
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
MAINTAINER= nemysis@gmx.ch
COMMENT= Match and remove all of the blocks before time runs out
LICENSE= GPLv2
USE_SDL= sdl image mixer
MAKE_JOBS_SAFE= yes
PLIST_FILES= bin/twind \
share/pixmaps/${PORTNAME}.png
PORTDATA= *
PORTDOCS= AUTHORS CREDITS ChangeLog NEWS README TODO
do-build:
cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \
-DDATA_PREFIX=\"${DATADIR}/\" -DAUDIO -DLINUX \
-lm `${SDL_CONFIG} --cflags --libs` -lSDL_mixer -lSDL_image twind.c
do-install:
# Executable
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
# Pixmaps
${INSTALL_DATA} ${WRKSRC}/graphics/twind.png ${PREFIX}/share/pixmaps/${PORTNAME}.png
# Data
${MKDIR} ${DATADIR}
@(cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics music sound" ${DATADIR})
# Documentation
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

2
games/twind/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (twind-1.1.0.tar.gz) = 392a09e92862cf8a89a9b8c6f5ed7255c15c7f058a89d889c32f59ed8da73382
SIZE (twind-1.1.0.tar.gz) = 2837845

7
games/twind/pkg-descr Normal file
View File

@ -0,0 +1,7 @@
The object of the game is to remove all of the blocks from the screen
before the time runs out. Two blocks are removed at a time,
and must be of the same color. After completing a level,
you will be rewarded with a bonus point for every tick left on the clock.
For each level thereafter, the time to complete the the level will be shorter.
WWW: http://twind.sourceforge.net/