summaryrefslogtreecommitdiff
path: root/games/neverball/Makefile
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2003-10-28 03:02:53 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2003-10-28 03:02:53 +0000
commitf9d4cf04e012190ea69438b14da054c5dfbff72e (patch)
tree7b82cdb2f010f73fa84458799fcf2000495c4a8e /games/neverball/Makefile
parentBROKEN: Does not compile (diff)
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 <mezz7@cox.net>
Notes
Notes: svn path=/head/; revision=92382
Diffstat (limited to 'games/neverball/Makefile')
-rw-r--r--games/neverball/Makefile40
1 files changed, 40 insertions, 0 deletions
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 <mezz7@cox.net>
+#
+# $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 <bsd.port.mk>