From f9d4cf04e012190ea69438b14da054c5dfbff72e Mon Sep 17 00:00:00 2001 From: Adam Weinberger Date: Tue, 28 Oct 2003 03:02:53 +0000 Subject: Add neverball. Tilt the floor to roll a ball through an obstacle course within the given time. If the ball falls or time expires, a ball is lost. Collect 100 coins to save your progress and earn an extra ball. Red coins are worth 5. Blue coins are worth 10. Neverball runs under Linux, Win2K/XP, and hopefully anywhere else SDL is supported. Hardware accellerated OpenGL support with multitexture (OpenGL 1.2.1 or greater) is required. Neverball has been tested on Intel machines as slow as 1GHz with GeForce2. Minimum system requirements may be lower. PR: ports/58603 Submitted by: Jeremy Messenger --- games/neverball/Makefile | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 games/neverball/Makefile (limited to 'games/neverball/Makefile') diff --git a/games/neverball/Makefile b/games/neverball/Makefile new file mode 100644 index 000000000000..0d262bbf1547 --- /dev/null +++ b/games/neverball/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: neverball +# Date created: 26 October 2003 +# Whom: Mezz +# +# $FreeBSD$ +# + +PORTNAME= neverball +PORTVERSION= 0.25.11 +CATEGORIES= games +MASTER_SITES= http://icculus.org/neverball/ + +MAINTAINER= mezz7@cox.net +COMMENT= Tilt the floor to guide a ball through an obstacle course + +LIB_DEPENDS= SDL_ttf.3:${PORTSDIR}/graphics/sdl_ttf \ + SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer \ + SDL_image.10:${PORTSDIR}/graphics/sdl_image + +USE_BZIP2= yes +USE_SDL= yes +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_REINPLACE= yes + +DIRS= back bgm map mtrl png shot snd sol ttf + +post-patch: + @${REINPLACE_CMD} -e 's|./data|${DATADIR}/data|g' \ + ${WRKSRC}/config.h + +do-install: +.for ii in ${DIRS} + @${MKDIR} ${DATADIR}/data/${ii} + @${INSTALL_DATA} ${WRKSRC}/data/${ii}/* ${DATADIR}/data/${ii}/ +.endfor + @${INSTALL_DATA} ${WRKSRC}/data/*.txt ${DATADIR}/data/ + @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ + +.include -- cgit v1.2.3