aboutsummaryrefslogtreecommitdiff
path: root/games/trimines/Makefile
blob: ceeff20321d81973b4c291917b1f1d102a676e01 (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
# New ports collection makefile for:	trimines
# Date created:		02 May 2006
# Whom:			Dmitry Marakasov <amdmi3@mail.ru>
#
# $FreeBSD$
#

PORTNAME=	trimines
PORTVERSION=	1.3.0
CATEGORIES=	games
MASTER_SITES=	http://www.freewebs.com/trimines/

MAINTAINER=	amdmi3@mail.ru
COMMENT=	Mine sweeper game that uses triangles instead of squares

USE_SDL=	sdl
USE_GCC=	3.4+
USE_X_PREFIX=	yes

post-patch:
	@${REINPLACE_CMD} -e 's|data/|${DATADIR}/|' ${WRKSRC}/src/gfx.c

do-build:
	cd ${WRKSRC} && ${CC} ${CFLAGS} src/main.c -o ./trimines \
		`${SDL_CONFIG} --cflags --libs`

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/trimines ${PREFIX}/bin
.for dir in counter menu misc triangles
	${MKDIR} ${DATADIR}/${dir}
	${INSTALL_DATA} ${WRKSRC}/data/${dir}/* ${DATADIR}/${dir}
.endfor

.include <bsd.port.mk>