From owner-svn-ports-all@freebsd.org Sat Jun 17 10:02:29 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64268BF7196; Sat, 17 Jun 2017 10:02:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 14DE12EDD; Sat, 17 Jun 2017 10:02:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5HA2S1l084806; Sat, 17 Jun 2017 10:02:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5HA2Sa6084805; Sat, 17 Jun 2017 10:02:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706171002.v5HA2Sa6084805@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 17 Jun 2017 10:02:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443759 - head/math/p5-Math-String X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 10:02:29 -0000 Author: sunpoet Date: Sat Jun 17 10:02:27 2017 New Revision: 443759 URL: https://svnweb.freebsd.org/changeset/ports/443759 Log: Add PERL_LEVEL check - Bump PORTREVISION for dependency change Modified: head/math/p5-Math-String/Makefile Modified: head/math/p5-Math-String/Makefile ============================================================================== --- head/math/p5-Math-String/Makefile Sat Jun 17 10:02:23 2017 (r443758) +++ head/math/p5-Math-String/Makefile Sat Jun 17 10:02:27 2017 (r443759) @@ -3,6 +3,7 @@ PORTNAME= Math-String PORTVERSION= 1.29 +PORTREVISION= 1 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,11 +14,15 @@ COMMENT= Perl module to calculate with strings as if t LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Math-BigInt>=1.999802:math/p5-Math-BigInt -RUN_DEPENDS:= ${BUILD_DEPENDS} - NO_ARCH= yes USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502508 +BUILD_DEPENDS+= p5-Math-BigInt>=1.999802:math/p5-Math-BigInt +RUN_DEPENDS+= p5-Math-BigInt>=1.999802:math/p5-Math-BigInt +.endif + +.include