diff options
author | tota <tota@FreeBSD.org> | 2017-05-08 16:38:27 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2017-05-08 16:38:27 +0800 |
commit | 6b572114c581341147adc0887a5d1fd95335f905 (patch) | |
tree | 5386e518b5a1b06e033dfba7f2026438f71091f8 | |
parent | 37ec6a7a92f057bd0797ac05ce6681a9b9339882 (diff) | |
download | freebsd-ports-gnome-6b572114c581341147adc0887a5d1fd95335f905.tar.gz freebsd-ports-gnome-6b572114c581341147adc0887a5d1fd95335f905.tar.zst freebsd-ports-gnome-6b572114c581341147adc0887a5d1fd95335f905.zip |
- Add new port: graphics/R-cran-gridExtra
Provides a number of user-level functions to work with "grid"
graphics, notably to arrange multiple grid-based plots on a page,
and draw tables.
WWW: https://cran.r-project.org/web/packages/gridExtra/
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/R-cran-gridExtra/Makefile | 20 | ||||
-rw-r--r-- | graphics/R-cran-gridExtra/distinfo | 3 | ||||
-rw-r--r-- | graphics/R-cran-gridExtra/pkg-descr | 5 |
4 files changed, 29 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index dc51bae21774..79d97907ab36 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -24,6 +24,7 @@ SUBDIR += R-cran-dygraphs SUBDIR += R-cran-ggplot2 SUBDIR += R-cran-gridBase + SUBDIR += R-cran-gridExtra SUBDIR += R-cran-munsell SUBDIR += R-cran-pixmap SUBDIR += R-cran-png diff --git a/graphics/R-cran-gridExtra/Makefile b/graphics/R-cran-gridExtra/Makefile new file mode 100644 index 000000000000..2236e3933775 --- /dev/null +++ b/graphics/R-cran-gridExtra/Makefile @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= gridExtra +PORTVERSION= 2.2.1 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Miscellaneous Functions for "Grid" Graphics + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-gtable>0:math/R-cran-gtable +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/graphics/R-cran-gridExtra/distinfo b/graphics/R-cran-gridExtra/distinfo new file mode 100644 index 000000000000..539c8b92193e --- /dev/null +++ b/graphics/R-cran-gridExtra/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1494231721 +SHA256 (gridExtra_2.2.1.tar.gz) = 44fe455a5bcdf48a4ece7a542f83e7749cf251dc1df6ae7634470240398c6818 +SIZE (gridExtra_2.2.1.tar.gz) = 459488 diff --git a/graphics/R-cran-gridExtra/pkg-descr b/graphics/R-cran-gridExtra/pkg-descr new file mode 100644 index 000000000000..ccc07c896a5b --- /dev/null +++ b/graphics/R-cran-gridExtra/pkg-descr @@ -0,0 +1,5 @@ +Provides a number of user-level functions to work with "grid" +graphics, notably to arrange multiple grid-based plots on a page, +and draw tables. + +WWW: https://cran.r-project.org/web/packages/gridExtra/ |