diff options
author | tota <tota@FreeBSD.org> | 2012-02-08 03:44:26 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2012-02-08 03:44:26 +0800 |
commit | aa2eba04e853c54a79a73599a6abd01a29708241 (patch) | |
tree | 0b50ff25046b79ca3391b22aa125ce71c2fee585 /devel | |
parent | 6c051a785d91481e4adcdbcef803ff19100ad285 (diff) | |
download | freebsd-ports-gnome-aa2eba04e853c54a79a73599a6abd01a29708241.tar.gz freebsd-ports-gnome-aa2eba04e853c54a79a73599a6abd01a29708241.tar.zst freebsd-ports-gnome-aa2eba04e853c54a79a73599a6abd01a29708241.zip |
- Add a new port: devel/R-cran-reshape2
Reshape lets you flexibly restructure and aggregate data using just
two functions: melt and cast.
WWW: http://cran.r-project.org/web/packages/reshape2/
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/R-cran-reshape2/Makefile | 24 | ||||
-rw-r--r-- | devel/R-cran-reshape2/distinfo | 2 | ||||
-rw-r--r-- | devel/R-cran-reshape2/pkg-descr | 4 |
4 files changed, 31 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 4166e53acd37..e01127500b86 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -16,6 +16,7 @@ SUBDIR += R-cran-plyr SUBDIR += R-cran-proto SUBDIR += R-cran-reshape + SUBDIR += R-cran-reshape2 SUBDIR += SpecTcl SUBDIR += ZendOptimizer SUBDIR += aap diff --git a/devel/R-cran-reshape2/Makefile b/devel/R-cran-reshape2/Makefile new file mode 100644 index 000000000000..03b8e7956074 --- /dev/null +++ b/devel/R-cran-reshape2/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: R-cran-reshape2 +# Date created: 2012-02-07 +# Whom: TAKATSU Tomonari <tota@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= reshape2 +PORTVERSION= 1.2.1 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Flexibly reshape data: a reboot of the reshape package + +LICENSE= MIT + +RUN_DEPENDS= R-cran-plyr>=1.5:${PORTSDIR}/devel/R-cran-plyr \ + R-cran-stringr>0:${PORTSDIR}/textproc/R-cran-stringr + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/devel/R-cran-reshape2/distinfo b/devel/R-cran-reshape2/distinfo new file mode 100644 index 000000000000..4f46c29d6bbe --- /dev/null +++ b/devel/R-cran-reshape2/distinfo @@ -0,0 +1,2 @@ +SHA256 (reshape2_1.2.1.tar.gz) = 2a2d0ecec0ce1c83f9443f65c8132f36a05bdaabe301fb841a4f7937220a7ec5 +SIZE (reshape2_1.2.1.tar.gz) = 1952562 diff --git a/devel/R-cran-reshape2/pkg-descr b/devel/R-cran-reshape2/pkg-descr new file mode 100644 index 000000000000..3cec61ea600d --- /dev/null +++ b/devel/R-cran-reshape2/pkg-descr @@ -0,0 +1,4 @@ +Reshape lets you flexibly restructure and aggregate data using just +two functions: melt and cast. + +WWW: http://cran.r-project.org/web/packages/reshape2/ |