aboutsummaryrefslogtreecommitdiff
path: root/graphics/gmt/Makefile
blob: ec51ee43876b0b713ff62c5ac94e2076fc29cb83 (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
# New ports collection makefile for:	gmt
# Date created:		10 May 2001
# Whom:			sec@42.org
#
# $FreeBSD$
#

PORTNAME=	gmt
PORTVERSION=	4.5.8
PORTREVISION=	3
CATEGORIES=	graphics
MASTER_SITES=	ftp://falcon.grdl.noaa.gov/pub/${PORTNAME}/	\
		ftp://ftp.soest.hawaii.edu/${PORTNAME}/		\
		ftp://ftp.geologi.uio.no/pub/${PORTNAME}/	\
		ftp://ibis.grdl.noaa.gov/pub/${PORTNAME}/	\
		ftp://gd.tuwien.ac.at/pub/${PORTNAME}/		\
		ftp://ftp.iag.usp.br/pub/${PORTNAME}/		\
		ftp://ftp.scc.u-tokai.ac.jp/pub/${PORTNAME}/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	The Generic Mapping Tools data processing and display software package

WRKSRC=		${WRKDIR}/${PORTNAME:U}${DISTVERSION}
USE_BZIP2=	yes
USE_AUTOTOOLS=	autoconf
GNU_CONFIGURE=	yes
CONFIGURE_ARGS+=--datadir=${DATADIR}
USE_GMAKE=	yes
USE_XORG=	x11 xaw xmu xt

PORTDOCS=	*
PORTDATA=	*

OPTIONS_DEFINE=	SHARED EPS DEBUG IMPERIAL GDAL NETCDF OCTAVE
OPTIONS_DEFAULT=	SHARED GDAL NETCDF
SHARED_DESC=	Build shared (dynamic) libraries
EPS_DESC=	defaults .eps, otherwise .ps
IMPERIAL_DESC=	Choose Imperial (inch) units over metric (cm)
GDAL_DESC=	Compile in experimental GDAL support
NETCDF_DESC=	With netCDF (7) support
OCTAVE_DESC=	With OCTAVE support

.include "Makefile.man"
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MNETCDF}
LIB_DEPENDS+=		netcdf:${PORTSDIR}/science/netcdf4
CONFIGURE_ARGS+=	--enable-netcdf
.endif

.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+=	--enable-debug --enable-devdebug
.endif

.if ${PORT_OPTIONS:MDEVDEBUG}
CONFIGURE_ARGS+=	--enable-devdebug
.endif

.if ${PORT_OPTIONS:MSHARED}
USE_LDCONFIG=		yes
CONFIGURE_ARGS+=	--enable-shared
.endif

.if ${PORT_OPTIONS:MIMPERIAL}
CONFIGURE_ARGS+=	--enable-US
.endif

.if ${PORT_OPTIONS:MEPS}
CONFIGURE_ARGS+=	--enable-eps
.endif

.if ${PORT_OPTIONS:MGDAL}
LIB_DEPENDS+=		gdal.17:${PORTSDIR}/graphics/gdal
CONFIGURE_ARGS+=	--enable-gdal
.endif

.if ${PORT_OPTIONS:MOCTAVE}
RUN_DEPENDS+=		octave:${PORTSDIR}/math/octave
CONFIGURE_ARGS+=	--enable-octave
CONFIGURE_ARGS+=	--enable-mex
.else
CONFIGURE_ARGS+=	--disable-mex
.endif

INSTALL_TARGET=		install-gmt install-data install-man install-doc

.if ${ARCH} == "amd64" || ${ARCH} == "ia64" || \
    ${ARCH} == "alpha" || ${ARCH} == "sparc64"
CONFIGURE_ARGS+=	--enable-64
.else
CONFIGURE_ARGS+=	--disable-64
.endif

.include <bsd.port.mk>