aboutsummaryrefslogtreecommitdiff
path: root/databases/postgis21/Makefile
blob: 8eb8bee2cb355c5804e82ae4f755e3bb7677f3d1 (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
# $FreeBSD$

PORTNAME=	postgis
PORTVERSION=	2.1.0
PORTREVISION=	2
CATEGORIES=	databases geography
MASTER_SITES=	http://download.osgeo.org/postgis/source/

MAINTAINER=	trevor@bitba.se
COMMENT=	Geographic objects support for PostgreSQL databases

LIB_DEPENDS=	libproj.so:${PORTSDIR}/graphics/proj \
		libgeos.so:${PORTSDIR}/graphics/geos \
		libjson.so:${PORTSDIR}/devel/json-c
RUN_DEPENDS=	postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server

CONFLICTS=	postgis-1.* postgis-2.0.*
LATEST_LINK=	postgis21

USE_GNOME=	libxml2
USE_PGSQL=	yes
USES=		gmake iconv perl5 pkgconfig
USE_LDCONFIG=	yes
GNU_CONFIGURE=	yes
USE_PERL5=	build

OPTIONS_DEFINE=		LOADERGUI RASTER TOPOLOGY
OPTIONS_DEFAULT=	TOPOLOGY

PLIST_SUB+=	PORTVERSION=${PORTVERSION}

LOADERGUI_DESC=	Enable shp2pgsql-gui
RASTER_DESC=	Raster support
TOPOLOGY_DESC=	Topology support

NO_STAGE=	yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MLOADERGUI}
USE_GNOME+=		gtk20
CONFIGURE_ARGS+=	--with-gui
PLIST_SUB+=		LOADERGUI=""
.else
CONFIGURE_ARGS+=	--without-gui
PLIST_SUB+=		LOADERGUI="@comment "
.endif

.if ${PORT_OPTIONS:MRASTER}
.if ${OSVERSION} < 900033
BROKEN=			Raster suppport is broken on FreeBSD < 9.x
.endif
LIB_DEPENDS+=		libgdal.so:${PORTSDIR}/graphics/gdal
CONFIGURE_ARGS+=	--with-raster --with-gdalconfig=${LOCALBASE}/bin/gdal-config
PLIST_SUB+=		RASTER=""
.else
CONFIGURE_ARGS+=	--without-raster
PLIST_SUB+=		RASTER="@comment "
.endif

.if ${PORT_OPTIONS:MTOPOLOGY}
CONFIGURE_ARGS+=	--with-topology
PLIST_SUB+=		TOPOLOGY=""
.else
CONFIGURE_ARGS+=	--without-topology
PLIST_SUB+=		TOPOLOGY="@comment "
.endif

CFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib

post-patch:
	@${GREP} -lR 'bin/bash' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e "s|/bin/bash|/bin/sh|"

pre-configure:
	@${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL

post-install: .SILENT
	${MKDIR} ${DATADIR}/tiger_2011
	(cd ${WRKSRC}/extras/tiger_geocoder/tiger_2011/ && ${COPYTREE_SHARE} \* ${DATADIR}/tiger_2011/ "! ( -name *\.orig -o -name *\.bak )" )
	${MKDIR} ${DATADIR}/utils
	(cd ${WRKSRC}/utils/ && ${COPYTREE_SHARE} \* ${DATADIR}/utils/ "! ( -name *\.orig -o -name *\.bak )" )

.include <bsd.port.mk>