1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/games/neverball/Makefile
Adam Weinberger f9d4cf04e0 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>
2003-10-28 03:02:53 +00:00

41 lines
964 B
Makefile

# 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>