diff options
author | az <az@FreeBSD.org> | 2013-02-04 16:46:42 +0800 |
---|---|---|
committer | az <az@FreeBSD.org> | 2013-02-04 16:46:42 +0800 |
commit | 0bfa1fea1b4b2990e5d35ebc585be28a615a6782 (patch) | |
tree | 682f8db18f2933418c68c9666c8c9b84ab987dbf /Mk | |
parent | 9af973264e617a8c9a53663f558ee2e8d1f082e9 (diff) | |
download | freebsd-ports-gnome-0bfa1fea1b4b2990e5d35ebc585be28a615a6782.tar.gz freebsd-ports-gnome-0bfa1fea1b4b2990e5d35ebc585be28a615a6782.tar.zst freebsd-ports-gnome-0bfa1fea1b4b2990e5d35ebc585be28a615a6782.zip |
- Remove lang/perl5.8 and lang/perl5.10
Reviewed by: bapt@
Approved by: skv@ (implicit via email)
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.perl.mk | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Mk/bsd.perl.mk b/Mk/bsd.perl.mk index 757b52eb0373..9c3ad04803d7 100644 --- a/Mk/bsd.perl.mk +++ b/Mk/bsd.perl.mk @@ -19,14 +19,14 @@ # PERL_VERSION - Full version of perl5 (see below for current value). # PERL_LEVEL - Perl version as an integer of the form MNNNPP, where # M is major version, N is minor version, and P is -# the patch level. E.g., PERL_VERSION=5.8.1 would give -# a PERL_LEVEL of 500801. This can be used in comparisons +# the patch level. E.g., PERL_VERSION=5.14.2 would give +# a PERL_LEVEL of 501402. This can be used in comparisons # to determine if the version of perl is high enough, # whether a particular dependency is needed, etc. # PERL_ARCH - Directory name of architecture dependent libraries # (value: mach). # PERL_PORT - Name of the perl port that is installed -# (value: perl5.8) +# (value: perl5.14) # SITE_PERL - Directory name where site specific perl packages go. # This value is added to PLIST_SUB. # USE_PERL5 - If set, this port uses perl5 in one or more of the extract, @@ -70,12 +70,8 @@ PERL_ARCH?= mach PERL_PORT?= perl5.16 .elif ${PERL_LEVEL} >= 501400 PERL_PORT?= perl5.14 -.elif ${PERL_LEVEL} >= 501200 +.else # ${PERL_LEVEL} < 501400 PERL_PORT?= perl5.12 -.elif ${PERL_LEVEL} >= 501000 -PERL_PORT?= perl5.10 -.else # ${PERL_LEVEL} < 501000 -PERL_PORT?= perl5.8 .endif SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VERSION} |