aboutsummaryrefslogtreecommitdiffstats
path: root/games/vdrift/Makefile
blob: c8c5ce07e5fd9a047b7ca1f67a47604d1fb75ca3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# New ports collection makefile for:    vdrift
# Date created:     2005-11-09
# Whom:         Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#

PORTNAME=   vdrift
PORTVERSION=    20060221
PORTREVISION=   2
CATEGORIES= games
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME=   ${PORTNAME}-2006-02-21-src
DIST_SUBDIR=    ${PORTNAME}

MAINTAINER= acardenas@bsd.org.pe
COMMENT=    Open source driving simulation

BUILD_DEPENDS=  scons:${PORTSDIR}/devel/scons
LIB_DEPENDS=    openal.0:${PORTSDIR}/audio/openal \
        alut.1:${PORTSDIR}/audio/freealut
RUN_DEPENDS=    ${X11BASE}/share/${PORTNAME}/settings/VDrift.config:${PORTSDIR}/games/vdrift-data

USE_BZIP2=  yes
USE_X_PREFIX=   yes
USE_GL=     yes
USE_SDL=    sdl image net

MAKE_ENV=   CC="${CC}" CXX="${CXX}"
SCONS_ARGS= prefix=${DATADIR} bin=${PREFIX}/bin

SUB_FILES=  pkg-message

OPTIONS=    DEBUG   "Additional debug information"  off

.include <bsd.port.pre.mk>

.if defined(WITH_DEBUG)
SCONS_ARGS+=    release=0
.else
SCONS_ARGS+=    release=1
.endif

.if ${OSVERSION} < 500000
BROKEN=     does not compile
.endif

.if ${ARCH} == "sparc64"
BROKEN=     Does not compile on sparc64
.endif

post-patch:
    @${FIND} ${WRKSRC}/src/* -type f -exec ${REINPLACE_CMD} -e 's|SDL/|SDL11/|g' "{}" \;
    @${FIND} ${WRKSRC}/include/* -type f -exec ${REINPLACE_CMD} -e 's|SDL/|SDL11/|g' "{}" \;
    @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/SConstruct
    @${REINPLACE_CMD} -e 's|sdl-config|sdl11-config|g' ${WRKSRC}/src/SConscript
    @${REINPLACE_CMD} -e "s|'openal'|'openal','alut'|g" ${WRKSRC}/SConstruct

do-build:
    @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} scons ${SCONS_ARGS}

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/build/vdrift ${PREFIX}/bin

.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
.for FILE in docs/AUTHORS docs/README
    ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
.endfor
.endif

post-install:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>