aboutsummaryrefslogtreecommitdiffstats
path: root/games/abe/Makefile
blob: 60f31d958fd8ebea6a6be07b8917b77f09a254f2 (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
# New ports collection makefile for:    games/abe
# Date created:         8 Aug 2005
# Whom:             Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#

PORTNAME=   abe
PORTVERSION=    1.1
PORTREVISION=   3
CATEGORIES= games
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER= alepulver@FreeBSD.org
COMMENT=    Abe's Amazing Adventure

USE_GMAKE=  yes
USE_SDL=    mixer sdl

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-data-dir=${DATADIR}

MAKE_ARGS=  ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
        AUTOHEADER="${TRUE}"

OPTIONS=    GOD_MODE "Enable God Mode (toggle with 'g')" off \
        OPTIMIZED_CFLAGS "Enable compilation optimizations" on

post-install:
    @${MKDIR} ${DATADIR}
.for d in images maps sounds
    @${CP} -R ${WRKSRC}/${d} ${DATADIR}
.endfor

.include <bsd.port.pre.mk>

.if defined(WITH_GOD_MODE) || defined(WITHOUT_OPTIMIZED_CFLAGS)
post-patch:
.   if defined(WITH_GOD_MODE)
    @${REINPLACE_CMD} -e 's|\(#define GOD_MODE\) 0|\1 1|' \
        ${WRKSRC}/src/Game.h
.   endif
.   if defined(WITHOUT_OPTIMIZED_CFLAGS)
    @${REINPLACE_CMD} -e 's|-O2||g ; \
        s|-fomit-frame-pointer||g ; \
        s|-ffast-math||g ; \
        s|-fexpensive-optimizations||g' \
        ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
.   endif
.endif

.include <bsd.port.post.mk>