1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/games/race/Makefile
Stanislav Sedov 0d2725682b - Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration
   binary)
 - Update graphics/sdl_ttf to version 2.0.8
 - Update graphics/sdl_image to version 1.2.5
 - Update audio/sdl_mixer to version 1.2.7
 - Update net/sdl_net to version 1.2.6
 - Update Mk/bsd.sdl.mk accordingly
 - Fix dependent ports to fit the new directory structure and avoid several
   API breakages
 - Bump up portrevisions for all dependent ports to allow them to be upgraded
   by portupgrade/portmaster etc tools

Approved by:    kris (portmgr), sem (mentor)
2006-09-20 11:21:59 +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= 3
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= yes
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>