diff options
author | thierry <thierry@FreeBSD.org> | 2012-11-01 04:28:09 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2012-11-01 04:28:09 +0800 |
commit | a581d18d10f6236261f7ae095f9cc610c4aa6751 (patch) | |
tree | 467772785f708d3ef3f0b9165a15d6bb3c3c19a4 | |
parent | f54b6734b4ea595bc1c4b3e0fd5c28242b3f3ec1 (diff) | |
download | freebsd-ports-gnome-a581d18d10f6236261f7ae095f9cc610c4aa6751.tar.gz freebsd-ports-gnome-a581d18d10f6236261f7ae095f9cc610c4aa6751.tar.zst freebsd-ports-gnome-a581d18d10f6236261f7ae095f9cc610c4aa6751.zip |
Adding R2HTML, a package to write HTML files from R, used by RKWArd.
Feature safe: yes
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/R-cran-R2HTML/Makefile | 17 | ||||
-rw-r--r-- | textproc/R-cran-R2HTML/distinfo | 2 | ||||
-rw-r--r-- | textproc/R-cran-R2HTML/pkg-descr | 10 |
4 files changed, 30 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 6c14200e4562..1cec6499c280 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -4,6 +4,7 @@ COMMENT = Text processing utilities (does not include desktop publishing) SUBDIR += 2bsd-diff + SUBDIR += R-cran-R2HTML SUBDIR += R-cran-XML SUBDIR += R-cran-stringr SUBDIR += R-cran-xtable diff --git a/textproc/R-cran-R2HTML/Makefile b/textproc/R-cran-R2HTML/Makefile new file mode 100644 index 000000000000..60134fde1241 --- /dev/null +++ b/textproc/R-cran-R2HTML/Makefile @@ -0,0 +1,17 @@ +# Created by: Thierry Thomas <thierry@pompo.net> +# $FreeBSD$ + +PORTNAME= R2HTML +PORTVERSION= 2.2 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= thierry@FreeBSD.org +COMMENT= HTML exportation for R objects + +LICENSE= GPLv2 + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/textproc/R-cran-R2HTML/distinfo b/textproc/R-cran-R2HTML/distinfo new file mode 100644 index 000000000000..85b7b1945122 --- /dev/null +++ b/textproc/R-cran-R2HTML/distinfo @@ -0,0 +1,2 @@ +SHA256 (R2HTML_2.2.tar.gz) = 28896f757acb1622f03ab8ec07166859a2415deaa461d4d934019c01fdcfc519 +SIZE (R2HTML_2.2.tar.gz) = 320085 diff --git a/textproc/R-cran-R2HTML/pkg-descr b/textproc/R-cran-R2HTML/pkg-descr new file mode 100644 index 000000000000..8cc9ccfd96f3 --- /dev/null +++ b/textproc/R-cran-R2HTML/pkg-descr @@ -0,0 +1,10 @@ +This package includes HTML function and methods to write in an HTML file. Thus, +making HTML reports is easy. Includes a function that allows redirection on the +fly, which appears to be very usefull for teaching purpose, as the student can +keep a copy of the produced output to keep all that he did during the course. +Package comes with a vignette describing how to write HTML reports for +statistical analysis. Finally, a driver for Sweave allows to parse HTML flat +files containing R code and to automatically write the corresponding outputs +(tables and graphs). + +WWW: http://cran.r-project.org/web/packages/R2HTML/ |