aboutsummaryrefslogtreecommitdiffstats
path: root/games/exmars/Makefile
blob: 3d00eae2a3985e0a48ac96082790d07828717309 (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
# New ports collection makefile for:    exmars
# Date created:             16 Jul 2005
# Whom:                 Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#

PORTNAME=   exmars
PORTVERSION=    0.01
PORTREVISION=   1
CATEGORIES= games
MASTER_SITES=   ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= pav

MAINTAINER= alepulver@FreeBSD.org
COMMENT=    Memory Array Redcode Simulator, just like exhaust and pMARS

REINPLACE_ARGS= -i ''
ALL_TARGET= ${PORTNAME}

OPTIONS=    OPTIMIZED_CFLAGS "Enable compilaton optimizations (>= 5.X)" on

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

# Data.
    ${MKDIR} ${DATADIR}
    ${CP} -R ${WRKSRC}/warriors ${DATADIR}
    ${INSTALL_SCRIPT} ${WRKSRC}/bench.sh ${DATADIR}

.include <bsd.port.pre.mk>

# Adjust optimization flags for all architectures.
.if ${ARCH} != "i386"
BADCFLAGS+= -malign-double
.endif
.if ${ARCH} != "amd64" && ${ARCH} != "i386"
BADCFLAGS+= -maccumulate-outgoing-args \
        -minline-all-stringops \
        -mno-align-stringops
.endif
.if ${ARCH} == "alpha"
BADCFLAGS+= -ffast-math \
        -fprefetch-loop-arrays
.endif

post-patch:
# Fix bench.sh.
    @${REINPLACE_CMD} -e 's|pmars|pmars-server| ; \
        s|\./exmars|exmars|' \
        ${WRKSRC}/bench.sh

# Fix Makefile.
    @${REINPLACE_CMD} -e 's|\($${OPT}\)|${CFLAGS} \1|' ${WRKSRC}/${MAKEFILE}

# Enable/disable compilation optimizations.
.if defined(WITHOUT_OPTIMIZED_CFLAGS) || ${OSVERSION} < 500035
    @${REINPLACE_CMD} -e 's|$${OPT}||' ${WRKSRC}/${MAKEFILE}
.endif

# Adjust optimization flags for all architectures.
.for f in ${BADCFLAGS}
    @${REINPLACE_CMD} -e 's|${f}||g' ${WRKSRC}/${MAKEFILE}
.endfor

.include <bsd.port.post.mk>