Date: Tue, 27 Jun 2017 08:03:09 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444445 - in head/math: . R-cran-sf Message-ID: <201706270803.v5R839L7083914@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Tue Jun 27 08:03:09 2017 New Revision: 444445 URL: https://svnweb.freebsd.org/changeset/ports/444445 Log: - Add new port math/R-cran-sf Support for simple features, a standardized way to encode spatial vector data. Binds to GDAL for reading and writing data, to GEOS for geometrical operations, and to Proj.4 for projection conversions and datum transformations. WWW: https://cran.r-project.org/web/packages/sf/ Submitted by: Rainer Hurling <rhurlin_AT_gwdg_DOT_de> (via private e-mail) Added: head/math/R-cran-sf/ head/math/R-cran-sf/Makefile (contents, props changed) head/math/R-cran-sf/distinfo (contents, props changed) head/math/R-cran-sf/pkg-descr (contents, props changed) Modified: head/math/Makefile (contents, props changed) Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Jun 27 07:18:02 2017 (r444444) +++ head/math/Makefile Tue Jun 27 08:03:09 2017 (r444445) @@ -67,6 +67,7 @@ SUBDIR += R-cran-quantreg SUBDIR += R-cran-rgenoud SUBDIR += R-cran-sandwich + SUBDIR += R-cran-sf SUBDIR += R-cran-sm SUBDIR += R-cran-sp SUBDIR += R-cran-spdep Added: head/math/R-cran-sf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sf/Makefile Tue Jun 27 08:03:09 2017 (r444445) @@ -0,0 +1,26 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= sf +DISTVERSION= 0.5-1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Simple Features for R + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-Rcpp>0:devel/R-cran-Rcpp \ + R-cran-DBI>0:databases/R-cran-DBI \ + R-cran-units>=0.4:math/R-cran-units \ + R-cran-magrittr>0:devel/R-cran-magrittr +LIB_DEPENDS= libgdal.so:graphics/gdal \ + libgeos.so:graphics/geos \ + libproj.so:graphics/proj +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> Added: head/math/R-cran-sf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sf/distinfo Tue Jun 27 08:03:09 2017 (r444445) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498443880 +SHA256 (sf_0.5-1.tar.gz) = af7fc4046c999c37e607eeaf3cd386ed58f006e2da64bfa355b15f302f52e7fb +SIZE (sf_0.5-1.tar.gz) = 4073881 Added: head/math/R-cran-sf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sf/pkg-descr Tue Jun 27 08:03:09 2017 (r444445) @@ -0,0 +1,6 @@ +Support for simple features, a standardized way to encode spatial +vector data. Binds to GDAL for reading and writing data, to GEOS +for geometrical operations, and to Proj.4 for projection conversions +and datum transformations. + +WWW: https://cran.r-project.org/web/packages/sf/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706270803.v5R839L7083914>