Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Dec 2014 17:57:38 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
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
Message-ID:  <201412221757.sBMHvcN1067889@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412221757.sBMHvcN1067889>