Intense 2D space shooter like Space-Invaders, but not quite. It

uses OpenGL and includes particle effects.

The objective is to shoot the aliens before they reach the bottom
of the screen.

WWW: http://dusted.dk/?view=linux-game-simplevaders

PR:		ports/124233
Submitted by:	Dmitry Marakasov <amdmi3 at amdmi3.ru>
This commit is contained in:
Martin Wilke 2008-06-03 17:24:39 +00:00
parent a673bf6092
commit da8720e4d2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=214265
5 changed files with 60 additions and 0 deletions

View File

@ -720,6 +720,7 @@
SUBDIR += sfbol
SUBDIR += shaaft
SUBDIR += shootingstar
SUBDIR += simplevaders
SUBDIR += six
SUBDIR += sjeng
SUBDIR += sl

View File

@ -0,0 +1,37 @@
# New ports collection makefile for: simplevaders
# Date created: 21 Apr 2008
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
#
# $FreeBSD$
#
PORTNAME= simplevaders
PORTVERSION= 0.8
CATEGORIES= games
MASTER_SITES= http://dusted.dk/download/ \
http://www.amdmi3.ru/distfiles/
MAINTAINER= amdmi3@amdmi3.ru
COMMENT= A Space-Invaders like 2D space shooter
USE_BZIP2= yes
USE_SDL= sdl mixer image ttf
USE_GL= gl glu
WRKSRC= ${WRKDIR}/${PORTNAME}
post-patch:
@${REINPLACE_CMD} -e 's|data/|${DATADIR}/|' ${WRKSRC}/main.cpp
@${RM} ${WRKSRC}/data/*\~
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} main.cpp -o ${PORTNAME} \
`${SDL_CONFIG} --cflags --libs` -lSDL_ttf -lSDL_mixer \
-lSDL_image -lGL -lGLU
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${MKDIR} ${DATADIR}
cd ${WRKSRC}/data && ${COPYTREE_SHARE} . ${DATADIR}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (simplevaders-0.8.tar.bz2) = f3454361ab40dc66d16a702ceb7c1e6d
SHA256 (simplevaders-0.8.tar.bz2) = dc39e8f1ae0ee51edf6836321705b8f8fb086cfce5a8d55b71a3960aad794da4
SIZE (simplevaders-0.8.tar.bz2) = 415625

View File

@ -0,0 +1,7 @@
Intense 2D space shooter like Space-Invaders, but not quite. It
uses OpenGL and includes particle effects.
The objective is to shoot the aliens before they reach the bottom
of the screen.
WWW: http://dusted.dk/?view=linux-game-simplevaders

View File

@ -0,0 +1,12 @@
bin/simplevaders
%%DATADIR%%/cred.png
%%DATADIR%%/files.txt
%%DATADIR%%/flare.png
%%DATADIR%%/font.ttf
%%DATADIR%%/gameover.png
%%DATADIR%%/gameover.wav
%%DATADIR%%/intro.png
%%DATADIR%%/nmedie.wav
%%DATADIR%%/playerbullet.wav
%%DATADIR%%/playerhit.wav
@dirrm %%DATADIR%%