diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2018-04-27 03:25:17 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2018-04-27 03:25:17 +0000 |
commit | b2c1bf29a67aef212e0e10577aa18731325bd16e (patch) | |
tree | 637eb6f8ecd4961fac275403ec5494828d53cdbe /databases/R-cran-RPostgreSQL | |
parent | a8ff5c20aa83ff0032ecd1306274ae4d2a2a7190 (diff) | |
download | freebsd-ports-b2c1bf29a67aef212e0e10577aa18731325bd16e.zip |
- Add new port: databases/R-cran-RPostgreSQL
Database interface and 'PostgreSQL' driver for 'R'. This package
provides a Database Interface 'DBI' compliant driver for 'R' to
access 'PostgreSQL' database systems. In order to build and install
this package from source, 'PostgreSQL' itself must be present your
system to provide 'PostgreSQL' functionality via its libraries and
header files. These files are provided as 'postgresql-devel' package
under some Linux distributions. On 'macOS' and 'Microsoft Windows'
system the attached 'libpq' library source will be used.
WWW: https://cran.r-project.org/web/packages/RPostgreSQL/
Diffstat (limited to 'databases/R-cran-RPostgreSQL')
-rw-r--r-- | databases/R-cran-RPostgreSQL/Makefile | 20 | ||||
-rw-r--r-- | databases/R-cran-RPostgreSQL/distinfo | 3 | ||||
-rw-r--r-- | databases/R-cran-RPostgreSQL/pkg-descr | 10 |
3 files changed, 33 insertions, 0 deletions
diff --git a/databases/R-cran-RPostgreSQL/Makefile b/databases/R-cran-RPostgreSQL/Makefile new file mode 100644 index 000000000000..6ffe870865c9 --- /dev/null +++ b/databases/R-cran-RPostgreSQL/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= RPostgreSQL +DISTVERSION= 0.6-2 +CATEGORIES= databases +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= R Interface to the 'PostgreSQL' Database System + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cran:auto-plist,compiles pgsql + +CRAN_DEPENDS= R-cran-DBI>=0.3:databases/R-cran-DBI +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +.include <bsd.port.mk> diff --git a/databases/R-cran-RPostgreSQL/distinfo b/databases/R-cran-RPostgreSQL/distinfo new file mode 100644 index 000000000000..7921e69e0dac --- /dev/null +++ b/databases/R-cran-RPostgreSQL/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1524790997 +SHA256 (RPostgreSQL_0.6-2.tar.gz) = 080118647208bfa2621bcaac0d324891cc513e07618fa22e3c50ec2050e1b0d5 +SIZE (RPostgreSQL_0.6-2.tar.gz) = 579968 diff --git a/databases/R-cran-RPostgreSQL/pkg-descr b/databases/R-cran-RPostgreSQL/pkg-descr new file mode 100644 index 000000000000..14b54ce509b2 --- /dev/null +++ b/databases/R-cran-RPostgreSQL/pkg-descr @@ -0,0 +1,10 @@ +Database interface and 'PostgreSQL' driver for 'R'. This package +provides a Database Interface 'DBI' compliant driver for 'R' to +access 'PostgreSQL' database systems. In order to build and install +this package from source, 'PostgreSQL' itself must be present your +system to provide 'PostgreSQL' functionality via its libraries and +header files. These files are provided as 'postgresql-devel' package +under some Linux distributions. On 'macOS' and 'Microsoft Windows' +system the attached 'libpq' library source will be used. + +WWW: https://cran.r-project.org/web/packages/RPostgreSQL/ |