diff options
author | az <az@FreeBSD.org> | 2013-08-25 17:05:35 +0800 |
---|---|---|
committer | az <az@FreeBSD.org> | 2013-08-25 17:05:35 +0800 |
commit | 340088e912e3712a1d3d794a867591c0288bbc38 (patch) | |
tree | 1869f79c1dafa192f993ec937fd76172f1690330 /graphics | |
parent | 3bb9c87e2ed747bb2a7b4f987a31b7d6d24b1537 (diff) | |
download | freebsd-ports-gnome-340088e912e3712a1d3d794a867591c0288bbc38.tar.gz freebsd-ports-gnome-340088e912e3712a1d3d794a867591c0288bbc38.tar.zst freebsd-ports-gnome-340088e912e3712a1d3d794a867591c0288bbc38.zip |
- Fix build with perl 5.12 relying on devel/p5-ExtUtils-MakeMaker
- Add WWW line in pkg-descr
GD::Graph required functional of ExtUtil::MakeMaker version >= 6.57_02.
Perl 5.12 have only ExtUtils::MakeMaker version 6.56 in core.
Reported by: tim@bishnet.net, milki@rescomp.berkeley.edu
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/p5-GD-Graph/Makefile | 8 | ||||
-rw-r--r-- | graphics/p5-GD-Graph/pkg-descr | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/graphics/p5-GD-Graph/Makefile b/graphics/p5-GD-Graph/Makefile index 0bfa51148d77..d38440d20373 100644 --- a/graphics/p5-GD-Graph/Makefile +++ b/graphics/p5-GD-Graph/Makefile @@ -25,4 +25,10 @@ MAN3= GD::Graph.3 \ GD::Graph::colour.3 \ GD::Graph::hbars.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 501400 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.58:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker +.endif + +.include <bsd.port.post.mk> diff --git a/graphics/p5-GD-Graph/pkg-descr b/graphics/p5-GD-Graph/pkg-descr index 8ea9413c8c03..a129807c6d7f 100644 --- a/graphics/p5-GD-Graph/pkg-descr +++ b/graphics/p5-GD-Graph/pkg-descr @@ -1 +1,3 @@ GD::Graph is a perl5 module to create charts using the GD module. + +WWW: http://search.cpan.org/dist/GDGraph/ |