View | Details | Raw Unified | Return to bug 236556
Collapse All | Expand All

(-)databases/postgis23/Makefile (-69 / +28 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	postgis
4
PORTNAME=	postgis
5
PORTVERSION=	2.3.7
5
PORTVERSION=	2.3.9
6
PORTREVISION=	2
7
CATEGORIES=	databases geography
6
CATEGORIES=	databases geography
8
MASTER_SITES=	https://download.osgeo.org/postgis/source/
7
MASTER_SITES=	https://download.osgeo.org/postgis/source/
9
PKGNAMESUFFIX=	23
8
PKGNAMESUFFIX=	23
Lines 16-109 LICENSE_FILE= ${WRKSRC}/COPYING Link Here
16
15
17
LIB_DEPENDS=	libproj.so:graphics/proj \
16
LIB_DEPENDS=	libproj.so:graphics/proj \
18
		libgeos.so:graphics/geos \
17
		libgeos.so:graphics/geos \
19
		libjson-c.so:devel/json-c
18
		libjson-c.so:devel/json-c \
19
		libgdal.so:graphics/gdal
20
20
21
CONFLICTS=	postgis20  postgis21 postgis22 postgis24 postgis
21
USES=		alias gettext gmake gnome iconv:wchar_t libtool:keepla \
22
		localbase perl5 pkgconfig pgsql:9.2-10 shebangfix
23
USE_GNOME=	libxml2
24
USE_LDCONFIG=	yes
25
USE_PERL5=	build
22
26
23
USES=		compiler:c++11-lang gettext gmake iconv:wchar_t libtool:keepla \
24
		perl5 pgsql pkgconfig shebangfix
25
LLD_UNSAFE=	yes
26
GNU_CONFIGURE=	yes
27
GNU_CONFIGURE=	yes
27
CONFIGURE_ARGS=	${ICONV_CONFIGURE_BASE}
28
CONFIGURE_ARGS=	${ICONV_CONFIGURE_BASE} NUMERICFLAGS=${PORTVERSION}
28
SHEBANG_FILES=	extensions/address_standardizer/*.pl raster/test/regress/*.pl \
29
SHEBANG_FILES=	extensions/address_standardizer/*.pl raster/test/regress/*.pl \
29
		raster/test/regress/loader/*.pl regress/run_test.pl \
30
		raster/test/regress/loader/*.pl regress/run_test.pl \
30
		utils/postgis_restore.pl.in utils/*.pl
31
		utils/postgis_restore.pl.in utils/*.pl
31
USE_GNOME=	libxml2
32
WANT_PGSQL=	server
32
USE_LDCONFIG=	yes
33
USE_PERL5=	build
34
WANT_PGSQL=	lib server
35
36
OPTIONS_DEFINE=		LOADERGUI RASTER TOPOLOGY SFCGAL ADDRSTD
37
OPTIONS_DEFAULT=	TOPOLOGY ADDRSTD SFCGAL
38
NO_OPTIONS_SORT=	yes
39
OPTIONS_SUB=		yes
40
33
41
PLIST_SUB+=	PORTVERSION=${PORTVERSION}
34
OPTIONS_DEFINE=	ADDRSTD LOADERGUI SFCGAL TOPOLOGY
35
OPTIONS_DEFAULT=ADDRSTD SFCGAL TOPOLOGY
36
OPTIONS_SUB=	yes
42
37
43
LOADERGUI_DESC=	Enable shp2pgsql-gui
38
LOADERGUI_DESC=	Enable shp2pgsql-gui
44
RASTER_DESC=	Raster support
45
TOPOLOGY_DESC=	Topology support
39
TOPOLOGY_DESC=	Topology support
46
SFCGAL_DESC=	Enable sfcgal
40
SFCGAL_DESC=	Enable sfcgal
47
ADDRSTD_DESC=	Enable address standardizer
41
ADDRSTD_DESC=	Enable address standardizer
48
42
43
CONFLICTS_INSTALL=	postgis20  postgis21 postgis22 postgis24 postgis25
44
49
LOADERGUI_CONFIGURE_WITH=	gui
45
LOADERGUI_CONFIGURE_WITH=	gui
50
LOADERGUI_USE=	GNOME=gtk20
46
LOADERGUI_USE=			GNOME=gtk20
51
RASTER_USES=	alias
52
RASTER_CONFIGURE_WITH=	raster
53
RASTER_LIB_DEPENDS=		libgdal.so:graphics/gdal
54
RASTER_CONFIGURE_ON=	--with-gdalconfig=${LOCALBASE}/bin/gdal-config
55
TOPOLOGY_CONFIGURE_WITH=	topology
47
TOPOLOGY_CONFIGURE_WITH=	topology
56
SFCGAL_LIB_DEPENDS=	libSFCGAL.so:databases/sfcgal
48
SFCGAL_LIB_DEPENDS=		libSFCGAL.so:databases/sfcgal
57
SFCGAL_CONFIGURE_ON=	--with-sfcgal=${LOCALBASE}/bin/sfcgal-config
49
SFCGAL_CONFIGURE_WITH=		sfcgal=${LOCALBASE}/bin/sfcgal-config
58
SFCGAL_CONFIGURE_OFF=	--without-sfcgal
50
ADDRSTD_CONFIGURE_WITH=		address-standardizer
59
SFCGAL_IMPLIES=		RASTER
51
ADDRSTD_LIB_DEPENDS=		libpcre.so:devel/pcre
60
ADDRSTD_CONFIGURE_WITH=	address-standardizer
52
ADDRSTD_VARS=			WANT_PGSQL+=contrib
61
ADDRSTD_IMPLIES=	RASTER
62
ADDRSTD_LIB_DEPENDS=	libpcre.so:devel/pcre
63
ADDRSTD_VARS=		WANT_PGSQL+=contrib
64
65
CFLAGS+=	-I${LOCALBASE}/include
66
LDFLAGS+=	-L${LOCALBASE}/lib
67
68
.include <bsd.port.pre.mk>
69
53
70
post-patch:
54
VER=		${PORTVERSION:R}
71
	@${GREP} -lR 'bin/bash' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e "s|/bin/bash|/bin/sh|"
72
	@${GREP} -lR '/usr/bin/psql' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
73
		-e "s|/usr/bin/psql|${LOCALBASE}/bin/pgsql|"
74
	@${GREP} -lR '/usr/lib/postgresql/9.4/bin/psql' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
75
		-e "s|/usr/lib/postgresql/9.4/bin/psql|${LOCALBASE}/bin/pgsql|"
76
	@${GREP} -lR '/usr/share/postgresql/contrib' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
77
		-e "s|/usr/share/postgresql/contrib|${LOCALBASE}/share/postgresql/contrib|"
78
	@${GREP} -lR '/usr/share/postgresql/9.4/contrib' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
79
		-e "s|/usr/share/postgresql/9.4/contrib|${LOCALBASE}/share/postgresql/contrib/postgis-2.3|"
80
55
81
pre-configure:
56
PLIST_SUB=	PORTVERSION=${PORTVERSION} \
82
	@${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL
57
		VER=${VER}
83
58
84
post-install:
59
post-install:
60
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
61
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblwgeom-${VER}.so.0.0.0
62
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/*.so
85
	${MKDIR} ${STAGEDIR}${DATADIR}/tiger_geocoder
63
	${MKDIR} ${STAGEDIR}${DATADIR}/tiger_geocoder
86
	(cd ${WRKSRC}/extras/tiger_geocoder && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/tiger_geocoder/ "! ( -name *\.orig -o -name *\.bak )" )
64
	(cd ${WRKSRC}/extras/tiger_geocoder && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/tiger_geocoder/ "! ( -name *\.orig -o -name *\.bak )" )
87
	${MKDIR} ${STAGEDIR}${DATADIR}/utils
65
	${MKDIR} ${STAGEDIR}${DATADIR}/utils
88
	(cd ${WRKSRC}/utils/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/utils/ "! ( -name *\.orig -o -name *\.bak -o -name Makefile -o -name *\.in -o -name uninstall_script )" )
66
	(cd ${WRKSRC}/utils/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/utils/ "! ( -name *\.orig -o -name *\.bak -o -name Makefile -o -name *\.in -o -name uninstall_script )" )
89
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/shp2pgsql
90
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pgsql2shp
91
.if ${PORT_OPTIONS:MLOADERGUI}
92
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/shp2pgsql-gui
93
.else
94
	${RM} ${STAGEDIR}${PREFIX}/bin/shp2pgsql-gui
95
.endif
96
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblwgeom-2.3.so.0.0.0
97
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/postgis-2.3.so
98
.if ${PORT_OPTIONS:MTOPOLOGY}
99
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/postgis_topology-2.3.so
100
.endif
101
.if ${PORT_OPTIONS:MRASTER}
102
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/raster2pgsql
103
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/rtpostgis-2.3.so
104
.endif
105
.if ${PORT_OPTIONS:MADDRSTD}
106
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/address_standardizer-2.3.so
107
.endif
108
67
109
.include <bsd.port.post.mk>
68
.include <bsd.port.mk>
(-)databases/postgis23/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1523131124
1
TIMESTAMP = 1552658706
2
SHA256 (postgis-2.3.7.tar.gz) = bb3c39d42dc11188a14163add84ed8372d337dc5b345fac1a48b9ec97d0a8456
2
SHA256 (postgis-2.3.9.tar.gz) = a411e15e937c4b3d64b76b273454ea4e1c65447605dbef69bc3ed6d590a28f69
3
SIZE (postgis-2.3.7.tar.gz) = 11347892
3
SIZE (postgis-2.3.9.tar.gz) = 11560931
(-)databases/postgis23/pkg-descr (-15 lines)
Removed Link Here
1
PostGIS adds support for geographic objects to the PostgreSQL
2
object-relational database. In effect, PostGIS "spatially enables"
3
the PostgreSQL server, allowing it to be used as a backend spatial
4
database for geographic information systems (GIS), much like ESRI's
5
SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS
6
"Simple Features Specification for SQL" and has been certified as
7
compliant with the "Types and Functions" profile.
8
9
PostGIS development was started by Refractions Research as a project
10
in open source spatial database technology. PostGIS is released
11
under the GNU General Public License. PostGIS continues to be
12
developed by a group of contributors led by a Project Steering
13
Committee and new features continue to be added.
14
15
WWW: https://postgis.net/
(-)databases/postgis23/pkg-plist (-193 / +205 lines)
Lines 1-18 Link Here
1
bin/pgsql2shp
1
bin/pgsql2shp
2
%%RASTER%%bin/raster2pgsql
2
bin/raster2pgsql
3
bin/shp2pgsql
3
bin/shp2pgsql
4
%%LOADERGUI%%bin/shp2pgsql-gui
4
%%LOADERGUI%%bin/shp2pgsql-gui
5
include/liblwgeom.h
5
include/liblwgeom.h
6
include/liblwgeom_topo.h
6
include/liblwgeom_topo.h
7
lib/liblwgeom-2.3.so.0
7
lib/liblwgeom-%%VER%%.so.0
8
lib/liblwgeom-2.3.so.0.0.0
8
lib/liblwgeom-%%VER%%.so.0.0.0
9
lib/liblwgeom.a
9
lib/liblwgeom.a
10
lib/liblwgeom.la
10
lib/liblwgeom.la
11
lib/liblwgeom.so
11
lib/liblwgeom.so
12
%%ADDRSTD%%lib/postgresql/address_standardizer-2.3.so
12
%%ADDRSTD%%lib/postgresql/address_standardizer-%%VER%%.so
13
lib/postgresql/postgis-2.3.so
13
lib/postgresql/postgis-%%VER%%.so
14
%%TOPOLOGY%%lib/postgresql/postgis_topology-2.3.so
14
%%TOPOLOGY%%lib/postgresql/postgis_topology-%%VER%%.so
15
%%RASTER%%lib/postgresql/rtpostgis-2.3.so
15
lib/postgresql/rtpostgis-%%VER%%.so
16
%%ADDRSTD%%share/doc/postgresql/extension/README.address_standardizer
16
%%ADDRSTD%%share/doc/postgresql/extension/README.address_standardizer
17
%%DATADIR%%/tiger_geocoder/README
17
%%DATADIR%%/tiger_geocoder/README
18
%%DATADIR%%/tiger_geocoder/create_geocode.bat
18
%%DATADIR%%/tiger_geocoder/create_geocode.bat
Lines 88-122 lib/postgresql/postgis-2.3.so Link Here
88
%%DATADIR%%/utils/test_geography_joinestimation.pl
88
%%DATADIR%%/utils/test_geography_joinestimation.pl
89
%%DATADIR%%/utils/test_joinestimation.pl
89
%%DATADIR%%/utils/test_joinestimation.pl
90
%%LOADERGUI%%share/postgresql/applications/shp2pgsql-gui.desktop
90
%%LOADERGUI%%share/postgresql/applications/shp2pgsql-gui.desktop
91
share/postgresql/contrib/postgis-2.3/legacy.sql
91
share/postgresql/contrib/postgis-%%VER%%/legacy.sql
92
share/postgresql/contrib/postgis-2.3/legacy_gist.sql
92
share/postgresql/contrib/postgis-%%VER%%/legacy_gist.sql
93
share/postgresql/contrib/postgis-2.3/legacy_minimal.sql
93
share/postgresql/contrib/postgis-%%VER%%/legacy_minimal.sql
94
share/postgresql/contrib/postgis-2.3/postgis.sql
94
share/postgresql/contrib/postgis-%%VER%%/postgis.sql
95
share/postgresql/contrib/postgis-2.3/postgis_comments.sql
95
share/postgresql/contrib/postgis-%%VER%%/postgis_comments.sql
96
share/postgresql/contrib/postgis-2.3/postgis_for_extension.sql
96
share/postgresql/contrib/postgis-%%VER%%/postgis_for_extension.sql
97
share/postgresql/contrib/postgis-2.3/postgis_proc_set_search_path.sql
97
share/postgresql/contrib/postgis-%%VER%%/postgis_proc_set_search_path.sql
98
share/postgresql/contrib/postgis-2.3/postgis_restore.pl
98
share/postgresql/contrib/postgis-%%VER%%/postgis_restore.pl
99
share/postgresql/contrib/postgis-2.3/postgis_upgrade.sql
99
share/postgresql/contrib/postgis-%%VER%%/postgis_upgrade.sql
100
share/postgresql/contrib/postgis-2.3/postgis_upgrade_for_extension.sql
100
share/postgresql/contrib/postgis-%%VER%%/postgis_upgrade_for_extension.sql
101
%%RASTER%%share/postgresql/contrib/postgis-2.3/raster_comments.sql
101
share/postgresql/contrib/postgis-%%VER%%/raster_comments.sql
102
%%RASTER%%share/postgresql/contrib/postgis-2.3/rtpostgis.sql
102
share/postgresql/contrib/postgis-%%VER%%/rtpostgis.sql
103
%%RASTER%%share/postgresql/contrib/postgis-2.3/rtpostgis_for_extension.sql
103
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_for_extension.sql
104
%%RASTER%%share/postgresql/contrib/postgis-2.3/rtpostgis_legacy.sql
104
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_legacy.sql
105
%%RASTER%%share/postgresql/contrib/postgis-2.3/rtpostgis_proc_set_search_path.sql
105
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_proc_set_search_path.sql
106
%%RASTER%%share/postgresql/contrib/postgis-2.3/rtpostgis_upgrade.sql
106
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_upgrade.sql
107
%%RASTER%%share/postgresql/contrib/postgis-2.3/rtpostgis_upgrade_for_extension.sql
107
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_upgrade_for_extension.sql
108
%%SFCGAL%%share/postgresql/contrib/postgis-2.3/sfcgal.sql
108
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/sfcgal.sql
109
%%SFCGAL%%share/postgresql/contrib/postgis-2.3/sfcgal_comments.sql
109
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/sfcgal_comments.sql
110
%%SFCGAL%%share/postgresql/contrib/postgis-2.3/sfcgal_upgrade.sql
110
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/sfcgal_upgrade.sql
111
share/postgresql/contrib/postgis-2.3/spatial_ref_sys.sql
111
share/postgresql/contrib/postgis-%%VER%%/spatial_ref_sys.sql
112
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.3/topology.sql
112
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/topology.sql
113
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.3/topology_comments.sql
113
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/topology_comments.sql
114
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.3/topology_upgrade.sql
114
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/topology_upgrade.sql
115
share/postgresql/contrib/postgis-2.3/uninstall_legacy.sql
115
share/postgresql/contrib/postgis-%%VER%%/uninstall_legacy.sql
116
share/postgresql/contrib/postgis-2.3/uninstall_postgis.sql
116
share/postgresql/contrib/postgis-%%VER%%/uninstall_postgis.sql
117
%%RASTER%%share/postgresql/contrib/postgis-2.3/uninstall_rtpostgis.sql
117
share/postgresql/contrib/postgis-%%VER%%/uninstall_rtpostgis.sql
118
%%SFCGAL%%share/postgresql/contrib/postgis-2.3/uninstall_sfcgal.sql
118
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/uninstall_sfcgal.sql
119
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.3/uninstall_topology.sql
119
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/uninstall_topology.sql
120
%%ADDRSTD%%share/postgresql/extension/address_standardizer--1.0--%%PORTVERSION%%.sql
120
%%ADDRSTD%%share/postgresql/extension/address_standardizer--1.0--%%PORTVERSION%%.sql
121
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%--%%PORTVERSION%%next.sql
121
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%--%%PORTVERSION%%next.sql
122
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%.sql
122
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%.sql
Lines 128-290 share/postgresql/contrib/postgis-2.3/uninstall_postgis.sql Link Here
128
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us--%%PORTVERSION%%next--%%PORTVERSION%%.sql
128
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us--%%PORTVERSION%%next--%%PORTVERSION%%.sql
129
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.control
129
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.control
130
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.sql
130
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.sql
131
%%RASTER%%share/postgresql/extension/postgis--2.0.0--%%PORTVERSION%%.sql
131
share/postgresql/extension/postgis--2.0.0--%%PORTVERSION%%.sql
132
%%RASTER%%share/postgresql/extension/postgis--2.0.1--%%PORTVERSION%%.sql
132
share/postgresql/extension/postgis--2.0.1--%%PORTVERSION%%.sql
133
%%RASTER%%share/postgresql/extension/postgis--2.0.2--%%PORTVERSION%%.sql
133
share/postgresql/extension/postgis--2.0.2--%%PORTVERSION%%.sql
134
%%RASTER%%share/postgresql/extension/postgis--2.0.3--%%PORTVERSION%%.sql
134
share/postgresql/extension/postgis--2.0.3--%%PORTVERSION%%.sql
135
%%RASTER%%share/postgresql/extension/postgis--2.0.4--%%PORTVERSION%%.sql
135
share/postgresql/extension/postgis--2.0.4--%%PORTVERSION%%.sql
136
%%RASTER%%share/postgresql/extension/postgis--2.0.5--%%PORTVERSION%%.sql
136
share/postgresql/extension/postgis--2.0.5--%%PORTVERSION%%.sql
137
%%RASTER%%share/postgresql/extension/postgis--2.0.6--%%PORTVERSION%%.sql
137
share/postgresql/extension/postgis--2.0.6--%%PORTVERSION%%.sql
138
%%RASTER%%share/postgresql/extension/postgis--2.0.7--%%PORTVERSION%%.sql
138
share/postgresql/extension/postgis--2.0.7--%%PORTVERSION%%.sql
139
%%RASTER%%share/postgresql/extension/postgis--2.1.0--%%PORTVERSION%%.sql
139
share/postgresql/extension/postgis--2.1.0--%%PORTVERSION%%.sql
140
%%RASTER%%share/postgresql/extension/postgis--2.1.1--%%PORTVERSION%%.sql
140
share/postgresql/extension/postgis--2.1.1--%%PORTVERSION%%.sql
141
%%RASTER%%share/postgresql/extension/postgis--2.1.2--%%PORTVERSION%%.sql
141
share/postgresql/extension/postgis--2.1.2--%%PORTVERSION%%.sql
142
%%RASTER%%share/postgresql/extension/postgis--2.1.3--%%PORTVERSION%%.sql
142
share/postgresql/extension/postgis--2.1.3--%%PORTVERSION%%.sql
143
%%RASTER%%share/postgresql/extension/postgis--2.1.4--%%PORTVERSION%%.sql
143
share/postgresql/extension/postgis--2.1.4--%%PORTVERSION%%.sql
144
%%RASTER%%share/postgresql/extension/postgis--2.1.5--%%PORTVERSION%%.sql
144
share/postgresql/extension/postgis--2.1.5--%%PORTVERSION%%.sql
145
%%RASTER%%share/postgresql/extension/postgis--2.1.6--%%PORTVERSION%%.sql
145
share/postgresql/extension/postgis--2.1.6--%%PORTVERSION%%.sql
146
%%RASTER%%share/postgresql/extension/postgis--2.1.7--%%PORTVERSION%%.sql
146
share/postgresql/extension/postgis--2.1.7--%%PORTVERSION%%.sql
147
%%RASTER%%share/postgresql/extension/postgis--2.1.8--%%PORTVERSION%%.sql
147
share/postgresql/extension/postgis--2.1.8--%%PORTVERSION%%.sql
148
%%RASTER%%share/postgresql/extension/postgis--2.1.9--%%PORTVERSION%%.sql
148
share/postgresql/extension/postgis--2.1.9--%%PORTVERSION%%.sql
149
%%RASTER%%share/postgresql/extension/postgis--2.2.0--%%PORTVERSION%%.sql
149
share/postgresql/extension/postgis--2.2.0--%%PORTVERSION%%.sql
150
%%RASTER%%share/postgresql/extension/postgis--2.2.1--%%PORTVERSION%%.sql
150
share/postgresql/extension/postgis--2.2.1--%%PORTVERSION%%.sql
151
%%RASTER%%share/postgresql/extension/postgis--2.2.2--%%PORTVERSION%%.sql
151
share/postgresql/extension/postgis--2.2.2--%%PORTVERSION%%.sql
152
%%RASTER%%share/postgresql/extension/postgis--2.2.3--%%PORTVERSION%%.sql
152
share/postgresql/extension/postgis--2.2.3--%%PORTVERSION%%.sql
153
%%RASTER%%share/postgresql/extension/postgis--2.2.4--%%PORTVERSION%%.sql
153
share/postgresql/extension/postgis--2.2.4--%%PORTVERSION%%.sql
154
%%RASTER%%share/postgresql/extension/postgis--2.2.5--%%PORTVERSION%%.sql
154
share/postgresql/extension/postgis--2.2.5--%%PORTVERSION%%.sql
155
%%RASTER%%share/postgresql/extension/postgis--2.2.6--%%PORTVERSION%%.sql
155
share/postgresql/extension/postgis--2.2.6--%%PORTVERSION%%.sql
156
%%RASTER%%share/postgresql/extension/postgis--2.2.7--%%PORTVERSION%%.sql
156
share/postgresql/extension/postgis--2.2.7--%%PORTVERSION%%.sql
157
%%RASTER%%share/postgresql/extension/postgis--2.3.0--%%PORTVERSION%%.sql
157
share/postgresql/extension/postgis--2.2.8--%%PORTVERSION%%.sql
158
%%RASTER%%share/postgresql/extension/postgis--2.3.1--%%PORTVERSION%%.sql
158
share/postgresql/extension/postgis--2.3.0--%%PORTVERSION%%.sql
159
%%RASTER%%share/postgresql/extension/postgis--2.3.2--%%PORTVERSION%%.sql
159
share/postgresql/extension/postgis--2.3.1--%%PORTVERSION%%.sql
160
%%RASTER%%share/postgresql/extension/postgis--2.3.3--%%PORTVERSION%%.sql
160
share/postgresql/extension/postgis--2.3.2--%%PORTVERSION%%.sql
161
%%RASTER%%share/postgresql/extension/postgis--2.3.4--%%PORTVERSION%%.sql
161
share/postgresql/extension/postgis--2.3.3--%%PORTVERSION%%.sql
162
%%RASTER%%share/postgresql/extension/postgis--2.3.5--%%PORTVERSION%%.sql
162
share/postgresql/extension/postgis--2.3.4--%%PORTVERSION%%.sql
163
%%RASTER%%share/postgresql/extension/postgis--2.3.6--%%PORTVERSION%%.sql
163
share/postgresql/extension/postgis--2.3.5--%%PORTVERSION%%.sql
164
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%--%%PORTVERSION%%next.sql
164
share/postgresql/extension/postgis--2.3.6--%%PORTVERSION%%.sql
165
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%.sql
165
share/postgresql/extension/postgis--2.3.7--%%PORTVERSION%%.sql
166
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
166
share/postgresql/extension/postgis--2.3.8--%%PORTVERSION%%.sql
167
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%next--%%PORTVERSION%%.sql
167
share/postgresql/extension/postgis--%%PORTVERSION%%--%%PORTVERSION%%next.sql
168
%%RASTER%%share/postgresql/extension/postgis--unpackaged--%%PORTVERSION%%.sql
168
share/postgresql/extension/postgis--%%PORTVERSION%%.sql
169
%%RASTER%%share/postgresql/extension/postgis.control
169
share/postgresql/extension/postgis--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
170
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.0--%%PORTVERSION%%.sql
170
share/postgresql/extension/postgis--%%PORTVERSION%%next--%%PORTVERSION%%.sql
171
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.1--%%PORTVERSION%%.sql
171
share/postgresql/extension/postgis--unpackaged--%%PORTVERSION%%.sql
172
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.2--%%PORTVERSION%%.sql
172
share/postgresql/extension/postgis.control
173
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.3--%%PORTVERSION%%.sql
173
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.0--%%PORTVERSION%%.sql
174
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.4--%%PORTVERSION%%.sql
174
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.1--%%PORTVERSION%%.sql
175
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.5--%%PORTVERSION%%.sql
175
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.2--%%PORTVERSION%%.sql
176
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.6--%%PORTVERSION%%.sql
176
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.3--%%PORTVERSION%%.sql
177
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.7--%%PORTVERSION%%.sql
177
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.4--%%PORTVERSION%%.sql
178
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.0--%%PORTVERSION%%.sql
178
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.5--%%PORTVERSION%%.sql
179
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.1--%%PORTVERSION%%.sql
179
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.6--%%PORTVERSION%%.sql
180
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.2--%%PORTVERSION%%.sql
180
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.7--%%PORTVERSION%%.sql
181
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.3--%%PORTVERSION%%.sql
181
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.0--%%PORTVERSION%%.sql
182
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.4--%%PORTVERSION%%.sql
182
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.1--%%PORTVERSION%%.sql
183
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.5--%%PORTVERSION%%.sql
183
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.2--%%PORTVERSION%%.sql
184
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.6--%%PORTVERSION%%.sql
184
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.3--%%PORTVERSION%%.sql
185
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.7--%%PORTVERSION%%.sql
185
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.4--%%PORTVERSION%%.sql
186
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.8--%%PORTVERSION%%.sql
186
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.5--%%PORTVERSION%%.sql
187
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.9--%%PORTVERSION%%.sql
187
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.6--%%PORTVERSION%%.sql
188
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.0--%%PORTVERSION%%.sql
188
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.7--%%PORTVERSION%%.sql
189
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.1--%%PORTVERSION%%.sql
189
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.8--%%PORTVERSION%%.sql
190
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.2--%%PORTVERSION%%.sql
190
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.9--%%PORTVERSION%%.sql
191
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.3--%%PORTVERSION%%.sql
191
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.0--%%PORTVERSION%%.sql
192
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.4--%%PORTVERSION%%.sql
192
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.1--%%PORTVERSION%%.sql
193
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.5--%%PORTVERSION%%.sql
193
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.2--%%PORTVERSION%%.sql
194
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.6--%%PORTVERSION%%.sql
194
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.3--%%PORTVERSION%%.sql
195
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.7--%%PORTVERSION%%.sql
195
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.4--%%PORTVERSION%%.sql
196
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.0--%%PORTVERSION%%.sql
196
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.5--%%PORTVERSION%%.sql
197
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.1--%%PORTVERSION%%.sql
197
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.6--%%PORTVERSION%%.sql
198
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.2--%%PORTVERSION%%.sql
198
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.7--%%PORTVERSION%%.sql
199
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.3--%%PORTVERSION%%.sql
199
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.8--%%PORTVERSION%%.sql
200
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.4--%%PORTVERSION%%.sql
200
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.0--%%PORTVERSION%%.sql
201
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.5--%%PORTVERSION%%.sql
201
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.1--%%PORTVERSION%%.sql
202
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.6--%%PORTVERSION%%.sql
202
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.2--%%PORTVERSION%%.sql
203
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%--%%PORTVERSION%%next.sql
203
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.3--%%PORTVERSION%%.sql
204
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%.sql
204
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.4--%%PORTVERSION%%.sql
205
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
205
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.5--%%PORTVERSION%%.sql
206
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%next--%%PORTVERSION%%.sql
206
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.6--%%PORTVERSION%%.sql
207
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--unpackaged--%%PORTVERSION%%.sql
207
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.7--%%PORTVERSION%%.sql
208
%%RASTER%%%%SFCGAL%%share/postgresql/extension/postgis_sfcgal.control
208
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.8--%%PORTVERSION%%.sql
209
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.0--%%PORTVERSION%%.sql
209
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%--%%PORTVERSION%%next.sql
210
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.1--%%PORTVERSION%%.sql
210
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%.sql
211
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.2--%%PORTVERSION%%.sql
211
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
212
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.3--%%PORTVERSION%%.sql
212
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%next--%%PORTVERSION%%.sql
213
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.4--%%PORTVERSION%%.sql
213
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--unpackaged--%%PORTVERSION%%.sql
214
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.5--%%PORTVERSION%%.sql
214
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal.control
215
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.6--%%PORTVERSION%%.sql
215
share/postgresql/extension/postgis_tiger_geocoder--2.0.0--%%PORTVERSION%%.sql
216
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.7--%%PORTVERSION%%.sql
216
share/postgresql/extension/postgis_tiger_geocoder--2.0.1--%%PORTVERSION%%.sql
217
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.0--%%PORTVERSION%%.sql
217
share/postgresql/extension/postgis_tiger_geocoder--2.0.2--%%PORTVERSION%%.sql
218
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.1--%%PORTVERSION%%.sql
218
share/postgresql/extension/postgis_tiger_geocoder--2.0.3--%%PORTVERSION%%.sql
219
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.2--%%PORTVERSION%%.sql
219
share/postgresql/extension/postgis_tiger_geocoder--2.0.4--%%PORTVERSION%%.sql
220
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.3--%%PORTVERSION%%.sql
220
share/postgresql/extension/postgis_tiger_geocoder--2.0.5--%%PORTVERSION%%.sql
221
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.4--%%PORTVERSION%%.sql
221
share/postgresql/extension/postgis_tiger_geocoder--2.0.6--%%PORTVERSION%%.sql
222
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.5--%%PORTVERSION%%.sql
222
share/postgresql/extension/postgis_tiger_geocoder--2.0.7--%%PORTVERSION%%.sql
223
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.6--%%PORTVERSION%%.sql
223
share/postgresql/extension/postgis_tiger_geocoder--2.1.0--%%PORTVERSION%%.sql
224
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.7--%%PORTVERSION%%.sql
224
share/postgresql/extension/postgis_tiger_geocoder--2.1.1--%%PORTVERSION%%.sql
225
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.8--%%PORTVERSION%%.sql
225
share/postgresql/extension/postgis_tiger_geocoder--2.1.2--%%PORTVERSION%%.sql
226
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.9--%%PORTVERSION%%.sql
226
share/postgresql/extension/postgis_tiger_geocoder--2.1.3--%%PORTVERSION%%.sql
227
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.0--%%PORTVERSION%%.sql
227
share/postgresql/extension/postgis_tiger_geocoder--2.1.4--%%PORTVERSION%%.sql
228
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.1--%%PORTVERSION%%.sql
228
share/postgresql/extension/postgis_tiger_geocoder--2.1.5--%%PORTVERSION%%.sql
229
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.2--%%PORTVERSION%%.sql
229
share/postgresql/extension/postgis_tiger_geocoder--2.1.6--%%PORTVERSION%%.sql
230
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.3--%%PORTVERSION%%.sql
230
share/postgresql/extension/postgis_tiger_geocoder--2.1.7--%%PORTVERSION%%.sql
231
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.4--%%PORTVERSION%%.sql
231
share/postgresql/extension/postgis_tiger_geocoder--2.1.8--%%PORTVERSION%%.sql
232
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.5--%%PORTVERSION%%.sql
232
share/postgresql/extension/postgis_tiger_geocoder--2.1.9--%%PORTVERSION%%.sql
233
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.6--%%PORTVERSION%%.sql
233
share/postgresql/extension/postgis_tiger_geocoder--2.2.0--%%PORTVERSION%%.sql
234
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.7--%%PORTVERSION%%.sql
234
share/postgresql/extension/postgis_tiger_geocoder--2.2.1--%%PORTVERSION%%.sql
235
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.0--%%PORTVERSION%%.sql
235
share/postgresql/extension/postgis_tiger_geocoder--2.2.2--%%PORTVERSION%%.sql
236
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.1--%%PORTVERSION%%.sql
236
share/postgresql/extension/postgis_tiger_geocoder--2.2.3--%%PORTVERSION%%.sql
237
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.2--%%PORTVERSION%%.sql
237
share/postgresql/extension/postgis_tiger_geocoder--2.2.4--%%PORTVERSION%%.sql
238
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.3--%%PORTVERSION%%.sql
238
share/postgresql/extension/postgis_tiger_geocoder--2.2.5--%%PORTVERSION%%.sql
239
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.4--%%PORTVERSION%%.sql
239
share/postgresql/extension/postgis_tiger_geocoder--2.2.6--%%PORTVERSION%%.sql
240
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.5--%%PORTVERSION%%.sql
240
share/postgresql/extension/postgis_tiger_geocoder--2.2.7--%%PORTVERSION%%.sql
241
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.6--%%PORTVERSION%%.sql
241
share/postgresql/extension/postgis_tiger_geocoder--2.2.8--%%PORTVERSION%%.sql
242
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%--%%PORTVERSION%%next.sql
242
share/postgresql/extension/postgis_tiger_geocoder--2.3.0--%%PORTVERSION%%.sql
243
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%.sql
243
share/postgresql/extension/postgis_tiger_geocoder--2.3.1--%%PORTVERSION%%.sql
244
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
244
share/postgresql/extension/postgis_tiger_geocoder--2.3.2--%%PORTVERSION%%.sql
245
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%next--%%PORTVERSION%%.sql
245
share/postgresql/extension/postgis_tiger_geocoder--2.3.3--%%PORTVERSION%%.sql
246
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--unpackaged--%%PORTVERSION%%.sql
246
share/postgresql/extension/postgis_tiger_geocoder--2.3.4--%%PORTVERSION%%.sql
247
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder.control
247
share/postgresql/extension/postgis_tiger_geocoder--2.3.5--%%PORTVERSION%%.sql
248
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder.sql
248
share/postgresql/extension/postgis_tiger_geocoder--2.3.6--%%PORTVERSION%%.sql
249
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.0--%%PORTVERSION%%.sql
249
share/postgresql/extension/postgis_tiger_geocoder--2.3.7--%%PORTVERSION%%.sql
250
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.1--%%PORTVERSION%%.sql
250
share/postgresql/extension/postgis_tiger_geocoder--2.3.8--%%PORTVERSION%%.sql
251
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.2--%%PORTVERSION%%.sql
251
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%--%%PORTVERSION%%next.sql
252
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.3--%%PORTVERSION%%.sql
252
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%.sql
253
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.4--%%PORTVERSION%%.sql
253
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
254
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.5--%%PORTVERSION%%.sql
254
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%next--%%PORTVERSION%%.sql
255
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.6--%%PORTVERSION%%.sql
255
share/postgresql/extension/postgis_tiger_geocoder--unpackaged--%%PORTVERSION%%.sql
256
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.7--%%PORTVERSION%%.sql
256
share/postgresql/extension/postgis_tiger_geocoder.control
257
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.0--%%PORTVERSION%%.sql
257
share/postgresql/extension/postgis_tiger_geocoder.sql
258
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.1--%%PORTVERSION%%.sql
258
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.0--%%PORTVERSION%%.sql
259
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.2--%%PORTVERSION%%.sql
259
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.1--%%PORTVERSION%%.sql
260
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.3--%%PORTVERSION%%.sql
260
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.2--%%PORTVERSION%%.sql
261
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.4--%%PORTVERSION%%.sql
261
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.3--%%PORTVERSION%%.sql
262
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.5--%%PORTVERSION%%.sql
262
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.4--%%PORTVERSION%%.sql
263
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.6--%%PORTVERSION%%.sql
263
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.5--%%PORTVERSION%%.sql
264
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.7--%%PORTVERSION%%.sql
264
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.6--%%PORTVERSION%%.sql
265
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.8--%%PORTVERSION%%.sql
265
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.7--%%PORTVERSION%%.sql
266
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.9--%%PORTVERSION%%.sql
266
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.0--%%PORTVERSION%%.sql
267
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.0--%%PORTVERSION%%.sql
267
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.1--%%PORTVERSION%%.sql
268
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.1--%%PORTVERSION%%.sql
268
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.2--%%PORTVERSION%%.sql
269
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.2--%%PORTVERSION%%.sql
269
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.3--%%PORTVERSION%%.sql
270
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.3--%%PORTVERSION%%.sql
270
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.4--%%PORTVERSION%%.sql
271
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.4--%%PORTVERSION%%.sql
271
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.5--%%PORTVERSION%%.sql
272
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.5--%%PORTVERSION%%.sql
272
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.6--%%PORTVERSION%%.sql
273
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.6--%%PORTVERSION%%.sql
273
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.7--%%PORTVERSION%%.sql
274
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.7--%%PORTVERSION%%.sql
274
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.8--%%PORTVERSION%%.sql
275
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.0--%%PORTVERSION%%.sql
275
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.9--%%PORTVERSION%%.sql
276
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.1--%%PORTVERSION%%.sql
276
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.0--%%PORTVERSION%%.sql
277
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.2--%%PORTVERSION%%.sql
277
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.1--%%PORTVERSION%%.sql
278
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.3--%%PORTVERSION%%.sql
278
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.2--%%PORTVERSION%%.sql
279
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.4--%%PORTVERSION%%.sql
279
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.3--%%PORTVERSION%%.sql
280
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.5--%%PORTVERSION%%.sql
280
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.4--%%PORTVERSION%%.sql
281
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.6--%%PORTVERSION%%.sql
281
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.5--%%PORTVERSION%%.sql
282
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%--%%PORTVERSION%%next.sql
282
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.6--%%PORTVERSION%%.sql
283
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%.sql
283
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.7--%%PORTVERSION%%.sql
284
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
284
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.8--%%PORTVERSION%%.sql
285
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%next--%%PORTVERSION%%.sql
285
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.0--%%PORTVERSION%%.sql
286
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology--unpackaged--%%PORTVERSION%%.sql
286
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.1--%%PORTVERSION%%.sql
287
%%RASTER%%%%TOPOLOGY%%share/postgresql/extension/postgis_topology.control
287
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.2--%%PORTVERSION%%.sql
288
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.3--%%PORTVERSION%%.sql
289
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.4--%%PORTVERSION%%.sql
290
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.5--%%PORTVERSION%%.sql
291
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.6--%%PORTVERSION%%.sql
292
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.7--%%PORTVERSION%%.sql
293
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.8--%%PORTVERSION%%.sql
294
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%--%%PORTVERSION%%next.sql
295
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%.sql
296
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
297
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%next--%%PORTVERSION%%.sql
298
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--unpackaged--%%PORTVERSION%%.sql
299
%%TOPOLOGY%%share/postgresql/extension/postgis_topology.control
288
%%LOADERGUI%%share/postgresql/icons/hicolor/16x16/apps/shp2pgsql-gui.png
300
%%LOADERGUI%%share/postgresql/icons/hicolor/16x16/apps/shp2pgsql-gui.png
289
%%LOADERGUI%%share/postgresql/icons/hicolor/22x22/apps/shp2pgsql-gui.png
301
%%LOADERGUI%%share/postgresql/icons/hicolor/22x22/apps/shp2pgsql-gui.png
290
%%LOADERGUI%%share/postgresql/icons/hicolor/24x24/apps/shp2pgsql-gui.png
302
%%LOADERGUI%%share/postgresql/icons/hicolor/24x24/apps/shp2pgsql-gui.png
(-)databases/postgis24/Makefile (-57 / +28 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	postgis
4
PORTNAME=	postgis
5
PORTVERSION=	2.4.5
5
PORTVERSION=	2.4.7
6
PORTREVISION=	1
7
CATEGORIES=	databases geography
6
CATEGORIES=	databases geography
8
MASTER_SITES=	https://download.osgeo.org/postgis/source/
7
MASTER_SITES=	https://download.osgeo.org/postgis/source/
9
PKGNAMESUFFIX=	24
8
PKGNAMESUFFIX=	24
Lines 16-97 LICENSE_FILE= ${WRKSRC}/COPYING Link Here
16
15
17
LIB_DEPENDS=	libproj.so:graphics/proj \
16
LIB_DEPENDS=	libproj.so:graphics/proj \
18
		libgeos.so:graphics/geos \
17
		libgeos.so:graphics/geos \
19
		libjson-c.so:devel/json-c
18
		libjson-c.so:devel/json-c \
19
		libgdal.so:graphics/gdal
20
20
21
CONFLICTS_INSTALL=	postgis20  postgis21 postgis22 postgis23 postgis
21
USES=		alias gettext gmake gnome iconv:wchar_t libtool:keepla \
22
		localbase perl5 pkgconfig pgsql:9.3-10 shebangfix
23
USE_GNOME=	libxml2
24
USE_LDCONFIG=	yes
25
USE_PERL5=	build
22
26
23
USES=		compiler:c++11-lang gettext gmake iconv:wchar_t libtool:keepla \
24
		perl5 pgsql pkgconfig shebangfix
25
LLD_UNSAFE=	yes
26
GNU_CONFIGURE=	yes
27
GNU_CONFIGURE=	yes
27
CONFIGURE_ARGS=	${ICONV_CONFIGURE_BASE}
28
CONFIGURE_ARGS=	${ICONV_CONFIGURE_BASE} NUMERICFLAGS=${PORTVERSION}
28
SHEBANG_FILES=	extensions/address_standardizer/*.pl raster/test/regress/*.pl \
29
SHEBANG_FILES=	extensions/address_standardizer/*.pl raster/test/regress/*.pl \
29
		raster/test/regress/loader/*.pl regress/run_test.pl \
30
		raster/test/regress/loader/*.pl regress/run_test.pl \
30
		utils/postgis_restore.pl.in utils/*.pl
31
		utils/postgis_restore.pl.in utils/*.pl
31
USE_GNOME=	libxml2
32
WANT_PGSQL=	server
32
USE_LDCONFIG=	yes
33
USE_PERL5=	build
34
WANT_PGSQL=	lib server
35
36
OPTIONS_DEFINE=		LOADERGUI RASTER TOPOLOGY SFCGAL ADDRSTD
37
OPTIONS_DEFAULT=	TOPOLOGY ADDRSTD SFCGAL
38
OPTIONS_SUB=		yes
39
33
40
PLIST_SUB+=	PORTVERSION=${PORTVERSION}
34
OPTIONS_DEFINE=	ADDRSTD LOADERGUI SFCGAL TOPOLOGY
35
OPTIONS_DEFAULT=ADDRSTD SFCGAL TOPOLOGY
36
OPTIONS_SUB=	yes
41
37
42
LOADERGUI_DESC=	Enable shp2pgsql-gui
38
LOADERGUI_DESC=	Enable shp2pgsql-gui
43
RASTER_DESC=	Raster support
44
TOPOLOGY_DESC=	Topology support
39
TOPOLOGY_DESC=	Topology support
45
SFCGAL_DESC=	Enable sfcgal
40
SFCGAL_DESC=	Enable sfcgal
46
ADDRSTD_DESC=	Enable address standardizer
41
ADDRSTD_DESC=	Enable address standardizer
47
42
43
CONFLICTS_INSTALL=	postgis20  postgis21 postgis22 postgis23 postgis25
44
48
LOADERGUI_CONFIGURE_WITH=	gui
45
LOADERGUI_CONFIGURE_WITH=	gui
49
LOADERGUI_USE=	GNOME=gtk20
46
LOADERGUI_USE=			GNOME=gtk20
50
RASTER_USES=	alias
51
RASTER_CONFIGURE_WITH=	raster
52
RASTER_LIB_DEPENDS=		libgdal.so:graphics/gdal
53
RASTER_CONFIGURE_ON=	--with-gdalconfig=${LOCALBASE}/bin/gdal-config
54
TOPOLOGY_CONFIGURE_WITH=	topology
47
TOPOLOGY_CONFIGURE_WITH=	topology
55
SFCGAL_LIB_DEPENDS=	libSFCGAL.so:databases/sfcgal
48
SFCGAL_LIB_DEPENDS=		libSFCGAL.so:databases/sfcgal
56
SFCGAL_CONFIGURE_ON=	--with-sfcgal=${LOCALBASE}/bin/sfcgal-config
49
SFCGAL_CONFIGURE_WITH=		sfcgal=${LOCALBASE}/bin/sfcgal-config
57
SFCGAL_CONFIGURE_OFF=	--without-sfcgal
50
ADDRSTD_CONFIGURE_WITH=		address-standardizer
58
SFCGAL_IMPLIES=		RASTER
51
ADDRSTD_LIB_DEPENDS=		libpcre.so:devel/pcre
59
ADDRSTD_CONFIGURE_WITH=	address-standardizer
52
ADDRSTD_VARS=			WANT_PGSQL+=contrib
60
ADDRSTD_IMPLIES=	RASTER
61
ADDRSTD_LIB_DEPENDS=	libpcre.so:devel/pcre
62
ADDRSTD_VARS=		WANT_PGSQL+=contrib
63
64
CFLAGS+=	-I${LOCALBASE}/include
65
LDFLAGS+=	-L${LOCALBASE}/lib
66
53
67
.include <bsd.port.pre.mk>
54
VER=		${PORTVERSION:R}
68
55
69
pre-configure:
56
PLIST_SUB=	PORTVERSION=${PORTVERSION} \
70
	@${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL
57
		VER=${VER}
71
58
72
post-install:
59
post-install:
60
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
61
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblwgeom-${VER}.so.0.0.0
62
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/*.so
73
	${MKDIR} ${STAGEDIR}${DATADIR}/tiger_geocoder
63
	${MKDIR} ${STAGEDIR}${DATADIR}/tiger_geocoder
74
	(cd ${WRKSRC}/extras/tiger_geocoder && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/tiger_geocoder/ "! ( -name *\.orig -o -name *\.bak )" )
64
	(cd ${WRKSRC}/extras/tiger_geocoder && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/tiger_geocoder/ "! ( -name *\.orig -o -name *\.bak )" )
75
	${MKDIR} ${STAGEDIR}${DATADIR}/utils
65
	${MKDIR} ${STAGEDIR}${DATADIR}/utils
76
	(cd ${WRKSRC}/utils/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/utils/ "! ( -name *\.orig -o -name *\.bak -o -name Makefile -o -name *\.in -o -name uninstall_script )" )
66
	(cd ${WRKSRC}/utils/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/utils/ "! ( -name *\.orig -o -name *\.bak -o -name Makefile -o -name *\.in -o -name uninstall_script )" )
77
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/shp2pgsql
78
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pgsql2shp
79
.if ${PORT_OPTIONS:MLOADERGUI}
80
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/shp2pgsql-gui
81
.else
82
	${RM} ${STAGEDIR}${PREFIX}/bin/shp2pgsql-gui
83
.endif
84
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblwgeom-2.4.so.0.0.0
85
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/postgis-2.4.so
86
.if ${PORT_OPTIONS:MTOPOLOGY}
87
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/postgis_topology-2.4.so
88
.endif
89
.if ${PORT_OPTIONS:MRASTER}
90
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/raster2pgsql
91
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/rtpostgis-2.4.so
92
.endif
93
.if ${PORT_OPTIONS:MADDRSTD}
94
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/address_standardizer-2.4.so
95
.endif
96
67
97
.include <bsd.port.post.mk>
68
.include <bsd.port.mk>
(-)databases/postgis24/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1536867665
1
TIMESTAMP = 1552660013
2
SHA256 (postgis-2.4.5.tar.gz) = 2fe727dd7541859b5230f55c78885c605e0177676cbc18944ecb2779f8905d69
2
SHA256 (postgis-2.4.7.tar.gz) = 4ede3cd1c11af7635fc242ba319a1fbdf3ff74a9f75c6536d0b5007fd1e69657
3
SIZE (postgis-2.4.5.tar.gz) = 12613882
3
SIZE (postgis-2.4.7.tar.gz) = 12831401
(-)databases/postgis24/pkg-install (-37 lines)
Removed Link Here
1
#!/bin/sh
2
3
msg(){
4
 echo "
5
  ======================= GEOS Support Notice ========================
6
  In order to use the GEOS support, you may need to specially compile
7
  your version of PostgreSQL to link the C++ runtime library.
8
  To do this, invoke the PostgreSQL Makefile script this way:
9
10
  on csh shell:
11
12
  setenv LDFLAGS -lstdc++
13
  make
14
15
  on sh or bash shell:
16
17
  export LDFLAGS=-lstdc++
18
  make
19
20
  The initial LDFLAGS variable is passed through to the Makefile and
21
  adds the C++ library to the linking stage.
22
23
  ====================================================================
24
"
25
if [ -n "${PACKAGE_BUILDING}" ]; then
26
    sleep 10
27
fi
28
29
30
}
31
32
case "$2" in
33
    PRE-INSTALL)
34
        msg ;;
35
    MESSAGE)
36
        msg ;;
37
esac
(-)databases/postgis24/pkg-plist (-129 / +149 lines)
Lines 1-18 Link Here
1
bin/pgsql2shp
1
bin/pgsql2shp
2
%%RASTER%%bin/raster2pgsql
2
bin/raster2pgsql
3
bin/shp2pgsql
3
bin/shp2pgsql
4
%%LOADERGUI%%bin/shp2pgsql-gui
4
%%LOADERGUI%%bin/shp2pgsql-gui
5
include/liblwgeom.h
5
include/liblwgeom.h
6
include/liblwgeom_topo.h
6
include/liblwgeom_topo.h
7
lib/liblwgeom-2.4.so.0
7
lib/liblwgeom-%%VER%%.so.0
8
lib/liblwgeom-2.4.so.0.0.0
8
lib/liblwgeom-%%VER%%.so.0.0.0
9
lib/liblwgeom.a
9
lib/liblwgeom.a
10
lib/liblwgeom.la
10
lib/liblwgeom.la
11
lib/liblwgeom.so
11
lib/liblwgeom.so
12
%%ADDRSTD%%lib/postgresql/address_standardizer-2.4.so
12
lib/postgresql/address_standardizer-%%VER%%.so
13
lib/postgresql/postgis-2.4.so
13
lib/postgresql/postgis-%%VER%%.so
14
%%TOPOLOGY%%lib/postgresql/postgis_topology-2.4.so
14
%%TOPOLOGY%%lib/postgresql/postgis_topology-%%VER%%.so
15
%%RASTER%%lib/postgresql/rtpostgis-2.4.so
15
lib/postgresql/rtpostgis-%%VER%%.so
16
%%ADDRSTD%%share/doc/postgresql/extension/README.address_standardizer
16
%%ADDRSTD%%share/doc/postgresql/extension/README.address_standardizer
17
%%DATADIR%%/tiger_geocoder/README
17
%%DATADIR%%/tiger_geocoder/README
18
%%DATADIR%%/tiger_geocoder/create_geocode.bat
18
%%DATADIR%%/tiger_geocoder/create_geocode.bat
Lines 89-123 lib/postgresql/postgis-2.4.so Link Here
89
%%DATADIR%%/utils/test_geography_joinestimation.pl
89
%%DATADIR%%/utils/test_geography_joinestimation.pl
90
%%DATADIR%%/utils/test_joinestimation.pl
90
%%DATADIR%%/utils/test_joinestimation.pl
91
%%LOADERGUI%%share/postgresql/applications/shp2pgsql-gui.desktop
91
%%LOADERGUI%%share/postgresql/applications/shp2pgsql-gui.desktop
92
share/postgresql/contrib/postgis-2.4/legacy.sql
92
share/postgresql/contrib/postgis-%%VER%%/legacy.sql
93
share/postgresql/contrib/postgis-2.4/legacy_gist.sql
93
share/postgresql/contrib/postgis-%%VER%%/legacy_gist.sql
94
share/postgresql/contrib/postgis-2.4/legacy_minimal.sql
94
share/postgresql/contrib/postgis-%%VER%%/legacy_minimal.sql
95
share/postgresql/contrib/postgis-2.4/postgis.sql
95
share/postgresql/contrib/postgis-%%VER%%/postgis.sql
96
share/postgresql/contrib/postgis-2.4/postgis_comments.sql
96
share/postgresql/contrib/postgis-%%VER%%/postgis_comments.sql
97
share/postgresql/contrib/postgis-2.4/postgis_for_extension.sql
97
share/postgresql/contrib/postgis-%%VER%%/postgis_for_extension.sql
98
share/postgresql/contrib/postgis-2.4/postgis_proc_set_search_path.sql
98
share/postgresql/contrib/postgis-%%VER%%/postgis_proc_set_search_path.sql
99
share/postgresql/contrib/postgis-2.4/postgis_restore.pl
99
share/postgresql/contrib/postgis-%%VER%%/postgis_restore.pl
100
share/postgresql/contrib/postgis-2.4/postgis_upgrade.sql
100
share/postgresql/contrib/postgis-%%VER%%/postgis_upgrade.sql
101
share/postgresql/contrib/postgis-2.4/postgis_upgrade_for_extension.sql
101
share/postgresql/contrib/postgis-%%VER%%/postgis_upgrade_for_extension.sql
102
%%RASTER%%share/postgresql/contrib/postgis-2.4/raster_comments.sql
102
share/postgresql/contrib/postgis-%%VER%%/raster_comments.sql
103
%%RASTER%%share/postgresql/contrib/postgis-2.4/rtpostgis.sql
103
share/postgresql/contrib/postgis-%%VER%%/rtpostgis.sql
104
%%RASTER%%share/postgresql/contrib/postgis-2.4/rtpostgis_for_extension.sql
104
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_for_extension.sql
105
%%RASTER%%share/postgresql/contrib/postgis-2.4/rtpostgis_legacy.sql
105
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_legacy.sql
106
%%RASTER%%share/postgresql/contrib/postgis-2.4/rtpostgis_proc_set_search_path.sql
106
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_proc_set_search_path.sql
107
%%RASTER%%share/postgresql/contrib/postgis-2.4/rtpostgis_upgrade.sql
107
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_upgrade.sql
108
%%RASTER%%share/postgresql/contrib/postgis-2.4/rtpostgis_upgrade_for_extension.sql
108
share/postgresql/contrib/postgis-%%VER%%/rtpostgis_upgrade_for_extension.sql
109
%%SFCGAL%%share/postgresql/contrib/postgis-2.4/sfcgal.sql
109
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/sfcgal.sql
110
%%SFCGAL%%share/postgresql/contrib/postgis-2.4/sfcgal_comments.sql
110
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/sfcgal_comments.sql
111
%%SFCGAL%%share/postgresql/contrib/postgis-2.4/sfcgal_upgrade.sql
111
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/sfcgal_upgrade.sql
112
share/postgresql/contrib/postgis-2.4/spatial_ref_sys.sql
112
share/postgresql/contrib/postgis-%%VER%%/spatial_ref_sys.sql
113
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.4/topology.sql
113
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/topology.sql
114
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.4/topology_comments.sql
114
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/topology_comments.sql
115
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.4/topology_upgrade.sql
115
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/topology_upgrade.sql
116
share/postgresql/contrib/postgis-2.4/uninstall_legacy.sql
116
share/postgresql/contrib/postgis-%%VER%%/uninstall_legacy.sql
117
share/postgresql/contrib/postgis-2.4/uninstall_postgis.sql
117
share/postgresql/contrib/postgis-%%VER%%/uninstall_postgis.sql
118
%%RASTER%%share/postgresql/contrib/postgis-2.4/uninstall_rtpostgis.sql
118
share/postgresql/contrib/postgis-%%VER%%/uninstall_rtpostgis.sql
119
%%SFCGAL%%share/postgresql/contrib/postgis-2.4/uninstall_sfcgal.sql
119
%%SFCGAL%%share/postgresql/contrib/postgis-%%VER%%/uninstall_sfcgal.sql
120
%%TOPOLOGY%%share/postgresql/contrib/postgis-2.4/uninstall_topology.sql
120
%%TOPOLOGY%%share/postgresql/contrib/postgis-%%VER%%/uninstall_topology.sql
121
%%ADDRSTD%%share/postgresql/extension/address_standardizer--1.0--%%PORTVERSION%%.sql
121
%%ADDRSTD%%share/postgresql/extension/address_standardizer--1.0--%%PORTVERSION%%.sql
122
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%--%%PORTVERSION%%next.sql
122
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%--%%PORTVERSION%%next.sql
123
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%.sql
123
%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%.sql
Lines 129-179 share/postgresql/contrib/postgis-2.4/uninstall_postgis.sql Link Here
129
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us--%%PORTVERSION%%next--%%PORTVERSION%%.sql
129
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us--%%PORTVERSION%%next--%%PORTVERSION%%.sql
130
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.control
130
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.control
131
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.sql
131
%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.sql
132
%%RASTER%%share/postgresql/extension/postgis--2.0.0--%%PORTVERSION%%.sql
132
share/postgresql/extension/postgis--2.0.0--%%PORTVERSION%%.sql
133
%%RASTER%%share/postgresql/extension/postgis--2.0.1--%%PORTVERSION%%.sql
133
share/postgresql/extension/postgis--2.0.1--%%PORTVERSION%%.sql
134
%%RASTER%%share/postgresql/extension/postgis--2.0.2--%%PORTVERSION%%.sql
134
share/postgresql/extension/postgis--2.0.2--%%PORTVERSION%%.sql
135
%%RASTER%%share/postgresql/extension/postgis--2.0.3--%%PORTVERSION%%.sql
135
share/postgresql/extension/postgis--2.0.3--%%PORTVERSION%%.sql
136
%%RASTER%%share/postgresql/extension/postgis--2.0.4--%%PORTVERSION%%.sql
136
share/postgresql/extension/postgis--2.0.4--%%PORTVERSION%%.sql
137
%%RASTER%%share/postgresql/extension/postgis--2.0.5--%%PORTVERSION%%.sql
137
share/postgresql/extension/postgis--2.0.5--%%PORTVERSION%%.sql
138
%%RASTER%%share/postgresql/extension/postgis--2.0.6--%%PORTVERSION%%.sql
138
share/postgresql/extension/postgis--2.0.6--%%PORTVERSION%%.sql
139
%%RASTER%%share/postgresql/extension/postgis--2.0.7--%%PORTVERSION%%.sql
139
share/postgresql/extension/postgis--2.0.7--%%PORTVERSION%%.sql
140
%%RASTER%%share/postgresql/extension/postgis--2.1.0--%%PORTVERSION%%.sql
140
share/postgresql/extension/postgis--2.1.0--%%PORTVERSION%%.sql
141
%%RASTER%%share/postgresql/extension/postgis--2.1.1--%%PORTVERSION%%.sql
141
share/postgresql/extension/postgis--2.1.1--%%PORTVERSION%%.sql
142
%%RASTER%%share/postgresql/extension/postgis--2.1.2--%%PORTVERSION%%.sql
142
share/postgresql/extension/postgis--2.1.2--%%PORTVERSION%%.sql
143
%%RASTER%%share/postgresql/extension/postgis--2.1.3--%%PORTVERSION%%.sql
143
share/postgresql/extension/postgis--2.1.3--%%PORTVERSION%%.sql
144
%%RASTER%%share/postgresql/extension/postgis--2.1.4--%%PORTVERSION%%.sql
144
share/postgresql/extension/postgis--2.1.4--%%PORTVERSION%%.sql
145
%%RASTER%%share/postgresql/extension/postgis--2.1.5--%%PORTVERSION%%.sql
145
share/postgresql/extension/postgis--2.1.5--%%PORTVERSION%%.sql
146
%%RASTER%%share/postgresql/extension/postgis--2.1.6--%%PORTVERSION%%.sql
146
share/postgresql/extension/postgis--2.1.6--%%PORTVERSION%%.sql
147
%%RASTER%%share/postgresql/extension/postgis--2.1.7--%%PORTVERSION%%.sql
147
share/postgresql/extension/postgis--2.1.7--%%PORTVERSION%%.sql
148
%%RASTER%%share/postgresql/extension/postgis--2.1.8--%%PORTVERSION%%.sql
148
share/postgresql/extension/postgis--2.1.8--%%PORTVERSION%%.sql
149
%%RASTER%%share/postgresql/extension/postgis--2.1.9--%%PORTVERSION%%.sql
149
share/postgresql/extension/postgis--2.1.9--%%PORTVERSION%%.sql
150
%%RASTER%%share/postgresql/extension/postgis--2.2.0--%%PORTVERSION%%.sql
150
share/postgresql/extension/postgis--2.2.0--%%PORTVERSION%%.sql
151
%%RASTER%%share/postgresql/extension/postgis--2.2.1--%%PORTVERSION%%.sql
151
share/postgresql/extension/postgis--2.2.1--%%PORTVERSION%%.sql
152
%%RASTER%%share/postgresql/extension/postgis--2.2.2--%%PORTVERSION%%.sql
152
share/postgresql/extension/postgis--2.2.2--%%PORTVERSION%%.sql
153
%%RASTER%%share/postgresql/extension/postgis--2.2.3--%%PORTVERSION%%.sql
153
share/postgresql/extension/postgis--2.2.3--%%PORTVERSION%%.sql
154
%%RASTER%%share/postgresql/extension/postgis--2.2.4--%%PORTVERSION%%.sql
154
share/postgresql/extension/postgis--2.2.4--%%PORTVERSION%%.sql
155
%%RASTER%%share/postgresql/extension/postgis--2.2.5--%%PORTVERSION%%.sql
155
share/postgresql/extension/postgis--2.2.5--%%PORTVERSION%%.sql
156
%%RASTER%%share/postgresql/extension/postgis--2.2.6--%%PORTVERSION%%.sql
156
share/postgresql/extension/postgis--2.2.6--%%PORTVERSION%%.sql
157
%%RASTER%%share/postgresql/extension/postgis--2.2.7--%%PORTVERSION%%.sql
157
share/postgresql/extension/postgis--2.2.7--%%PORTVERSION%%.sql
158
%%RASTER%%share/postgresql/extension/postgis--2.3.0--%%PORTVERSION%%.sql
158
share/postgresql/extension/postgis--2.2.8--%%PORTVERSION%%.sql
159
%%RASTER%%share/postgresql/extension/postgis--2.3.1--%%PORTVERSION%%.sql
159
share/postgresql/extension/postgis--2.3.0--%%PORTVERSION%%.sql
160
%%RASTER%%share/postgresql/extension/postgis--2.3.2--%%PORTVERSION%%.sql
160
share/postgresql/extension/postgis--2.3.1--%%PORTVERSION%%.sql
161
%%RASTER%%share/postgresql/extension/postgis--2.3.3--%%PORTVERSION%%.sql
161
share/postgresql/extension/postgis--2.3.2--%%PORTVERSION%%.sql
162
%%RASTER%%share/postgresql/extension/postgis--2.3.4--%%PORTVERSION%%.sql
162
share/postgresql/extension/postgis--2.3.3--%%PORTVERSION%%.sql
163
%%RASTER%%share/postgresql/extension/postgis--2.3.5--%%PORTVERSION%%.sql
163
share/postgresql/extension/postgis--2.3.4--%%PORTVERSION%%.sql
164
%%RASTER%%share/postgresql/extension/postgis--2.3.6--%%PORTVERSION%%.sql
164
share/postgresql/extension/postgis--2.3.5--%%PORTVERSION%%.sql
165
%%RASTER%%share/postgresql/extension/postgis--2.3.7--%%PORTVERSION%%.sql
165
share/postgresql/extension/postgis--2.3.6--%%PORTVERSION%%.sql
166
%%RASTER%%share/postgresql/extension/postgis--2.4.0--%%PORTVERSION%%.sql
166
share/postgresql/extension/postgis--2.3.7--%%PORTVERSION%%.sql
167
%%RASTER%%share/postgresql/extension/postgis--2.4.1--%%PORTVERSION%%.sql
167
share/postgresql/extension/postgis--2.3.8--%%PORTVERSION%%.sql
168
%%RASTER%%share/postgresql/extension/postgis--2.4.2--%%PORTVERSION%%.sql
168
share/postgresql/extension/postgis--2.3.9--%%PORTVERSION%%.sql
169
%%RASTER%%share/postgresql/extension/postgis--2.4.3--%%PORTVERSION%%.sql
169
share/postgresql/extension/postgis--2.4.0--%%PORTVERSION%%.sql
170
%%RASTER%%share/postgresql/extension/postgis--2.4.4--%%PORTVERSION%%.sql
170
share/postgresql/extension/postgis--2.4.1--%%PORTVERSION%%.sql
171
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%--%%PORTVERSION%%next.sql
171
share/postgresql/extension/postgis--2.4.2--%%PORTVERSION%%.sql
172
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%.sql
172
share/postgresql/extension/postgis--2.4.3--%%PORTVERSION%%.sql
173
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%--%%PORTVERSION%%.sql
173
share/postgresql/extension/postgis--2.4.4--%%PORTVERSION%%.sql
174
%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%next--%%PORTVERSION%%.sql
174
share/postgresql/extension/postgis--2.4.5--%%PORTVERSION%%.sql
175
%%RASTER%%share/postgresql/extension/postgis--unpackaged--%%PORTVERSION%%.sql
175
share/postgresql/extension/postgis--2.4.6--%%PORTVERSION%%.sql
176
%%RASTER%%share/postgresql/extension/postgis.control
176
share/postgresql/extension/postgis--%%PORTVERSION%%--%%PORTVERSION%%next.sql
177
share/postgresql/extension/postgis--%%PORTVERSION%%.sql
178
share/postgresql/extension/postgis--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
179
share/postgresql/extension/postgis--%%PORTVERSION%%next--%%PORTVERSION%%.sql
180
share/postgresql/extension/postgis--unpackaged--%%PORTVERSION%%.sql
181
share/postgresql/extension/postgis.control
177
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.0--%%PORTVERSION%%.sql
182
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.0--%%PORTVERSION%%.sql
178
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.1--%%PORTVERSION%%.sql
183
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.1--%%PORTVERSION%%.sql
179
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.2--%%PORTVERSION%%.sql
184
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.2--%%PORTVERSION%%.sql
Lines 200-205 share/postgresql/contrib/postgis-2.4/uninstall_postgis.sql Link Here
200
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.5--%%PORTVERSION%%.sql
205
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.5--%%PORTVERSION%%.sql
201
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.6--%%PORTVERSION%%.sql
206
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.6--%%PORTVERSION%%.sql
202
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.7--%%PORTVERSION%%.sql
207
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.7--%%PORTVERSION%%.sql
208
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.8--%%PORTVERSION%%.sql
203
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.0--%%PORTVERSION%%.sql
209
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.0--%%PORTVERSION%%.sql
204
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.1--%%PORTVERSION%%.sql
210
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.1--%%PORTVERSION%%.sql
205
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.2--%%PORTVERSION%%.sql
211
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.2--%%PORTVERSION%%.sql
Lines 208-270 share/postgresql/contrib/postgis-2.4/uninstall_postgis.sql Link Here
208
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.5--%%PORTVERSION%%.sql
214
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.5--%%PORTVERSION%%.sql
209
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.6--%%PORTVERSION%%.sql
215
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.6--%%PORTVERSION%%.sql
210
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.7--%%PORTVERSION%%.sql
216
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.7--%%PORTVERSION%%.sql
217
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.8--%%PORTVERSION%%.sql
218
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.9--%%PORTVERSION%%.sql
211
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.0--%%PORTVERSION%%.sql
219
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.0--%%PORTVERSION%%.sql
212
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.1--%%PORTVERSION%%.sql
220
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.1--%%PORTVERSION%%.sql
213
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.2--%%PORTVERSION%%.sql
221
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.2--%%PORTVERSION%%.sql
214
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.3--%%PORTVERSION%%.sql
222
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.3--%%PORTVERSION%%.sql
215
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.4--%%PORTVERSION%%.sql
223
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.4--%%PORTVERSION%%.sql
224
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.5--%%PORTVERSION%%.sql
225
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.6--%%PORTVERSION%%.sql
216
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%--%%PORTVERSION%%next.sql
226
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%--%%PORTVERSION%%next.sql
217
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%.sql
227
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%.sql
218
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%--%%PORTVERSION%%.sql
228
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
219
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%next--%%PORTVERSION%%.sql
229
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%next--%%PORTVERSION%%.sql
220
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--unpackaged--%%PORTVERSION%%.sql
230
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--unpackaged--%%PORTVERSION%%.sql
221
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal.control
231
%%SFCGAL%%share/postgresql/extension/postgis_sfcgal.control
222
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.0--%%PORTVERSION%%.sql
232
share/postgresql/extension/postgis_tiger_geocoder--2.0.0--%%PORTVERSION%%.sql
223
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.1--%%PORTVERSION%%.sql
233
share/postgresql/extension/postgis_tiger_geocoder--2.0.1--%%PORTVERSION%%.sql
224
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.2--%%PORTVERSION%%.sql
234
share/postgresql/extension/postgis_tiger_geocoder--2.0.2--%%PORTVERSION%%.sql
225
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.3--%%PORTVERSION%%.sql
235
share/postgresql/extension/postgis_tiger_geocoder--2.0.3--%%PORTVERSION%%.sql
226
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.4--%%PORTVERSION%%.sql
236
share/postgresql/extension/postgis_tiger_geocoder--2.0.4--%%PORTVERSION%%.sql
227
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.5--%%PORTVERSION%%.sql
237
share/postgresql/extension/postgis_tiger_geocoder--2.0.5--%%PORTVERSION%%.sql
228
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.6--%%PORTVERSION%%.sql
238
share/postgresql/extension/postgis_tiger_geocoder--2.0.6--%%PORTVERSION%%.sql
229
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.7--%%PORTVERSION%%.sql
239
share/postgresql/extension/postgis_tiger_geocoder--2.0.7--%%PORTVERSION%%.sql
230
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.0--%%PORTVERSION%%.sql
240
share/postgresql/extension/postgis_tiger_geocoder--2.1.0--%%PORTVERSION%%.sql
231
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.1--%%PORTVERSION%%.sql
241
share/postgresql/extension/postgis_tiger_geocoder--2.1.1--%%PORTVERSION%%.sql
232
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.2--%%PORTVERSION%%.sql
242
share/postgresql/extension/postgis_tiger_geocoder--2.1.2--%%PORTVERSION%%.sql
233
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.3--%%PORTVERSION%%.sql
243
share/postgresql/extension/postgis_tiger_geocoder--2.1.3--%%PORTVERSION%%.sql
234
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.4--%%PORTVERSION%%.sql
244
share/postgresql/extension/postgis_tiger_geocoder--2.1.4--%%PORTVERSION%%.sql
235
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.5--%%PORTVERSION%%.sql
245
share/postgresql/extension/postgis_tiger_geocoder--2.1.5--%%PORTVERSION%%.sql
236
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.6--%%PORTVERSION%%.sql
246
share/postgresql/extension/postgis_tiger_geocoder--2.1.6--%%PORTVERSION%%.sql
237
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.7--%%PORTVERSION%%.sql
247
share/postgresql/extension/postgis_tiger_geocoder--2.1.7--%%PORTVERSION%%.sql
238
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.8--%%PORTVERSION%%.sql
248
share/postgresql/extension/postgis_tiger_geocoder--2.1.8--%%PORTVERSION%%.sql
239
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.9--%%PORTVERSION%%.sql
249
share/postgresql/extension/postgis_tiger_geocoder--2.1.9--%%PORTVERSION%%.sql
240
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.0--%%PORTVERSION%%.sql
250
share/postgresql/extension/postgis_tiger_geocoder--2.2.0--%%PORTVERSION%%.sql
241
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.1--%%PORTVERSION%%.sql
251
share/postgresql/extension/postgis_tiger_geocoder--2.2.1--%%PORTVERSION%%.sql
242
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.2--%%PORTVERSION%%.sql
252
share/postgresql/extension/postgis_tiger_geocoder--2.2.2--%%PORTVERSION%%.sql
243
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.3--%%PORTVERSION%%.sql
253
share/postgresql/extension/postgis_tiger_geocoder--2.2.3--%%PORTVERSION%%.sql
244
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.4--%%PORTVERSION%%.sql
254
share/postgresql/extension/postgis_tiger_geocoder--2.2.4--%%PORTVERSION%%.sql
245
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.5--%%PORTVERSION%%.sql
255
share/postgresql/extension/postgis_tiger_geocoder--2.2.5--%%PORTVERSION%%.sql
246
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.6--%%PORTVERSION%%.sql
256
share/postgresql/extension/postgis_tiger_geocoder--2.2.6--%%PORTVERSION%%.sql
247
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.7--%%PORTVERSION%%.sql
257
share/postgresql/extension/postgis_tiger_geocoder--2.2.7--%%PORTVERSION%%.sql
248
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.0--%%PORTVERSION%%.sql
258
share/postgresql/extension/postgis_tiger_geocoder--2.2.8--%%PORTVERSION%%.sql
249
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.1--%%PORTVERSION%%.sql
259
share/postgresql/extension/postgis_tiger_geocoder--2.3.0--%%PORTVERSION%%.sql
250
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.2--%%PORTVERSION%%.sql
260
share/postgresql/extension/postgis_tiger_geocoder--2.3.1--%%PORTVERSION%%.sql
251
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.3--%%PORTVERSION%%.sql
261
share/postgresql/extension/postgis_tiger_geocoder--2.3.2--%%PORTVERSION%%.sql
252
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.4--%%PORTVERSION%%.sql
262
share/postgresql/extension/postgis_tiger_geocoder--2.3.3--%%PORTVERSION%%.sql
253
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.5--%%PORTVERSION%%.sql
263
share/postgresql/extension/postgis_tiger_geocoder--2.3.4--%%PORTVERSION%%.sql
254
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.6--%%PORTVERSION%%.sql
264
share/postgresql/extension/postgis_tiger_geocoder--2.3.5--%%PORTVERSION%%.sql
255
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.7--%%PORTVERSION%%.sql
265
share/postgresql/extension/postgis_tiger_geocoder--2.3.6--%%PORTVERSION%%.sql
256
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.0--%%PORTVERSION%%.sql
266
share/postgresql/extension/postgis_tiger_geocoder--2.3.7--%%PORTVERSION%%.sql
257
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.1--%%PORTVERSION%%.sql
267
share/postgresql/extension/postgis_tiger_geocoder--2.3.8--%%PORTVERSION%%.sql
258
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.2--%%PORTVERSION%%.sql
268
share/postgresql/extension/postgis_tiger_geocoder--2.3.9--%%PORTVERSION%%.sql
259
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.3--%%PORTVERSION%%.sql
269
share/postgresql/extension/postgis_tiger_geocoder--2.4.0--%%PORTVERSION%%.sql
260
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.4--%%PORTVERSION%%.sql
270
share/postgresql/extension/postgis_tiger_geocoder--2.4.1--%%PORTVERSION%%.sql
261
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%--%%PORTVERSION%%next.sql
271
share/postgresql/extension/postgis_tiger_geocoder--2.4.2--%%PORTVERSION%%.sql
262
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%.sql
272
share/postgresql/extension/postgis_tiger_geocoder--2.4.3--%%PORTVERSION%%.sql
263
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%--%%PORTVERSION%%.sql
273
share/postgresql/extension/postgis_tiger_geocoder--2.4.4--%%PORTVERSION%%.sql
264
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%next--%%PORTVERSION%%.sql
274
share/postgresql/extension/postgis_tiger_geocoder--2.4.5--%%PORTVERSION%%.sql
265
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--unpackaged--%%PORTVERSION%%.sql
275
share/postgresql/extension/postgis_tiger_geocoder--2.4.6--%%PORTVERSION%%.sql
266
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder.control
276
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%--%%PORTVERSION%%next.sql
267
%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder.sql
277
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%.sql
278
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
279
share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%next--%%PORTVERSION%%.sql
280
share/postgresql/extension/postgis_tiger_geocoder--unpackaged--%%PORTVERSION%%.sql
281
share/postgresql/extension/postgis_tiger_geocoder.control
282
share/postgresql/extension/postgis_tiger_geocoder.sql
268
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.0--%%PORTVERSION%%.sql
283
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.0--%%PORTVERSION%%.sql
269
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.1--%%PORTVERSION%%.sql
284
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.1--%%PORTVERSION%%.sql
270
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.2--%%PORTVERSION%%.sql
285
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.2--%%PORTVERSION%%.sql
Lines 291-296 share/postgresql/contrib/postgis-2.4/uninstall_postgis.sql Link Here
291
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.5--%%PORTVERSION%%.sql
306
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.5--%%PORTVERSION%%.sql
292
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.6--%%PORTVERSION%%.sql
307
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.6--%%PORTVERSION%%.sql
293
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.7--%%PORTVERSION%%.sql
308
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.7--%%PORTVERSION%%.sql
309
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.8--%%PORTVERSION%%.sql
294
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.0--%%PORTVERSION%%.sql
310
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.0--%%PORTVERSION%%.sql
295
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.1--%%PORTVERSION%%.sql
311
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.1--%%PORTVERSION%%.sql
296
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.2--%%PORTVERSION%%.sql
312
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.2--%%PORTVERSION%%.sql
Lines 299-312 share/postgresql/contrib/postgis-2.4/uninstall_postgis.sql Link Here
299
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.5--%%PORTVERSION%%.sql
315
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.5--%%PORTVERSION%%.sql
300
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.6--%%PORTVERSION%%.sql
316
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.6--%%PORTVERSION%%.sql
301
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.7--%%PORTVERSION%%.sql
317
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.7--%%PORTVERSION%%.sql
318
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.8--%%PORTVERSION%%.sql
319
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.9--%%PORTVERSION%%.sql
302
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.0--%%PORTVERSION%%.sql
320
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.0--%%PORTVERSION%%.sql
303
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.1--%%PORTVERSION%%.sql
321
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.1--%%PORTVERSION%%.sql
304
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.2--%%PORTVERSION%%.sql
322
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.2--%%PORTVERSION%%.sql
305
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.3--%%PORTVERSION%%.sql
323
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.3--%%PORTVERSION%%.sql
306
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.4--%%PORTVERSION%%.sql
324
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.4--%%PORTVERSION%%.sql
325
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.5--%%PORTVERSION%%.sql
326
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.6--%%PORTVERSION%%.sql
307
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%--%%PORTVERSION%%next.sql
327
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%--%%PORTVERSION%%next.sql
308
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%.sql
328
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%.sql
309
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%--%%PORTVERSION%%.sql
329
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%dev--%%PORTVERSION%%.sql
310
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%next--%%PORTVERSION%%.sql
330
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%next--%%PORTVERSION%%.sql
311
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--unpackaged--%%PORTVERSION%%.sql
331
%%TOPOLOGY%%share/postgresql/extension/postgis_topology--unpackaged--%%PORTVERSION%%.sql
312
%%TOPOLOGY%%share/postgresql/extension/postgis_topology.control
332
%%TOPOLOGY%%share/postgresql/extension/postgis_topology.control

Return to bug 236556