From owner-svn-ports-all@FreeBSD.ORG Mon Dec 22 17:57:40 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13C5327D; Mon, 22 Dec 2014 17:57:40 +0000 (UTC) Received: from svn.freebsd.org (svn.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 E8B457F7; Mon, 22 Dec 2014 17:57:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBMHvdZ4067896; Mon, 22 Dec 2014 17:57:39 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBMHvcN1067889; Mon, 22 Dec 2014 17:57:38 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412221757.sBMHvcN1067889@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 22 Dec 2014 17:57:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375255 - in head/graphics: . p5-Chart-Gnuplot 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.18-1 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: Mon, 22 Dec 2014 17:57:40 -0000 Author: pawel Date: Mon Dec 22 17:57:37 2014 New Revision: 375255 URL: https://svnweb.freebsd.org/changeset/ports/375255 QAT: https://qat.redports.org/buildarchive/r375255/ Log: This Perl module is to plot graphs using GNUPLOT on the fly. In order to use this module, gnuplot need to be installed. If image format other than PS and EPS is required to generate, it is recommended to install the convert program of ImageMagick as well. WWW: http://search.cpan.org/dist/Chart-Gnuplot/ PR: 195216 Submitted by: koue@chaosophia.net Added: head/graphics/p5-Chart-Gnuplot/ head/graphics/p5-Chart-Gnuplot/Makefile (contents, props changed) head/graphics/p5-Chart-Gnuplot/distinfo (contents, props changed) head/graphics/p5-Chart-Gnuplot/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Dec 22 17:45:56 2014 (r375254) +++ head/graphics/Makefile Mon Dec 22 17:57:37 2014 (r375255) @@ -635,6 +635,7 @@ SUBDIR += p5-Captcha-reCAPTCHA-Mailhide SUBDIR += p5-Chart SUBDIR += p5-Chart-Clicker + SUBDIR += p5-Chart-Gnuplot SUBDIR += p5-Chart-Graph SUBDIR += p5-Chart-PNGgraph SUBDIR += p5-Color-Calc Added: head/graphics/p5-Chart-Gnuplot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Chart-Gnuplot/Makefile Mon Dec 22 17:57:37 2014 (r375255) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= Chart-Gnuplot +PORTVERSION= 0.21 +CATEGORIES= graphics +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= koue@chaosophia.net +COMMENT= Perl module to plot graphs using GNUPLOT on the fly + +LICENSE= GPLv2 + +RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot + +USES= perl5 +USE_PERL5= configure + +PLIST_FILES= %%SITE_PERL%%/Chart/Gnuplot.pm \ + %%SITE_PERL%%/Chart/Gnuplot/Util.pm \ + %%PERL5_MAN3%%/Chart::Gnuplot.3.gz +post-patch: + @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE}," ${WRKSRC}/Makefile.PL + +.include Added: head/graphics/p5-Chart-Gnuplot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Chart-Gnuplot/distinfo Mon Dec 22 17:57:37 2014 (r375255) @@ -0,0 +1,2 @@ +SHA256 (Chart-Gnuplot-0.21.tar.gz) = 3377356838323962561b6dbb1cf2b3314d6461a5cf247f825720a7e93dd16815 +SIZE (Chart-Gnuplot-0.21.tar.gz) = 50356 Added: head/graphics/p5-Chart-Gnuplot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/p5-Chart-Gnuplot/pkg-descr Mon Dec 22 17:57:37 2014 (r375255) @@ -0,0 +1,6 @@ +This Perl module is to plot graphs using GNUPLOT on the fly. +In order to use this module, gnuplot need to be installed. +If image format other than PS and EPS is required to generate, +it is recommended to install the convert program of ImageMagick as well. + +WWW: http://search.cpan.org/dist/Chart-Gnuplot/