aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/xd3d/Makefile
blob: e731e805cbe47170ee8792170ed86ce6ff909412 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# New ports collection makefile for:    xd3d
# Date created:     Tue Sept. 16 2003
# Whom:         thierry@pompo.net
#
# $FreeBSD$
#

PORTNAME=   xd3d
PORTVERSION=    8.3.1
PORTREVISION=   6
CATEGORIES= graphics math
MASTER_SITES=   http://www.cmap.polytechnique.fr/~jouve/xd3d/

MAINTAINER= thierry@FreeBSD.org
COMMENT=    A simple scientific visualization tool

#--------------------------------------------------------------------------
# You may define these options:
#
# - WITHOUT_IMAGEMAGICK :   if you don't need to export bitmap images
#               in gif or png format;
#
# - WITHOUT_GIFSICLE    :   if you don't need to generate animated gifs;
#
# - MEMORY_XD3D     :   Max memory for xd3d (MBytes, 64 by default)
#
# - F77         :   don't use the default fortran compiler;
# - FFLAGS      :   fortran compiler's flags (-O by default).
#--------------------------------------------------------------------------

.if !defined(WITHOUT_IMAGEMAGICK)
RUN_DEPENDS+=   convert:${PORTSDIR}/graphics/ImageMagick
.endif
.if !defined(WITHOUT_GIFSICLE)
RUN_DEPENDS+=   gifsicle:${PORTSDIR}/graphics/gifsicle
.endif

MASTER_SITES_BACKUP=    http://pompo.net/ports/

REINPLACE_ARGS= -i ""
FETCH_CMD=  /usr/bin/fetch
FETCH_BEFORE_ARGS=  -R -o ${DISTDIR}/${DISTFILES}

USE_XORG=   x11 xpm
USE_FORTRAN=    yes
FFLAGS+=    -O
MEMORY_XD3D?=   64

.if defined(LANG) && ${LANG:Mfr*} != ""
XD3D_LANG=  FRANCAIS
.else
XD3D_LANG=  ENGLISH
.endif

DOCS=       BUGS CHANGELOG FAQ FORMATS INSTALL README Manuals/formats.txt   \
        Manuals/xd3d_doc.pdf Manuals/xgraphic_doc.pdf

.include <bsd.port.pre.mk>

do-fetch:
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
    ${FETCH_CMD} ${FETCH_BEFORE_ARGS}           \
        ${MASTER_SITES}download.php?file=${DISTFILES}   \
    || ${FETCH_CMD} ${FETCH_BEFORE_ARGS} ${MASTER_SITES_BACKUP}${DISTFILES}
.endif

post-patch:
    @${CP} ${WRKSRC}/RULES.freeBSD ${WRKSRC}/RULES
    @${REINPLACE_CMD} -e "s|%%WRKSRC%%|${WRKSRC}|"      \
        -e "s|%%PREFIX%%|${PREFIX}|"            \
        -e "s|%%X11BASE%%|${LOCALBASE}|"            \
        -e "s|%%LANG%%|${XD3D_LANG}|"           \
        -e "s|%%MEMORY_XD3D%%|${MEMORY_XD3D}|"      \
        -e "s|%%F77%%|${F77}|"              \
        -e "s|%%FFLAGS%%|${FFLAGS}|"            \
        -e "s|%%CC%%|${CC}|"                \
        -e "s|%%CFLAGS%%|${CFLAGS}|"            \
        ${WRKSRC}/RULES

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for FILE in ${DOCS}
    @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
.endfor
    @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
    @${MKDIR} ${EXAMPLESDIR}
    @${CP} -Rp ${WRKSRC}/Examples/* ${EXAMPLESDIR}
    @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}
    @${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
.endif

.include <bsd.port.post.mk>