1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Add alienwave.

A shoot'em up game written using ncurses where you control a spaceship and
must kill as many alien spaceships as you can.

WWW: http://www.cs.unibo.it/~pira/alienwave/aw.html

PR:		ports/83967
Submitted by:	Travis Poppe <tlp@liquidx.org>
This commit is contained in:
Jean-Yves Lefort 2005-07-25 16:10:59 +00:00
parent 042daf2242
commit d1904a9514
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140101
4 changed files with 68 additions and 0 deletions

View File

@ -28,6 +28,7 @@
SUBDIR += alephone
SUBDIR += alephone-data
SUBDIR += alienblaster
SUBDIR += alienwave
SUBDIR += amphetamine
SUBDIR += amy
SUBDIR += an

58
games/alienwave/Makefile Normal file
View File

@ -0,0 +1,58 @@
# New ports collection makefile for: alienwave
# Date created: 23 July 2005
# Whom: Travis Poppe <tlp@liquidx.org>
#
# $FreeBSD$
#
PORTNAME= alienwave
PORTVERSION= 0.3.0
CATEGORIES= games
MASTER_SITES= http://www.cs.unibo.it/~pira/alienwave/
MAINTAINER= tlp@liquidx.org
COMMENT= Shoot'em up game written using ncurses
WRKSRC= ${WRKDIR}/${PORTNAME}
ALL_TARGET= ${PORTNAME}
MAKE_ARGS= CC="${CC}" CFLAGS="-c ${CFLAGS}"
PLIST_FILES= bin/alienwave
PORTDOCS= README STORY TO_DO
OPTIONS= RANDOM_LEVELS "Enable random waves" off \
LEVEL_EASY "Killing Xzarna: easy (default: medium)" off \
LEVEL_HARD "Killing Xzarna: hard (default: medium)" off
.include <bsd.port.pre.mk>
.if defined(WITH_LEVEL_EASY)
CFLAGS+= -DLEV_EASY
.endif
.if defined(WITH_LEVEL_HARD)
CFLAGS+= -DLEV_HARD
.endif
.if defined(WITH_RANDOM_LEVELS)
CFLAGS+= -DRANDOM_LEVELS
.endif
.if defined(WITH_LEVEL_EASY) && defined(WITH_LEVEL_HARD)
pre-everything::
@${ECHO_CMD} "The LEVEL_EASY and LEVEL_HARD options are mutually exclusive."
@${ECHO_CMD} "Please run 'make config' again."
@${FALSE}
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/alienwave ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
. for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.post.mk>

2
games/alienwave/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (alienwave-0.3.0.tar.gz) = 7d30b2aabf18e588cb8f6998e555cdc9
SIZE (alienwave-0.3.0.tar.gz) = 22046

View File

@ -0,0 +1,7 @@
A shoot'em up game written using ncurses where you control a spaceship and
must kill as many alien spaceships as you can.
WWW: http://www.cs.unibo.it/~pira/alienwave/aw.html
- Travis Poppe
tlp@liquidx.org