diff options
author | tota <tota@FreeBSD.org> | 2011-08-29 03:16:01 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2011-08-29 03:16:01 +0800 |
commit | 9b0407ff05f79ec9f388fb49f988f11993376ce8 (patch) | |
tree | 5c12e021c6c2f16ecb3d457f67156e9eea8e82a7 /ftp | |
parent | c433cbfc659aeec62373705fe98a823b6ae59303 (diff) | |
download | freebsd-ports-gnome-9b0407ff05f79ec9f388fb49f988f11993376ce8.tar.gz freebsd-ports-gnome-9b0407ff05f79ec9f388fb49f988f11993376ce8.tar.zst freebsd-ports-gnome-9b0407ff05f79ec9f388fb49f988f11993376ce8.zip |
- Add a new port: ftp/R-cran-RCurl
The RCurl package is an R-interface to the libcurl library that
provides HTTP facilities. This allows us to download files from Web
servers, post forms, use HTTPS (the secure HTTP), use persistent
connections, upload files, use binary content, handle redirects,
password authentication, etc.
WWW: http://www.omegahat.org/RCurl/
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/Makefile | 1 | ||||
-rw-r--r-- | ftp/R-cran-RCurl/Makefile | 26 | ||||
-rw-r--r-- | ftp/R-cran-RCurl/distinfo | 2 | ||||
-rw-r--r-- | ftp/R-cran-RCurl/pkg-descr | 7 |
4 files changed, 36 insertions, 0 deletions
diff --git a/ftp/Makefile b/ftp/Makefile index ef07d5ca9ff1..7e2ce0d2757f 100644 --- a/ftp/Makefile +++ b/ftp/Makefile @@ -4,6 +4,7 @@ COMMENT = FTP client and server utilities SUBDIR += IglooFTP + SUBDIR += R-cran-RCurl SUBDIR += atftp SUBDIR += axel SUBDIR += bareftp diff --git a/ftp/R-cran-RCurl/Makefile b/ftp/R-cran-RCurl/Makefile new file mode 100644 index 000000000000..2a40b0f437fb --- /dev/null +++ b/ftp/R-cran-RCurl/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: R-cran-RCurl +# Date created: 2011-08-28 +# Whom: TAKATSU Tomonari <tota@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= RCurl +DISTVERSION= 1.6-9 +CATEGORIES= ftp +PKGNAMEPREFIX= R-cran- +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= General network client interface for R + +LICENSE= BSD + +BUILD_DEPENDS= curl-config:${PORTSDIR}/ftp/curl +RUN_DEPENDS= R-cran-bitops>0:${PORTSDIR}/devel/R-cran-bitops +LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/ftp/R-cran-RCurl/distinfo b/ftp/R-cran-RCurl/distinfo new file mode 100644 index 000000000000..44a1f32ca903 --- /dev/null +++ b/ftp/R-cran-RCurl/distinfo @@ -0,0 +1,2 @@ +SHA256 (RCurl_1.6-9.tar.gz) = 74e081137e3fa5b8f2b4cfeded9d837e88a5d6cb8c4f43d55cad77d65e22ae5a +SIZE (RCurl_1.6-9.tar.gz) = 709566 diff --git a/ftp/R-cran-RCurl/pkg-descr b/ftp/R-cran-RCurl/pkg-descr new file mode 100644 index 000000000000..6ce943ae6e65 --- /dev/null +++ b/ftp/R-cran-RCurl/pkg-descr @@ -0,0 +1,7 @@ +The RCurl package is an R-interface to the libcurl library that +provides HTTP facilities. This allows us to download files from Web +servers, post forms, use HTTPS (the secure HTTP), use persistent +connections, upload files, use binary content, handle redirects, +password authentication, etc. + +WWW: http://www.omegahat.org/RCurl/ |