aboutsummaryrefslogtreecommitdiff
path: root/games/atris/Makefile
blob: 6aad36b4fdf6cdcd22b751689c4a1db528d9e987 (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
# Created by: Alejandro Pulver <alejandro@varnet.biz>

PORTNAME=	atris
PORTVERSION=	1.0.7
PORTREVISION=	7
CATEGORIES=	games
MASTER_SITES=	http://www.cs.virginia.edu/~weimer/atris/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Atris: Alizarin Tetris

LICENSE=	GPLv2
LICENSE_FILE=	${WRKSRC}/COPYING

USES=		gmake sdl
USE_SDL=	sdl ttf

GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--program-transform-name=""

MAKE_ARGS=	ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
		AUTOHEADER="${TRUE}"
# Upstream is dead. Don't expect a proper fix.
CFLAGS+=	-fcommon

OPTIONS_DEFINE=	DOCS

post-patch:
# Fix path to ${DATADIR}
	${REINPLACE_CMD} -e 's|\(GAME_INSTALLDIR=\).*|\1"${DATADIR}"|' \
			${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
# Fix install target to use gmake
	${REINPLACE_CMD} -e '/^install:/,/^$$/s/make/$$(MAKE)/' \
		-e '/install_gamedata/ s|target=|&$$(DESTDIR)|' \
		${WRKSRC}/Makefile.in

# Fix SDL include statement
.for f in *.c *.h
	@${FIND} ${WRKSRC} -type f -name "${f}" -print0 | \
		${XARGS} -0 ${REINPLACE_CMD} -e \
		's|\(#include.*\)SDL/\(SDL.*\)|\1\2|'
.endfor

post-install:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	@${RM} ${WRKSRC}/Docs/Makefile*
	${CP} -R ${WRKSRC}/Docs/* ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>