aboutsummaryrefslogtreecommitdiffstats
path: root/games/sdlsand/Makefile
blob: d49ba609f88091806149d1645a5a061770d729b6 (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
# New ports collection makefile for:    sdlsand
# Date created:     22 Apr 2006
# Whom:         Dmitry Marakasov <amdmi3@amdmi3.ru>
#
# $FreeBSD$
#

PORTNAME=   sdlsand
PORTVERSION=    20061017
PORTREVISION=   4
CATEGORIES= games
MASTER_SITES=   SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

MAINTAINER= amdmi3@FreeBSD.org
COMMENT=    Simulation of falling sand and other materials

USE_ZIP=    yes
USE_SDL=    sdl

WRKSRC=     ${WRKDIR}/SDL\ Sand/SDL\ Sand

PLIST_FILES=    bin/${PORTNAME}
PORTDOCS=   readme.txt

post-patch:
    @${REINPLACE_CMD} -e '/crtdbg/ d' ${WRKSRC}/CmdLine.cpp

do-build:
    cd ${WRKSRC} && ${CXX} -o ${PORTNAME} ${CXXFLAGS} \
        `${SDL_CONFIG} --cflags --libs` main.cpp CmdLine.cpp

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

.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}
.endif

.include <bsd.port.mk>