diff options
author | aaron <aaron@FreeBSD.org> | 2006-06-16 20:47:03 +0800 |
---|---|---|
committer | aaron <aaron@FreeBSD.org> | 2006-06-16 20:47:03 +0800 |
commit | ee70d3eae675420aa27b5332f09eef2922b02750 (patch) | |
tree | c2e99b095ccb9c3232c0c970c0d5d527defe0714 /graphics/GIFgraph/Makefile | |
parent | 282bd90836d8eac6b5641043061ba64c194337b5 (diff) | |
download | freebsd-ports-gnome-ee70d3eae675420aa27b5332f09eef2922b02750.tar.gz freebsd-ports-gnome-ee70d3eae675420aa27b5332f09eef2922b02750.tar.zst freebsd-ports-gnome-ee70d3eae675420aa27b5332f09eef2922b02750.zip |
- Update to 1.20
- Restrict to Perl 5.8+ due to new dependency upon graphics/p5-GD-Graph
- Mark as deprecated as per vendor and expire in the new year
- Remove now-unnecessary patch
PR: ports/99010
Submitted by: aaron
Reviewed by: maintainer
Approved by: maintainer, tobez (implicit)
Diffstat (limited to 'graphics/GIFgraph/Makefile')
-rw-r--r-- | graphics/GIFgraph/Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/graphics/GIFgraph/Makefile b/graphics/GIFgraph/Makefile index 71074e27748c..1100386f0ba2 100644 --- a/graphics/GIFgraph/Makefile +++ b/graphics/GIFgraph/Makefile @@ -6,8 +6,7 @@ # PORTNAME= GIFgraph -PORTVERSION= 1.10 -PORTREVISION= 2 +PORTVERSION= 1.20 CATEGORIES= graphics perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= GIFgraph @@ -19,11 +18,20 @@ COMMENT= A Perl package to generate PNG charts RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/GD.pm:${PORTSDIR}/graphics/p5-GD +DEPRECATED= This module is simply a wrapper around GD::Graph and is deprecated. One should simply use graphics/p5-GD-Graph +EXPIRATION_DATE= 2007-01-01 + PERL_CONFIGURE= YES -MAN3= GIFgraph.3 GIFgraph::colour.3 +MAN3= GIFgraph.3 post-patch: ${FIND} ${WRKSRC} -name '*.orig' -delete -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500800 # inherited from graphics/p5-GD-Graph +IGNORE= requires at least Perl 5.8. Please install lang/perl.58 and try again +.endif + +.include <bsd.port.post.mk> |