From a5347b2176cfe9f5cefdb90d24eceec2c3a57654 Mon Sep 17 00:00:00 2001 From: Martin Wilke Date: Tue, 9 Oct 2007 07:25:19 +0000 Subject: AstroMenace is a brilliant 3d scroll-shooter allowing you to feel the adrenalin rush of a fierce space battle against relentless swarms of alien invaders. Immerse into a decisive battle against tons of cunning foes, face the terrifying bosses and protect your homeland throughout 15 diverse levels of the game. The hardcore gameplay of AstroMenace, packed with pure non-stop action, will become a full scale test for your basic instinct of survival. AstroMenace shines with stunning special effects which in combination with superb 3d graphics guarantee that the game will feast the eyes of even most experienced arcade players. The quality of visuals ensures that the demonstration of your superior power and new weaponry will look really impressive and awesome, so the destruction of foes is a truly amazing sight. The game provides a wide variety of armaments and weapon upgrades for discharging the retributive wrath upon the hordes of enemies, besides it has a great number of improvements for enhancing the defensive abilities of your spaceship. Collect money during the combat and invest them into turning your spaceship into an ultimate weapon of mass destruction. PR: ports/116630 Submitted by: Oleg Alexeenkov --- games/openastromenace/Makefile | 95 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 games/openastromenace/Makefile (limited to 'games/openastromenace/Makefile') diff --git a/games/openastromenace/Makefile b/games/openastromenace/Makefile new file mode 100644 index 000000000000..7f28b04d4a76 --- /dev/null +++ b/games/openastromenace/Makefile @@ -0,0 +1,95 @@ +# New ports collection makefile for: openastromenace +# Date created: 23 Sep 2007 +# Whom: Oleg Alexeenkov +# +# $FreeBSD$ +# + +PORTNAME= openastromenace +PORTVERSION= 1.2.0 +CATEGORIES= games +MASTER_SITES= SF + +MAINTAINER= proler@gmail.com +COMMENT= Hardcore 3D space shooter with spaceship upgrade possibilities + +USE_BZIP2= yes +USE_GL= yes +WANT_SDL= yes +USE_SDL= sdl + +CMAKE_ARGS= -DCMAKE_BUILD_TYPE:STRING=Release \ + -DCMAKE_C_COMPILER:STRING='${CC}' \ + -DCMAKE_CXX_COMPILER:STRING=${CXX} \ + -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \ + -DCMAKE_INSTALL_PREFIX=${PREFIX} + +SUB_FILES= pkg-message + +BUILD_DEPENDS+= ${LOCALBASE}/bin/cmake:${PORTSDIR}/devel/cmake \ + +LIB_DEPENDS+= vorbisfile:${PORTSDIR}/audio/libvorbis \ + jpeg:${PORTSDIR}/graphics/jpeg \ + openal:${PORTSDIR}/audio/openal \ + alut:${PORTSDIR}/audio/freealut \ + +OPTIONS= SRC "build src" on \ + DATA "install data file" on \ + EN " en lang" on \ + DE " de lang " on \ + RU " ru lang " on \ + +.include + +.undef DISTFILES +.if defined(WITH_SRC) +DISTFILES+=oamenace-src-${PORTVERSION}.tar.bz2 +.else +NO_BUILD= yes +.endif +.if defined(WITH_DATA) +DISTFILES+=oamenace-data-${PORTVERSION}.tar.bz2 +.endif +.if defined(WITH_EN) +DISTFILES+=oamenace-lang-en-${PORTVERSION}.tar.bz2 +.endif +.if defined(WITH_DE) +DISTFILES+=oamenace-lang-de-${PORTVERSION}.tar.bz2 +.endif +.if defined(WITH_RU) +DISTFILES+=oamenace-lang-ru-${PORTVERSION}.tar.bz2 +.endif + +do-configure: +.if defined(WITH_SRC) + @(cd ${WRKSRC}; \ + ${LOCALBASE}/bin/cmake ${CMAKE_ARGS} ${PATCH_WRKSRC}) +.endif + +do-install: +.if defined(WITH_SRC) + ${INSTALL_PROGRAM} ${WRKSRC}/AstroMenace ${PREFIX}/bin +.endif + ${MKDIR} ${DATADIR} +.if defined(WITH_DATA) + ${INSTALL_DATA} ${WRKDIR}/gamedata.vfs ${DATADIR}/ + ${MKDIR} ${DATADIR}/DATA/SCRIPT + ${INSTALL_DATA} ${WRKDIR}/DATA/SCRIPT/* ${DATADIR}/DATA/SCRIPT +.endif +.if defined(WITH_EN) + ${INSTALL_DATA} ${WRKDIR}/gamelang_en.vfs ${DATADIR}/ + ${LN} -sf ${DATADIR}/gamelang_en.vfs ${DATADIR}/gamelang.vfs +.endif +.if defined(WITH_DE) + ${INSTALL_DATA} ${WRKDIR}/gamelang_de.vfs ${DATADIR}/ + ${LN} -sf ${DATADIR}/gamelang_de.vfs ${DATADIR}/gamelang.vfs +.endif +.if defined(WITH_RU) + ${INSTALL_DATA} ${WRKDIR}/gamelang_ru.vfs ${DATADIR}/ + ${LN} -sf ${DATADIR}/gamelang_ru.vfs ${DATADIR}/gamelang.vfs +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include -- cgit v1.2.3