From owner-svn-ports-head@FreeBSD.ORG Sun Aug 25 09:05:36 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 759E4E65; Sun, 25 Aug 2013 09:05:36 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 63349223E; Sun, 25 Aug 2013 09:05:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7P95aOQ059620; Sun, 25 Aug 2013 09:05:36 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7P95ajB059615; Sun, 25 Aug 2013 09:05:36 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201308250905.r7P95ajB059615@svn.freebsd.org> From: Andrej Zverev Date: Sun, 25 Aug 2013 09:05:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325332 - head/graphics/p5-GD-Graph X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Aug 2013 09:05:36 -0000 Author: az Date: Sun Aug 25 09:05:35 2013 New Revision: 325332 URL: http://svnweb.freebsd.org/changeset/ports/325332 Log: - 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 Modified: head/graphics/p5-GD-Graph/Makefile head/graphics/p5-GD-Graph/pkg-descr (contents, props changed) Modified: head/graphics/p5-GD-Graph/Makefile ============================================================================== --- head/graphics/p5-GD-Graph/Makefile Sun Aug 25 08:20:14 2013 (r325331) +++ head/graphics/p5-GD-Graph/Makefile Sun Aug 25 09:05:35 2013 (r325332) @@ -25,4 +25,10 @@ MAN3= GD::Graph.3 \ GD::Graph::colour.3 \ GD::Graph::hbars.3 -.include +.include + +.if ${PERL_LEVEL} < 501400 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.58:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker +.endif + +.include Modified: head/graphics/p5-GD-Graph/pkg-descr ============================================================================== --- head/graphics/p5-GD-Graph/pkg-descr Sun Aug 25 08:20:14 2013 (r325331) +++ head/graphics/p5-GD-Graph/pkg-descr Sun Aug 25 09:05:35 2013 (r325332) @@ -1 +1,3 @@ GD::Graph is a perl5 module to create charts using the GD module. + +WWW: http://search.cpan.org/dist/GDGraph/