aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTAKATSU Tomonari <tota@FreeBSD.org>2012-02-07 14:35:21 +0000
committerTAKATSU Tomonari <tota@FreeBSD.org>2012-02-07 14:35:21 +0000
commitacdafc1b3800fc6549ad86486aac147b19d50376 (patch)
treeae2db567f62118ba8e2e0048a90e3948e2fa7ef7
parent17d4f3cfff226f8bb10f3990d101d71e37b6cd23 (diff)
downloadports-acdafc1b3800fc6549ad86486aac147b19d50376.tar.gz
ports-acdafc1b3800fc6549ad86486aac147b19d50376.zip
- Add a new port: textproc/R-cran-stringr
stringr is a set of simple wrappers that make R's string functions more consistent, simpler and easier to use. It does this by ensuring that: function and argument names (and positions) are consistent, all functions deal with NA's and zero length character appropriately, and the output data structures from each function matches the input data structures of other functions. WWW: http://cran.r-project.org/web/packages/stringr/
Notes
Notes: svn path=/head/; revision=290592
-rw-r--r--textproc/Makefile1
-rw-r--r--textproc/R-cran-stringr/Makefile23
-rw-r--r--textproc/R-cran-stringr/distinfo2
-rw-r--r--textproc/R-cran-stringr/pkg-descr8
4 files changed, 34 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile
index 8f4b83db6af2..b01d2637da06 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -5,6 +5,7 @@
SUBDIR += 2bsd-diff
SUBDIR += R-cran-XML
+ SUBDIR += R-cran-stringr
SUBDIR += R-cran-xtable
SUBDIR += add-css-links
SUBDIR += af-aspell
diff --git a/textproc/R-cran-stringr/Makefile b/textproc/R-cran-stringr/Makefile
new file mode 100644
index 000000000000..d512480261b6
--- /dev/null
+++ b/textproc/R-cran-stringr/Makefile
@@ -0,0 +1,23 @@
+# New ports collection makefile for: R-cran-stringr
+# Date created: 2012-02-07
+# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= stringr
+PORTVERSION= 0.6
+CATEGORIES= textproc
+DISTNAME= ${PORTNAME}_${PORTVERSION}
+
+MAINTAINER= tota@FreeBSD.org
+COMMENT= Make it easier to work with strings
+
+LICENSE= GPLv2
+
+RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr
+
+USE_R_MOD= yes
+R_MOD_AUTOPLIST= yes
+
+.include <bsd.port.mk>
diff --git a/textproc/R-cran-stringr/distinfo b/textproc/R-cran-stringr/distinfo
new file mode 100644
index 000000000000..13f5af20e677
--- /dev/null
+++ b/textproc/R-cran-stringr/distinfo
@@ -0,0 +1,2 @@
+SHA256 (stringr_0.6.tar.gz) = 7ee84919c3902f96cd3b18292812538566e45837e930d245dd4fc36d7085686b
+SIZE (stringr_0.6.tar.gz) = 20551
diff --git a/textproc/R-cran-stringr/pkg-descr b/textproc/R-cran-stringr/pkg-descr
new file mode 100644
index 000000000000..03437f20194c
--- /dev/null
+++ b/textproc/R-cran-stringr/pkg-descr
@@ -0,0 +1,8 @@
+stringr is a set of simple wrappers that make R's string functions
+more consistent, simpler and easier to use. It does this by ensuring
+that: function and argument names (and positions) are consistent,
+all functions deal with NA's and zero length character appropriately,
+and the output data structures from each function matches the input
+data structures of other functions.
+
+WWW: http://cran.r-project.org/web/packages/stringr/