From e81300e86ea7922ffce1b477fea50989a49f23ca Mon Sep 17 00:00:00 2001 From: rene Date: Wed, 31 Dec 2014 16:04:29 +0000 Subject: Mk/Uses/perl5.mk: Unregister perl5.14 now that the port has expired. Differential Revision: https://reviews.freebsd.org/D1368 Approved by: portmgr (mat), perl (sunpoet) --- Mk/Uses/perl5.mk | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Mk/Uses/perl5.mk b/Mk/Uses/perl5.mk index c3f7a2393695..8931c68b165c 100644 --- a/Mk/Uses/perl5.mk +++ b/Mk/Uses/perl5.mk @@ -20,7 +20,7 @@ # PERL_ARCH - Directory name of architecture dependent libraries # (value: mach). # PERL_PORT - Name of the perl port that is installed -# (value: perl5.14) +# (for example: perl5.18) # SITE_PERL - Directory name where site specific perl packages go. # This value is added to PLIST_SUB. # SITE_ARCH - Directory name where arch site specific perl packages go. @@ -49,9 +49,7 @@ PERL_VERSION!= perl -e 'printf "%vd\n", $$^V;' .endif .else .include "${PORTSDIR}/Mk/bsd.default-versions.mk" -.if ${PERL5_DEFAULT} == 5.14 -PERL_VERSION= 5.14.4 -.elif ${PERL5_DEFAULT} == 5.16 +.if ${PERL5_DEFAULT} == 5.16 PERL_VERSION= 5.16.3 .elif ${PERL5_DEFAULT} == 5.18 PERL_VERSION= 5.18.4 @@ -88,10 +86,8 @@ PERL_ARCH?= mach PERL_PORT?= perl5.20 .elif ${PERL_LEVEL} >= 501800 PERL_PORT?= perl5.18 -.elif ${PERL_LEVEL} >= 501600 +.else # ${PERL_LEVEL} < 501800 PERL_PORT?= perl5.16 -.else # ${PERL_LEVEL} < 501600 -PERL_PORT?= perl5.14 .endif SITE_PERL_REL?= lib/perl5/site_perl -- cgit