diff options
author | tron <tron@pkgsrc.org> | 2001-04-26 08:38:12 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-04-26 08:38:12 +0000 |
commit | d213d192dca366db3f79603bdfcd6720a4bb4a78 (patch) | |
tree | c3f2878b1f39129c1d26b564e73aad714865af9d | |
parent | 30af28a87c2199acfc16208503b9398f41f4f601 (diff) | |
download | pkgsrc-d213d192dca366db3f79603bdfcd6720a4bb4a78.tar.gz |
Set minimum required Perl 5 version to 5.6.0. Fixes PR pkg/12743 by
Kimmo Suominen.
-rw-r--r-- | net/mrtg/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/mrtg/Makefile b/net/mrtg/Makefile index 09ac06943be..3edb121587c 100644 --- a/net/mrtg/Makefile +++ b/net/mrtg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2001/03/06 10:26:48 wiz Exp $ +# $NetBSD: Makefile,v 1.27 2001/04/26 08:38:12 tron Exp $ # FreeBSD Id: Makefile,v 1.7 1997/12/16 19:42:17 vanilla Exp # @@ -19,9 +19,10 @@ COMMENT= The Multi-Router Traffic Grapher DEPENDS= gd>=1.8.1:../../graphics/gd -USE_PERL5= # defined -USE_X11= # defined -GNU_CONFIGURE= # defined +USE_PERL5= YES +PERL5_REQD= 5.6.0 +USE_X11= YES +GNU_CONFIGURE= YES CONFIGURE_ARGS= --with-gd-inc=${LOCALBASE}/include \ --with-gd-lib=${LOCALBASE}/lib |