From owner-svn-ports-all@freebsd.org Wed Aug 12 09:44:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 291FD99EB46; Wed, 12 Aug 2015 09:44:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D7119AD; Wed, 12 Aug 2015 09:44:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C9iliv051985; Wed, 12 Aug 2015 09:44:47 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C9il5V051978; Wed, 12 Aug 2015 09:44:47 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508120944.t7C9il5V051978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 09:44:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394013 - in head/graphics: . R-cran-dygraphs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 12 Aug 2015 09:44:48 -0000 Author: tota Date: Wed Aug 12 09:44:46 2015 New Revision: 394013 URL: https://svnweb.freebsd.org/changeset/ports/394013 Log: - Add new port: graphics/R-cran-dygraphs An R interface to the 'dygraphs' JavaScript charting library (a copy of which is included in the package). Provides rich facilities for charting time-series data in R, including highly configurable series- and axis-display and interactive features like zoom/pan and series/point highlighting. WWW: https://cran.r-project.org/web/packages/dygraphs/ Added: head/graphics/R-cran-dygraphs/ head/graphics/R-cran-dygraphs/Makefile (contents, props changed) head/graphics/R-cran-dygraphs/distinfo (contents, props changed) head/graphics/R-cran-dygraphs/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Aug 12 09:20:38 2015 (r394012) +++ head/graphics/Makefile Wed Aug 12 09:44:46 2015 (r394013) @@ -20,6 +20,7 @@ SUBDIR += R-cran-colorspace SUBDIR += R-cran-diagram SUBDIR += R-cran-dichromat + SUBDIR += R-cran-dygraphs SUBDIR += R-cran-ggplot2 SUBDIR += R-cran-gridBase SUBDIR += R-cran-munsell Added: head/graphics/R-cran-dygraphs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-dygraphs/Makefile Wed Aug 12 09:44:46 2015 (r394013) @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= dygraphs +PORTVERSION= 0.4.5 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Interface to Dygraphs Interactive Time Series Charting Library + +LICENSE= MIT + +RUN_DEPENDS= R-cran-magrittr>0:${PORTSDIR}/devel/R-cran-magrittr \ + R-cran-htmlwidgets>=0.3.2:${PORTSDIR}/www/R-cran-htmlwidgets \ + R-cran-zoo>=1.7.10:${PORTSDIR}/math/R-cran-zoo \ + R-cran-xts>=0.9.7:${PORTSDIR}/math/R-cran-xts + +USES= cran:auto-plist + +.include Added: head/graphics/R-cran-dygraphs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-dygraphs/distinfo Wed Aug 12 09:44:46 2015 (r394013) @@ -0,0 +1,2 @@ +SHA256 (dygraphs_0.4.5.tar.gz) = 492de52d03ecbcf022d77e6847fb30f18042a64e1719b3a1754d21075a206c21 +SIZE (dygraphs_0.4.5.tar.gz) = 476027 Added: head/graphics/R-cran-dygraphs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-dygraphs/pkg-descr Wed Aug 12 09:44:46 2015 (r394013) @@ -0,0 +1,7 @@ +An R interface to the 'dygraphs' JavaScript charting library (a +copy of which is included in the package). Provides rich facilities +for charting time-series data in R, including highly configurable +series- and axis-display and interactive features like zoom/pan and +series/point highlighting. + +WWW: https://cran.r-project.org/web/packages/dygraphs/