aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/ale/Makefile
blob: e26646e66b67198198c1d2610af85398602ec5ec (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
# ex:ts=8
# Ports collection Makefile for:    ale
# Date created:         Dec 17, 2003
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   ale
PORTVERSION=    0.7.2
PORTREVISION=   1
CATEGORIES= graphics
MASTER_SITES=   http://auricle.dyndns.org/ALE/download/

MAINTAINER= ports@FreeBSD.org
COMMENT=    Anti-Lamenessing Engine

USE_GCC=    3.4
USE_REINPLACE=  yes
USE_GMAKE=  yes
MAKE_ARGS=  CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"

PLIST_FILES=    bin/ale

OPTIONS=    DOUBLE "64bit Data Precision Support" off \
        FFTW3 "FFTW3 Support" on \
        IMAGEMAGICK "ImageMagick Support" on

.include <bsd.port.pre.mk>

.if defined(WITH_DOUBLE)
MAKE_ARGS+= COLORS=DOUBLE COORDINATES=DOUBLE
.endif

.if !defined(WITHOUT_FFTW3)
LIB_DEPENDS+=   fftw3.3:${PORTSDIR}/math/fftw3
MAKE_ARGS+= FFTW=1
.endif

.if !defined(WITHOUT_IMAGEMAGICK)
LIB_DEPENDS+=   Magick.7:${PORTSDIR}/graphics/ImageMagick
MAKE_ARGS+= IMAGEMAGICK=1
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' ${WRKSRC}/d2.h
.if ${OSVERSION} < 502114
.for file in d2/image_rw.h d2/ppm.h d3/scene.cc
    @${REINPLACE_CMD} -e 's|round|rint|g' ${WRKSRC}/${file}
.endfor
.endif

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

.include <bsd.port.post.mk>