Index: postgis25/Makefile =================================================================== --- postgis25/Makefile (nonexistent) +++ postgis25/Makefile (working copy) @@ -0,0 +1,97 @@ +# Created by: Loïc BARTOLETTI +# $FreeBSD$ + +PORTNAME= postgis +PORTVERSION= 2.5.1 +CATEGORIES= databases geography +MASTER_SITES= https://download.osgeo.org/postgis/source/ +PKGNAMESUFFIX= 25 + +MAINTAINER= vvelox@vvelox.net +COMMENT= Geographic objects support for PostgreSQL databases + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libproj.so:graphics/proj \ + libgeos.so:graphics/geos \ + libjson-c.so:devel/json-c + +USES= compiler:c++11-lang gettext gmake iconv:wchar_t libtool:keepla \ + perl5 pgsql pkgconfig shebangfix + +CONFLICTS_INSTALL= postgis20 postgis21 postgis22 postgis23 postgis + +LLD_UNSAFE= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} +SHEBANG_FILES= extensions/address_standardizer/*.pl raster/test/regress/*.pl \ + raster/test/regress/loader/*.pl regress/run_test.pl \ + utils/postgis_restore.pl.in utils/*.pl +USE_GNOME= libxml2 +USE_LDCONFIG= yes +USE_PERL5= build +WANT_PGSQL= lib server + +OPTIONS_DEFINE= LOADERGUI RASTER TOPOLOGY SFCGAL ADDRSTD +OPTIONS_DEFAULT= TOPOLOGY ADDRSTD SFCGAL +OPTIONS_SUB= yes + +PLIST_SUB+= PORTVERSION=${PORTVERSION} + +LOADERGUI_DESC= Enable shp2pgsql-gui +RASTER_DESC= Raster support +TOPOLOGY_DESC= Topology support +SFCGAL_DESC= Enable sfcgal +ADDRSTD_DESC= Enable address standardizer + +LOADERGUI_CONFIGURE_WITH= gui +LOADERGUI_USE= GNOME=gtk20 +RASTER_USES= alias +RASTER_CONFIGURE_WITH= raster +RASTER_LIB_DEPENDS= libgdal.so:graphics/gdal +RASTER_CONFIGURE_ON= --with-gdalconfig=${LOCALBASE}/bin/gdal-config +TOPOLOGY_CONFIGURE_WITH= topology +SFCGAL_LIB_DEPENDS= libSFCGAL.so:databases/sfcgal +SFCGAL_CONFIGURE_ON= --with-sfcgal=${LOCALBASE}/bin/sfcgal-config +SFCGAL_CONFIGURE_OFF= --without-sfcgal +SFCGAL_IMPLIES= RASTER +ADDRSTD_CONFIGURE_WITH= address-standardizer +ADDRSTD_IMPLIES= RASTER +ADDRSTD_LIB_DEPENDS= libpcre.so:devel/pcre +ADDRSTD_VARS= WANT_PGSQL+=contrib + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +.include + +pre-configure: + @${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL + +post-install: + ${MKDIR} ${STAGEDIR}${DATADIR}/tiger_geocoder + (cd ${WRKSRC}/extras/tiger_geocoder && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/tiger_geocoder/ "! ( -name *\.orig -o -name *\.bak )" ) + ${MKDIR} ${STAGEDIR}${DATADIR}/utils + (cd ${WRKSRC}/utils/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/utils/ "! ( -name *\.orig -o -name *\.bak -o -name Makefile -o -name *\.in -o -name uninstall_script )" ) + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/shp2pgsql + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pgsql2shp +.if ${PORT_OPTIONS:MLOADERGUI} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/shp2pgsql-gui +.else + ${RM} ${STAGEDIR}${PREFIX}/bin/shp2pgsql-gui +.endif + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblwgeom-2.5.so.0.0.0 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/postgis-2.5.so +.if ${PORT_OPTIONS:MTOPOLOGY} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/postgis_topology-2.5.so +.endif +.if ${PORT_OPTIONS:MRASTER} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/raster2pgsql + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/rtpostgis-2.5.so +.endif +.if ${PORT_OPTIONS:MADDRSTD} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/address_standardizer.so +.endif + +.include Property changes on: postgis25/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: postgis25/distinfo =================================================================== --- postgis25/distinfo (nonexistent) +++ postgis25/distinfo (working copy) @@ -0,0 +1,3 @@ +TIMESTAMP = 1547210899 +SHA256 (postgis-2.5.1.tar.gz) = fb137056f43aae0e9d475dc5b7934eccce466f86f5ceeb69ec8b5cea26817a91 +SIZE (postgis-2.5.1.tar.gz) = 16041872 Property changes on: postgis25/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: postgis25/pkg-descr =================================================================== --- postgis25/pkg-descr (nonexistent) +++ postgis25/pkg-descr (working copy) @@ -0,0 +1,15 @@ +PostGIS adds support for geographic objects to the PostgreSQL +object-relational database. In effect, PostGIS "spatially enables" +the PostgreSQL server, allowing it to be used as a backend spatial +database for geographic information systems (GIS), much like ESRI's +SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS +"Simple Features Specification for SQL" and has been certified as +compliant with the "Types and Functions" profile. + +PostGIS development was started by Refractions Research as a project +in open source spatial database technology. PostGIS is released +under the GNU General Public License. PostGIS continues to be +developed by a group of contributors led by a Project Steering +Committee and new features continue to be added. + +WWW: https://postgis.net/ Property changes on: postgis25/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: postgis25/pkg-install =================================================================== --- postgis25/pkg-install (nonexistent) +++ postgis25/pkg-install (working copy) @@ -0,0 +1,37 @@ +#!/bin/sh + +msg(){ + echo " + ======================= GEOS Support Notice ======================== + In order to use the GEOS support, you may need to specially compile + your version of PostgreSQL to link the C++ runtime library. + To do this, invoke the PostgreSQL Makefile script this way: + + on csh shell: + + setenv LDFLAGS -lstdc++ + make + + on sh or bash shell: + + export LDFLAGS=-lstdc++ + make + + The initial LDFLAGS variable is passed through to the Makefile and + adds the C++ library to the linking stage. + + ==================================================================== +" +if [ -n "${PACKAGE_BUILDING}" ]; then + sleep 10 +fi + + +} + +case "$2" in + PRE-INSTALL) + msg ;; + MESSAGE) + msg ;; +esac Property changes on: postgis25/pkg-install ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: postgis25/pkg-plist =================================================================== --- postgis25/pkg-plist (nonexistent) +++ postgis25/pkg-plist (working copy) @@ -0,0 +1,328 @@ +bin/pgsql2shp +%%RASTER%%bin/raster2pgsql +bin/shp2pgsql +%%LOADERGUI%%bin/shp2pgsql-gui +include/liblwgeom.h +include/liblwgeom_topo.h +lib/liblwgeom-2.5.so.0 +lib/liblwgeom-2.5.so.0.0.0 +lib/liblwgeom.a +lib/liblwgeom.la +lib/liblwgeom.so +%%ADDRSTD%%lib/postgresql/address_standardizer.so +lib/postgresql/postgis-2.5.so +%%TOPOLOGY%%lib/postgresql/postgis_topology-2.5.so +%%RASTER%%lib/postgresql/rtpostgis-2.5.so +%%ADDRSTD%%share/doc/postgresql/extension/README.address_standardizer +%%DATADIR%%/tiger_geocoder/README +%%DATADIR%%/tiger_geocoder/create_geocode.bat +%%DATADIR%%/tiger_geocoder/create_geocode.sh +%%DATADIR%%/tiger_geocoder/create_geocode.sql +%%DATADIR%%/tiger_geocoder/geocode/census_tracts_functions.sql +%%DATADIR%%/tiger_geocoder/geocode/geocode.sql +%%DATADIR%%/tiger_geocoder/geocode/geocode_address.sql +%%DATADIR%%/tiger_geocoder/geocode/geocode_intersection.sql +%%DATADIR%%/tiger_geocoder/geocode/geocode_location.sql +%%DATADIR%%/tiger_geocoder/geocode/includes_address.sql +%%DATADIR%%/tiger_geocoder/geocode/interpolate_from_address.sql +%%DATADIR%%/tiger_geocoder/geocode/other_helper_functions.sql +%%DATADIR%%/tiger_geocoder/geocode/rate_attributes.sql +%%DATADIR%%/tiger_geocoder/geocode/reverse_geocode.sql +%%DATADIR%%/tiger_geocoder/geocode_settings.sql +%%DATADIR%%/tiger_geocoder/legacy_import/tiger2008/import_tiger_shps.sh +%%DATADIR%%/tiger_geocoder/normalize/count_words.sql +%%DATADIR%%/tiger_geocoder/normalize/end_soundex.sql +%%DATADIR%%/tiger_geocoder/normalize/get_last_words.sql +%%DATADIR%%/tiger_geocoder/normalize/location_extract.sql +%%DATADIR%%/tiger_geocoder/normalize/location_extract_countysub_exact.sql +%%DATADIR%%/tiger_geocoder/normalize/location_extract_countysub_fuzzy.sql +%%DATADIR%%/tiger_geocoder/normalize/location_extract_place_exact.sql +%%DATADIR%%/tiger_geocoder/normalize/location_extract_place_fuzzy.sql +%%DATADIR%%/tiger_geocoder/normalize/normalize_address.sql +%%DATADIR%%/tiger_geocoder/normalize/pprint_addy.sql +%%DATADIR%%/tiger_geocoder/normalize/state_extract.sql +%%DATADIR%%/tiger_geocoder/pagc_normalize/pagc_normalize_address.sql +%%DATADIR%%/tiger_geocoder/pagc_normalize/pagc_tables.sql +%%DATADIR%%/tiger_geocoder/regress/geocode_regress +%%DATADIR%%/tiger_geocoder/regress/geocode_regress.sql +%%DATADIR%%/tiger_geocoder/regress/normalize_address_desired_regress +%%DATADIR%%/tiger_geocoder/regress/normalize_address_regress +%%DATADIR%%/tiger_geocoder/regress/normalize_address_regress.sql +%%DATADIR%%/tiger_geocoder/regress/pagc_normalize_address_desired_regress +%%DATADIR%%/tiger_geocoder/regress/pagc_normalize_address_regress +%%DATADIR%%/tiger_geocoder/regress/pagc_normalize_address_regress.sql +%%DATADIR%%/tiger_geocoder/regress/regress.sql +%%DATADIR%%/tiger_geocoder/regress/reverse_geocode_regress +%%DATADIR%%/tiger_geocoder/regress/reverse_geocode_regress.sql +%%DATADIR%%/tiger_geocoder/tables/lookup_tables_2011.sql +%%DATADIR%%/tiger_geocoder/tiger_loader_2011.sql +%%DATADIR%%/tiger_geocoder/tiger_loader_2012.sql +%%DATADIR%%/tiger_geocoder/tiger_loader_2013.sql +%%DATADIR%%/tiger_geocoder/tiger_loader_2014.sql +%%DATADIR%%/tiger_geocoder/tiger_loader_2015.sql +%%DATADIR%%/tiger_geocoder/tiger_loader_2016.sql +%%DATADIR%%/tiger_geocoder/tiger_loader_2017.sql +%%DATADIR%%/tiger_geocoder/topology/README +%%DATADIR%%/tiger_geocoder/topology/tiger_topology_loader.sql +%%DATADIR%%/tiger_geocoder/upgrade_geocode.sql +%%DATADIR%%/tiger_geocoder/upgrade_geocoder.bat +%%DATADIR%%/tiger_geocoder/upgrade_geocoder.sh +%%DATADIR%%/tiger_geocoder/utility/cull_null.sql +%%DATADIR%%/tiger_geocoder/utility/levenshtein_ignore_case.sql +%%DATADIR%%/tiger_geocoder/utility/nullable_levenshtein.sql +%%DATADIR%%/tiger_geocoder/utility/set_search_path.sql +%%DATADIR%%/tiger_geocoder/utility/standardize_tiger_data.sql +%%DATADIR%%/tiger_geocoder/utility/utmzone.sql +%%DATADIR%%/utils/README +%%DATADIR%%/utils/check_all_upgrades.sh +%%DATADIR%%/utils/create_spatial_ref_sys_config_dump.pl +%%DATADIR%%/utils/create_undef.pl +%%DATADIR%%/utils/create_unpackaged.pl +%%DATADIR%%/utils/postgis_proc_set_search_path.pl +%%DATADIR%%/utils/postgis_proc_upgrade.pl +%%DATADIR%%/utils/postgis_restore.pl +%%DATADIR%%/utils/profile_intersects.pl +%%DATADIR%%/utils/read_scripts_version.pl +%%DATADIR%%/utils/svn_repo_revision.pl +%%DATADIR%%/utils/test_estimation.pl +%%DATADIR%%/utils/test_geography_estimation.pl +%%DATADIR%%/utils/test_geography_joinestimation.pl +%%DATADIR%%/utils/test_joinestimation.pl +%%LOADERGUI%%share/postgresql/applications/shp2pgsql-gui.desktop +share/postgresql/contrib/postgis-2.5/legacy.sql +share/postgresql/contrib/postgis-2.5/legacy_gist.sql +share/postgresql/contrib/postgis-2.5/legacy_minimal.sql +share/postgresql/contrib/postgis-2.5/postgis.sql +share/postgresql/contrib/postgis-2.5/postgis_comments.sql +share/postgresql/contrib/postgis-2.5/postgis_for_extension.sql +share/postgresql/contrib/postgis-2.5/postgis_proc_set_search_path.sql +share/postgresql/contrib/postgis-2.5/postgis_restore.pl +share/postgresql/contrib/postgis-2.5/postgis_upgrade.sql +share/postgresql/contrib/postgis-2.5/postgis_upgrade_for_extension.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/raster_comments.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/rtpostgis.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/rtpostgis_for_extension.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/rtpostgis_legacy.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/rtpostgis_proc_set_search_path.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/rtpostgis_upgrade.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/rtpostgis_upgrade_for_extension.sql +%%SFCGAL%%share/postgresql/contrib/postgis-2.5/sfcgal.sql +%%SFCGAL%%share/postgresql/contrib/postgis-2.5/sfcgal_comments.sql +%%SFCGAL%%share/postgresql/contrib/postgis-2.5/sfcgal_upgrade.sql +share/postgresql/contrib/postgis-2.5/spatial_ref_sys.sql +%%TOPOLOGY%%share/postgresql/contrib/postgis-2.5/topology.sql +%%TOPOLOGY%%share/postgresql/contrib/postgis-2.5/topology_comments.sql +%%TOPOLOGY%%share/postgresql/contrib/postgis-2.5/topology_upgrade.sql +share/postgresql/contrib/postgis-2.5/uninstall_legacy.sql +share/postgresql/contrib/postgis-2.5/uninstall_postgis.sql +%%RASTER%%share/postgresql/contrib/postgis-2.5/uninstall_rtpostgis.sql +%%SFCGAL%%share/postgresql/contrib/postgis-2.5/uninstall_sfcgal.sql +%%TOPOLOGY%%share/postgresql/contrib/postgis-2.5/uninstall_topology.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer--1.0--%%PORTVERSION%%.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%--%%PORTVERSION%%next.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer--%%PORTVERSION%%next--%%PORTVERSION%%.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer.control +%%ADDRSTD%%share/postgresql/extension/address_standardizer.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us--%%PORTVERSION%%--%%PORTVERSION%%next.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us--%%PORTVERSION%%.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us--%%PORTVERSION%%next--%%PORTVERSION%%.sql +%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.control +%%ADDRSTD%%share/postgresql/extension/address_standardizer_data_us.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.0.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.8--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.1.9--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.2.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.3.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.4.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.4.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.4.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.4.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.4.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.4.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--2.4.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%--%%PORTVERSION%%next.sql +%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--%%PORTVERSION%%next--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis--unpackaged--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis.control +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.0--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.1--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.2--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.3--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.4--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.5--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.6--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.0.7--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.0--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.1--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.2--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.3--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.4--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.5--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.6--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.7--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.8--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.1.9--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.0--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.1--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.2--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.3--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.4--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.5--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.6--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.2.7--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.0--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.1--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.2--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.3--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.4--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.5--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.6--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.3.7--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.0--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.1--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.2--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.3--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.4--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.5--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.4.6--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--2.5.0--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%--%%PORTVERSION%%next.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--%%PORTVERSION%%next--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal--unpackaged--%%PORTVERSION%%.sql +%%SFCGAL%%share/postgresql/extension/postgis_sfcgal.control +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.0.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.8--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.1.9--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.2.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.3.7--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.1--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.2--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.3--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.4--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.5--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.4.6--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--2.5.0--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%--%%PORTVERSION%%next.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--%%PORTVERSION%%next--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder--unpackaged--%%PORTVERSION%%.sql +%%RASTER%%share/postgresql/extension/postgis_tiger_geocoder.control +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.0--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.1--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.2--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.3--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.4--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.5--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.6--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.0.7--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.0--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.1--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.2--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.3--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.4--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.5--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.6--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.7--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.8--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.1.9--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.0--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.1--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.2--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.3--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.4--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.5--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.6--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.2.7--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.0--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.1--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.2--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.3--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.4--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.5--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.6--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.3.7--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.0--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.1--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.2--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.3--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.4--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.5--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.4.6--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--2.5.0--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%--%%PORTVERSION%%next.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--%%PORTVERSION%%next--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology--unpackaged--%%PORTVERSION%%.sql +%%TOPOLOGY%%share/postgresql/extension/postgis_topology.control +%%LOADERGUI%%share/postgresql/icons/hicolor/16x16/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/22x22/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/24x24/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/32x32/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/36x36/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/40x40/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/42x42/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/48x48/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/64x64/apps/shp2pgsql-gui.png +%%LOADERGUI%%share/postgresql/icons/hicolor/8x8/apps/shp2pgsql-gui.png Property changes on: postgis25/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property