From owner-svn-ports-head@freebsd.org Sat May 16 10:51:57 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EA8D42ED2B1; Sat, 16 May 2020 10:51:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49PMXr6yTpz4GwR; Sat, 16 May 2020 10:51:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A1911CB12; Sat, 16 May 2020 10:51:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04GApt4K014569; Sat, 16 May 2020 10:51:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04GApt6X014566; Sat, 16 May 2020 10:51:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202005161051.04GApt6X014566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 16 May 2020 10:51:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535394 - in head/graphics/gdal: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/graphics/gdal: . files X-SVN-Commit-Revision: 535394 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 May 2020 10:51:58 -0000 Author: sunpoet Date: Sat May 16 10:51:54 2020 New Revision: 535394 URL: https://svnweb.freebsd.org/changeset/ports/535394 Log: Update to 3.1.0 Changes: https://github.com/OSGeo/gdal/blob/release/3.1/gdal/NEWS PR: 246392 Exp-run by: antoine Deleted: head/graphics/gdal/files/patch-scripts-GNUmakefile Modified: head/graphics/gdal/Makefile head/graphics/gdal/distinfo head/graphics/gdal/pkg-plist Modified: head/graphics/gdal/Makefile ============================================================================== --- head/graphics/gdal/Makefile Sat May 16 10:51:49 2020 (r535393) +++ head/graphics/gdal/Makefile Sat May 16 10:51:54 2020 (r535394) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gdal -PORTVERSION= 3.0.4 -PORTREVISION= 4 +PORTVERSION= 3.1.0 CATEGORIES= graphics geography MASTER_SITES= https://download.osgeo.org/gdal/${PORTVERSION}/ \ LOCAL/sunpoet @@ -35,7 +34,7 @@ PCRE_DESC= Regular expression support for SQLite USES= compiler:c++11-lang gmake iconv jpeg localbase pkgconfig ssl tar:xz CFLAGS+= -fPIC -CONFIGURE_ARGS= --datadir=${DATADIR} \ +CONFIGURE_ARGS= --datadir=${PREFIX}/share \ --enable-static=yes \ --with-geotiff=yes \ --with-gif=yes \ @@ -102,7 +101,7 @@ JASPER_LIB_DEPENDS= libjasper.so:graphics/jasper KML_CONFIGURE_WITH= libkml KML_LIB_DEPENDS= libkmlbase.so:science/libkml LIBXML2_CONFIGURE_OFF= --with-xml2=no -LIBXML2_CONFIGURE_ON= --with-xml2=${LOCALBASE}/bin/xml2-config +LIBXML2_CONFIGURE_ON= --with-xml2=yes LIBXML2_LIB_DEPENDS= libxml2.so:textproc/libxml2 MYSQL_CONFIGURE_OFF= --with-mysql=no MYSQL_CONFIGURE_ON= --with-mysql=${LOCALBASE}/bin/mysql_config @@ -151,9 +150,10 @@ post-patch: @${RM} -r ${WRKSRC}/ogr/ogrsf_frmts/geojson/libjson/ post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d + ${INSTALL_DATA} ${WRKSRC}/scripts/gdal-bash-completion.sh ${STAGEDIR}${PREFIX}/etc/bash_completion.d cd ${WRKSRC}/ && ${INSTALL_DATA} ${HEADER_FILES} ${STAGEDIR}${PREFIX}/include/ ${INSTALL_DATA} ${WRKSRC}/libgdal.a ${STAGEDIR}${PREFIX}/lib/ - ${TOUCH} ${STAGEDIR}${PREFIX}/lib/gdalplugins/.keepme ${INSTALL_DATA} ${WRKSRC}/GDALmake.opt ${STAGEDIR}${DATADIR}/ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgdal.so.${PORTVERSION} Modified: head/graphics/gdal/distinfo ============================================================================== --- head/graphics/gdal/distinfo Sat May 16 10:51:49 2020 (r535393) +++ head/graphics/gdal/distinfo Sat May 16 10:51:54 2020 (r535394) @@ -1,3 +1,3 @@ -TIMESTAMP = 1580562263 -SHA256 (gdal-3.0.4.tar.xz) = 5569a4daa1abcbba47a9d535172fc335194d9214fdb96cd0f139bb57329ae277 -SIZE (gdal-3.0.4.tar.xz) = 8696684 +TIMESTAMP = 1588929131 +SHA256 (gdal-3.1.0.tar.xz) = e754a22242ccbec731aacdb2333b567d4c95b9b02d3ba1ea12f70508d244fcda +SIZE (gdal-3.1.0.tar.xz) = 12076312 Modified: head/graphics/gdal/pkg-plist ============================================================================== --- head/graphics/gdal/pkg-plist Sat May 16 10:51:49 2020 (r535393) +++ head/graphics/gdal/pkg-plist Sat May 16 10:51:54 2020 (r535394) @@ -3,6 +3,7 @@ bin/gdal_contour bin/gdal_grid bin/gdal_rasterize bin/gdal_translate +bin/gdal_viewshed bin/gdaladdo bin/gdalbuildvrt bin/gdaldem @@ -10,6 +11,8 @@ bin/gdalenhance bin/gdalinfo bin/gdallocationinfo bin/gdalmanage +bin/gdalmdiminfo +bin/gdalmdimtranslate bin/gdalserver bin/gdalsrsinfo bin/gdaltindex @@ -100,11 +103,12 @@ include/ogr_geometry.h include/ogr_p.h include/ogr_spatialref.h include/ogr_srs_api.h +include/ogr_swq.h include/ogrsf_frmts.h include/rawdataset.h include/thinplatespline.h include/vrtdataset.h -lib/gdalplugins/.keepme +@dir lib/gdalplugins lib/libgdal.a lib/libgdal.so lib/libgdal.so.3 @@ -122,6 +126,7 @@ libdata/pkgconfig/gdal.pc %%DATADIR%%/epsg.wkt %%DATADIR%%/esri_StatePlane_extra.wkt %%DATADIR%%/gdalicon.png +%%DATADIR%%/gdalmdiminfo_output.schema.json %%DATADIR%%/gdalvrt.xsd %%DATADIR%%/gml_registry.xml %%DATADIR%%/gmlasconf.xml @@ -186,3 +191,4 @@ libdata/pkgconfig/gdal.pc %%DATADIR%%/trailer.dxf %%DATADIR%%/vdv452.xml %%DATADIR%%/vdv452.xsd +%%DATADIR%%/vicar.json