freebsd-ports/games/race/Makefile
Florent Thoumie 340b57f8be - Update X.org ports to 7.4+ (few ports are more recent than the katamari).
- Bump PORTREVISION for all ports depending on libglut since the shlib
version number went from 4 to 3.
- Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't
installed anymore.
- Couple of ports fixes (mostly missing xorg components added to USE_XORG).
2009-01-23 16:28:36 +00:00

38 lines
898 B
Makefile

# ex:ts=8
# Ports collection makefile for: race
# Date created: Jul 16, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= race
PORTVERSION= 0.5
PORTREVISION= 6
CATEGORIES= games
MASTER_SITES= ftp://users.freebsd.org.uk/pub/foobar2k/
MAINTAINER= ports@FreeBSD.org
COMMENT= OpenGL Racing Game
USE_SDL= mixer image sdl
USE_BZIP2= yes
USE_GL= glut
CFLAGS+= "-I${LOCALBASE}/include"
CC+= ${CFLAGS}
MAKE_ENV= LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
post-patch:
@${REINPLACE_CMD} -e "s|^CC|#CC|g" \
-e "s|sdl-config|${SDL_CONFIG}|g" ${WRKSRC}/Makefile
.for file in game.c main.c menu.c terrain.c textures.c
@${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|g" ${WRKSRC}/src/${file}
.endfor
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/race ${PREFIX}/bin
@${MKDIR} ${DATADIR}/data
${INSTALL_DATA} ${WRKSRC}/config ${DATADIR}
${CP} -R ${WRKSRC}/data/* ${DATADIR}/data
.include <bsd.port.mk>