diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-07-16 16:00:15 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-07-16 16:00:15 +0000 |
commit | 2fb9ed92399f04216061486c94937cc4404b57e8 (patch) | |
tree | a98024fada67e283b9cbd800e110a7b9b892fa38 /games/race/Makefile | |
parent | f13c8616fc711c85f06477d3e793e18ea4ae752b (diff) | |
download | FreeBSD-ports-2fb9ed92399f04216061486c94937cc4404b57e8.zip FreeBSD-ports-2fb9ed92399f04216061486c94937cc4404b57e8.tar.gz |
add race 0.5
OpenGL Racing Game
Diffstat (limited to 'games/race/Makefile')
-rw-r--r-- | games/race/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/games/race/Makefile b/games/race/Makefile new file mode 100644 index 0000000..f1fca18 --- /dev/null +++ b/games/race/Makefile @@ -0,0 +1,39 @@ +# ex:ts=8 +# Ports collection makefile for: race +# Date created: Jul 16, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= race +PORTVERSION= 0.5 +CATEGORIES= games +MASTER_SITES= ftp://users.freebsd.org.uk/pub/foobar2k/ + +MAINTAINER= ports@FreeBSD.org + +LIB_DEPENDS= SDL_mixer:${PORTSDIR}/audio/sdl_mixer \ + SDL_image:${PORTSDIR}/graphics/sdl_image + +USE_BZIP2= yes +USE_REINPLACE= yes +USE_MESA= yes +SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config +CFLAGS+= "-I${X11BASE}/include" +MAKE_ENV= CC="${CC} ${CFLAGS}" LDFLAGS="-L${X11BASE}/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> |