From owner-svn-ports-all@FreeBSD.ORG Tue Sep 18 18:28:15 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 248B9106566C; Tue, 18 Sep 2012 18:28:15 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EB0D98FC1D; Tue, 18 Sep 2012 18:28:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8IISEpA040703; Tue, 18 Sep 2012 18:28:14 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8IISEw8040697; Tue, 18 Sep 2012 18:28:14 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201209181828.q8IISEw8040697@svn.freebsd.org> From: Steven Kreuzer Date: Tue, 18 Sep 2012 18:28:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304452 - in head/devel: . R-cran-randomForest X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Sep 2012 18:28:15 -0000 Author: skreuzer Date: Tue Sep 18 18:28:14 2012 New Revision: 304452 URL: http://svn.freebsd.org/changeset/ports/304452 Log: Breiman and Cutler's random forests for classification and regression WWW: http://cran.r-project.org/web/packages/randomForest/ Added: head/devel/R-cran-randomForest/ head/devel/R-cran-randomForest/Makefile (contents, props changed) head/devel/R-cran-randomForest/distinfo (contents, props changed) head/devel/R-cran-randomForest/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 18 18:27:35 2012 (r304451) +++ head/devel/Makefile Tue Sep 18 18:28:14 2012 (r304452) @@ -22,6 +22,7 @@ SUBDIR += R-cran-memoise SUBDIR += R-cran-plyr SUBDIR += R-cran-proto + SUBDIR += R-cran-randomForest SUBDIR += R-cran-reshape SUBDIR += R-cran-reshape2 SUBDIR += SpecTcl Added: head/devel/R-cran-randomForest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-randomForest/Makefile Tue Sep 18 18:28:14 2012 (r304452) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= randomForest +DISTVERSION= 4.6-6 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Classification based on a forest of trees using random inputs + +RUN_DEPENDS= R-cran-RColorBrewer>=1.0.5_6:${PORTSDIR}/graphics/R-cran-RColorBrewer + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include Added: head/devel/R-cran-randomForest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-randomForest/distinfo Tue Sep 18 18:28:14 2012 (r304452) @@ -0,0 +1,2 @@ +SHA256 (randomForest_4.6-6.tar.gz) = f5621bbabfa895f1d87bfdd75011967939883f881cf4a733187872c82a9be06a +SIZE (randomForest_4.6-6.tar.gz) = 76960 Added: head/devel/R-cran-randomForest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-randomForest/pkg-descr Tue Sep 18 18:28:14 2012 (r304452) @@ -0,0 +1,3 @@ +Breiman and Cutler's random forests for classification and regression + +WWW: http://cran.r-project.org/web/packages/randomForest/