From owner-svn-ports-head@FreeBSD.ORG Thu Dec 4 15:09:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4C5DA58; Thu, 4 Dec 2014 15:09:45 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C14DD144; Thu, 4 Dec 2014 15:09:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB4F9jv1067687; Thu, 4 Dec 2014 15:09:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB4F9j9W067686; Thu, 4 Dec 2014 15:09:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201412041509.sB4F9j9W067686@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 4 Dec 2014 15:09:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373940 - head/devel/p5-Module-Release 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.18-1 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: Thu, 04 Dec 2014 15:09:45 -0000 Author: sunpoet Date: Thu Dec 4 15:09:44 2014 New Revision: 373940 URL: https://svnweb.freebsd.org/changeset/ports/373940 QAT: https://qat.redports.org/buildarchive/r373940/ Log: - Fix BUILD_DEPENDS Modified: head/devel/p5-Module-Release/Makefile Modified: head/devel/p5-Module-Release/Makefile ============================================================================== --- head/devel/p5-Module-Release/Makefile Thu Dec 4 15:09:40 2014 (r373939) +++ head/devel/p5-Module-Release/Makefile Thu Dec 4 15:09:44 2014 (r373940) @@ -21,7 +21,6 @@ BUILD_DEPENDS= p5-CACertOrg-CA>=0:${PORT p5-URI>=0:${PORTSDIR}/net/p5-URI \ p5-libwww>=6.02:${PORTSDIR}/www/p5-libwww RUN_DEPENDS:= ${BUILD_DEPENDS} -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.64:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker TEST_DEPENDS= p5-Test-Output>=0:${PORTSDIR}/devel/p5-Test-Output \ p5-Test-Pod>=1:${PORTSDIR}/devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1:${PORTSDIR}/devel/p5-Test-Pod-Coverage \ @@ -30,4 +29,10 @@ TEST_DEPENDS= p5-Test-Output>=0:${PORTSD USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 501800 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.64:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker +.endif + +.include