diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-11-24 04:11:15 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-11-24 04:11:15 +0000 |
commit | 1734aa8365a50099f8cab170dc0c1142375fe23e (patch) | |
tree | 3028c8a725645503a4b9c1ccd0f7201c7c4778c3 /games/oolite/Makefile | |
parent | [NEW PORT] graphics/crystalentitylayer: CEL is a layer that sits on top of Cr... (diff) |
New port: games/oolite - clone of Elite space simulator game for GNUstep
Oolite is an independent interpretation and recreation of the classic game,
Elite. Oolite is a space trading and combat game, with the dangers of pirates,
police, bounty hunters, and various other hazards. The player's role is open
ended: there is no set goal other than perhaps to reach the Elite combat
rating, but the players may choose their own path through the universe.
The game is expandable, and numerous expansion packs already exist. New ships
and new missions are available for download.
You can find a first-flight tutorial here:
http://oolite.aegidian.org/tutorial/
WWW: http://oolite-linux.berlios.de/
PR: ports/86997
Submitted by: Andriy Gapon <avg@icyb.net.ua>
Notes
Notes:
svn path=/head/; revision=149256
Diffstat (limited to 'games/oolite/Makefile')
-rw-r--r-- | games/oolite/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/games/oolite/Makefile b/games/oolite/Makefile new file mode 100644 index 000000000000..51d10bdc02b0 --- /dev/null +++ b/games/oolite/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: oolite +# Date created: 04 Oct 2005 +# Whom: Andriy Gapon <avg@icyb.net.ua> +# +# $FreeBSD$ +# + +PORTNAME= oolite +PORTVERSION= 1.55 +CATEGORIES= games +MASTER_SITES= http://download.berlios.de/oolite-linux/ \ + ftp://ftp.alioth.net/oolite/ +DISTFILES= ${PORTNAME}-src-${PORTVERSION}-1${EXTRACT_SUFX} ${PORTNAME}-data-${PORTVERSION}-1${EXTRACT_SUFX} + +MAINTAINER= avg@icyb.net.ua +COMMENT= Trade and combat space simulator, clone of Elite + +WRKSRC= ${WRKDIR}/${PORTNAME}-src +PREFIX= ${LOCALBASE}/GNUstep +NO_MTREE= yes +USE_REINPLACE= yes +USE_SDL= mixer image gfx +USE_GMAKE= yes +USE_GNUSTEP= yes +USE_GNUSTEP_BACK= yes +USE_GNUSTEP_GUI= yes +USE_GNUSTEP_BUILD= yes +USE_GNUSTEP_INSTALL= yes +MAKEFILE= GNUmakefile +SUB_FILES= pkg-message +PKGMESSAGE= ${WRKDIR}/pkg-message + +post-extract: + ${MV} ${WRKDIR}/${PORTNAME}-data/Resources ${WRKSRC} + +post-patch: + ${REINPLACE_CMD} -e "s#sdl-config#${SDL_CONFIG}#g" ${WRKSRC}/${MAKEFILE} + +post-install: + ${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |