1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

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
This commit is contained in:
Pawel Pekala 2014-12-22 17:57:37 +00:00
parent 316d640e19
commit e31adb328d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=375255
4 changed files with 34 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (Chart-Gnuplot-0.21.tar.gz) = 3377356838323962561b6dbb1cf2b3314d6461a5cf247f825720a7e93dd16815
SIZE (Chart-Gnuplot-0.21.tar.gz) = 50356

View File

@ -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/