update graphics/p5-chart: 1.0.1 --> 2.2
PR: 52240 Submitted by: Mathieu Arnold <m@absolight.net>
This commit is contained in:
parent
0278cc890d
commit
42891ae158
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83942
8 changed files with 48 additions and 36 deletions
|
@ -6,20 +6,19 @@
|
|||
#
|
||||
|
||||
PORTNAME= Chart
|
||||
PORTVERSION= 1.0.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= graphics perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Chart
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= ports@freebsd.org
|
||||
MAINTAINER= m@absolight.net
|
||||
COMMENT= A perl5 interface to build chart graphics
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD
|
||||
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD2
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Chart.3
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
#MAN3= Chart.3
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (Chart-1.0.1.tar.gz) = 97a9e4db4de5fb277745bb2437d65fc8
|
||||
MD5 (Chart-2.2.tar.gz) = 7d3831e2a6be0245b1c94f9847cf75cd
|
||||
|
|
|
@ -7,5 +7,7 @@ from scratch, and I've designed it from the bottom up to be easy to
|
|||
modify. Like GIFgraph, Chart::* uses Lincoln Stein's GD module for all
|
||||
of its graphics primitives calls.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Chart/
|
||||
|
||||
- Vanilla
|
||||
vanilla@FreeBSD.ORG
|
||||
|
|
|
@ -1,12 +1,17 @@
|
|||
lib/perl5/site_perl/%%PERL_VER%%/Chart.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Bars.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Base.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Composite.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Lines.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/LinesPoints.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Mountain.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Points.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/StackedBars.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Chart/.packlist
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Chart
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Chart
|
||||
%%SITE_PERL%%/Chart/Bars.pm
|
||||
%%SITE_PERL%%/Chart/Base.pm
|
||||
%%SITE_PERL%%/Chart/Composite.pm
|
||||
%%SITE_PERL%%/Chart/Direction.pm
|
||||
%%SITE_PERL%%/Chart/ErrorBars.pm
|
||||
%%SITE_PERL%%/Chart/HorizontalBars.pm
|
||||
%%SITE_PERL%%/Chart/Lines.pm
|
||||
%%SITE_PERL%%/Chart/LinesPoints.pm
|
||||
%%SITE_PERL%%/Chart/Mountain.pm
|
||||
%%SITE_PERL%%/Chart/Pareto.pm
|
||||
%%SITE_PERL%%/Chart/Pie.pm
|
||||
%%SITE_PERL%%/Chart/Points.pm
|
||||
%%SITE_PERL%%/Chart/Split.pm
|
||||
%%SITE_PERL%%/Chart/StackedBars.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Chart/.packlist
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Chart 2>/dev/null || true
|
||||
@dirrm %%SITE_PERL%%/Chart
|
||||
|
|
|
@ -6,20 +6,19 @@
|
|||
#
|
||||
|
||||
PORTNAME= Chart
|
||||
PORTVERSION= 1.0.1
|
||||
PORTVERSION= 2.2
|
||||
CATEGORIES= graphics perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Chart
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= ports@freebsd.org
|
||||
MAINTAINER= m@absolight.net
|
||||
COMMENT= A perl5 interface to build chart graphics
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD
|
||||
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD2
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Chart.3
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
#MAN3= Chart.3
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (Chart-1.0.1.tar.gz) = 97a9e4db4de5fb277745bb2437d65fc8
|
||||
MD5 (Chart-2.2.tar.gz) = 7d3831e2a6be0245b1c94f9847cf75cd
|
||||
|
|
|
@ -7,5 +7,7 @@ from scratch, and I've designed it from the bottom up to be easy to
|
|||
modify. Like GIFgraph, Chart::* uses Lincoln Stein's GD module for all
|
||||
of its graphics primitives calls.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Chart/
|
||||
|
||||
- Vanilla
|
||||
vanilla@FreeBSD.ORG
|
||||
|
|
|
@ -1,12 +1,17 @@
|
|||
lib/perl5/site_perl/%%PERL_VER%%/Chart.pod
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Bars.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Base.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Composite.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Lines.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/LinesPoints.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Mountain.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/Points.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Chart/StackedBars.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Chart/.packlist
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Chart
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Chart
|
||||
%%SITE_PERL%%/Chart/Bars.pm
|
||||
%%SITE_PERL%%/Chart/Base.pm
|
||||
%%SITE_PERL%%/Chart/Composite.pm
|
||||
%%SITE_PERL%%/Chart/Direction.pm
|
||||
%%SITE_PERL%%/Chart/ErrorBars.pm
|
||||
%%SITE_PERL%%/Chart/HorizontalBars.pm
|
||||
%%SITE_PERL%%/Chart/Lines.pm
|
||||
%%SITE_PERL%%/Chart/LinesPoints.pm
|
||||
%%SITE_PERL%%/Chart/Mountain.pm
|
||||
%%SITE_PERL%%/Chart/Pareto.pm
|
||||
%%SITE_PERL%%/Chart/Pie.pm
|
||||
%%SITE_PERL%%/Chart/Points.pm
|
||||
%%SITE_PERL%%/Chart/Split.pm
|
||||
%%SITE_PERL%%/Chart/StackedBars.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Chart/.packlist
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Chart 2>/dev/null || true
|
||||
@dirrm %%SITE_PERL%%/Chart
|
||||
|
|
Loading…
Reference in a new issue