aboutsummaryrefslogtreecommitdiffstats
path: root/science/cdo/Makefile
blob: e7884ad43ee4827011a383bcdcf720fb4ad122c7 (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
94
95
96
97
98
99
100
# ex:ts=8
# New ports collection makefile for:    CDO
# Date created:         29 May 2006
# Whom:             Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
#
# $FreeBSD$
#

PORTNAME=       cdo
PORTVERSION=        1.4.5.1
CATEGORIES=     science
MASTER_SITES=       https://code.zmaw.de/attachments/download/307/ \
            LOCAL/sunpoet

MAINTAINER=     sunpoet@FreeBSD.org
COMMENT=        Climate Data Operators

GNU_CONFIGURE=      yes

CONFIGURE_ARGS=     --program-transform-name=""
CONFIGURE_ENV=      CC="${CC}" \
            CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
            LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}"

PLIST_FILES=        bin/cdo

NETCDF_VER?=        4
HDF5_VER?=      18

OPTIONS=        HDF5    "HDF5 support"      on \
            JASPER  "Japser support"    off \
            NETCDF  "NetCDF support"    on \
            PROJ    "PROJ support"      on \
            SZIP    "SZIP support"      on

.include <bsd.port.pre.mk>

.if (${OSVERSION} > 700000) || (${ARCH} != "sparc64")
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -DPTHREAD_MUTEXATTR_CONDATTR"
.endif

.if (!defined(WITHOUT_NETCDF) && !defined(WITHOUT_HDF5) && (${NETCDF_VER} == 4) && (${HDF5_VER} == 16))
IGNORE=netCDF 4 requires HDF5 1.8.
.endif

.if !defined(WITHOUT_NETCDF) && (${NETCDF_VER} == 4)
HDF5_VER=       18
WITH_HDF5=      yes
.endif

.if !defined(WITHOUT_HDF5)
CONFIGURE_ARGS+=    --with-hdf5=${LOCALBASE} --with-zlib=/usr
WITH_SZIP=      yes
.if (${HDF5_VER} == 18)
LIB_DEPENDS+=       hdf5.6:${PORTSDIR}/science/hdf5-18
.else
LIB_DEPENDS+=       hdf5.0:${PORTSDIR}/science/hdf5
.endif
.endif

.if defined(WITH_JASPER)
CONFIGURE_ARGS+=    --with-jasper=${LOCALBASE}
LIB_DEPENDS+=       jasper:${PORTSDIR}/graphics/jasper
PLIST_SUB+=     JPEG2000=""
.else
.endif

.if !defined(WITHOUT_NETCDF)
CONFIGURE_ARGS+=    --with-netcdf=${LOCALBASE}
EXTRA_PATCHES+=     ${FILESDIR}/extra-patch-src-Makefile.in
.if (${NETCDF_VER} == 4)
LIB_DEPENDS+=       netcdf.6:${PORTSDIR}/science/netcdf4
.else
LIB_DEPENDS+=       netcdf.4:${PORTSDIR}/science/netcdf
.endif
PLIST_FILES+=       bin/cdotest
.endif

.if !defined(WITHOUT_PROJ)
CONFIGURE_ARGS+=    --with-proj=${LOCALBASE}
LIB_DEPENDS+=       proj.6:${PORTSDIR}/graphics/proj
.endif

.if !defined(WITHOUT_SZIP)
CONFIGURE_ARGS+=    --with-szlib=${LOCALBASE}
LIB_DEPENDS+=       sz.2:${PORTSDIR}/science/szip
.endif

post-build:
.if !defined(WITHOUT_NETCDF)
    @cd "${WRKSRC}/src" && ${SETENV} CDO_PATH="${WRKSRC}/src/cdo" "${WRKSRC}/src/cdotest"
.endif

post-install:
    @${CAT} ${PKGMESSAGE}

regression-test:
    @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check

.include <bsd.port.post.mk>