diff options
author | tota <tota@FreeBSD.org> | 2018-04-03 17:50:55 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2018-04-03 17:50:55 +0800 |
commit | 3a6c0618e0d2c41ff48091fa71d5624c20ee8543 (patch) | |
tree | 92ca34d82c312292f9b387474a325821c8d52128 /www | |
parent | 987b7f2387c8d3731397c6e71d27e223157c014b (diff) | |
download | freebsd-ports-gnome-3a6c0618e0d2c41ff48091fa71d5624c20ee8543.tar.gz freebsd-ports-gnome-3a6c0618e0d2c41ff48091fa71d5624c20ee8543.tar.zst freebsd-ports-gnome-3a6c0618e0d2c41ff48091fa71d5624c20ee8543.zip |
- Add new port: www/R-cran-crosstalk
Provides building blocks for allowing HTML widgets to communicate
with each other, with Shiny or without (i.e. static .html files).
Currently supports linked brushing and filtering.
WWW: https://cran.r-project.org/web/packages/crosstalk/
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/R-cran-crosstalk/Makefile | 25 | ||||
-rw-r--r-- | www/R-cran-crosstalk/distinfo | 3 | ||||
-rw-r--r-- | www/R-cran-crosstalk/pkg-descr | 5 |
4 files changed, 34 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 8a2d5b6a576c..63b9d50babe8 100644 --- a/www/Makefile +++ b/www/Makefile @@ -5,6 +5,7 @@ SUBDIR += R-cran-RgoogleMaps SUBDIR += R-cran-Rook + SUBDIR += R-cran-crosstalk SUBDIR += R-cran-downloader SUBDIR += R-cran-htmlwidgets SUBDIR += R-cran-httpuv diff --git a/www/R-cran-crosstalk/Makefile b/www/R-cran-crosstalk/Makefile new file mode 100644 index 000000000000..0cd536a8a5b2 --- /dev/null +++ b/www/R-cran-crosstalk/Makefile @@ -0,0 +1,25 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= crosstalk +PORTVERSION= 1.0.0 +CATEGORIES= www +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Inter-Widget Interactivity for HTML Widgets + +LICENSE= MIT + +CRAN_DEPENDS= R-cran-htmltools>=0.3.5:textproc/R-cran-htmltools \ + R-cran-jsonlite>0:converters/R-cran-jsonlite \ + R-cran-lazyeval>0:math/R-cran-lazyeval \ + R-cran-R6>0:devel/R-cran-R6 \ + R-cran-shiny>=0.11:www/R-cran-shiny \ + R-cran-ggplot2>0:graphics/R-cran-ggplot2 +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/www/R-cran-crosstalk/distinfo b/www/R-cran-crosstalk/distinfo new file mode 100644 index 000000000000..f5ba6a636dcb --- /dev/null +++ b/www/R-cran-crosstalk/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1522738506 +SHA256 (crosstalk_1.0.0.tar.gz) = b31eada24cac26f24c9763d9a8cbe0adfd87b264cf57f8725027fe0c7742ca51 +SIZE (crosstalk_1.0.0.tar.gz) = 563474 diff --git a/www/R-cran-crosstalk/pkg-descr b/www/R-cran-crosstalk/pkg-descr new file mode 100644 index 000000000000..26048a69245e --- /dev/null +++ b/www/R-cran-crosstalk/pkg-descr @@ -0,0 +1,5 @@ +Provides building blocks for allowing HTML widgets to communicate +with each other, with Shiny or without (i.e. static .html files). +Currently supports linked brushing and filtering. + +WWW: https://cran.r-project.org/web/packages/crosstalk/ |