diff options
author | adam <adam@pkgsrc.org> | 2014-05-29 07:57:07 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2014-05-29 07:57:07 +0000 |
commit | c8c082bc50334336f37be16fe0f140e2d70b05d8 (patch) | |
tree | ed16a7aae844e7e59ad43abd2b8e329739c94b49 /lang/perl5/Makefile | |
parent | 21fa385fc752cd931892b08658eea443a3f8f4a2 (diff) | |
download | pkgsrc-c8c082bc50334336f37be16fe0f140e2d70b05d8.tar.gz |
Changes 5.20.0:
Experimental Subroutine signatures
subs now take a prototype attribute
More consistent prototype parsing
rand now uses a consistent random number generator
New slice syntax
Experimental Postfix Dereferencing
Unicode 6.3 now supported
New \p{Unicode} regular expression pattern property
Better 64-bit support
use locale now works on UTF-8 locales
use locale now compiles on systems without locale ability
More locale initialization fallback options
-DL runtime option now added for tracing locale setting
-F now implies -a and -a implies -n
$a and $b warnings exemption
Diffstat (limited to 'lang/perl5/Makefile')
-rw-r--r-- | lang/perl5/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lang/perl5/Makefile b/lang/perl5/Makefile index 484fe2de3a5..9485407a322 100644 --- a/lang/perl5/Makefile +++ b/lang/perl5/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.220 2014/05/10 13:45:57 richard Exp $ +# $NetBSD: Makefile,v 1.221 2014/05/29 07:57:07 adam Exp $ .include "license.mk" .include "Makefile.common" -PKGREVISION= 2 COMMENT= Practical Extraction and Report Language CONFLICTS+= perl-base-[0-9]* perl-thread-[0-9]* @@ -284,11 +283,11 @@ SUBST_FILES.dirmode= installhtml install_lib.pl \ SUBST_SED.dirmode= -e "s/755/${PKGDIRMODE}/g;/umask(/d" post-extract: - cp ${FILESDIR}/Policy.sh ${WRKSRC}/Policy.sh - cp ${FILESDIR}/cpan-DB_File-hints-netbsd.pl \ - ${WRKSRC}/cpan/DB_File/hints/netbsd.pl - cp ${FILESDIR}/cpan-DB_File-hints-openbsd.pl \ - ${WRKSRC}/cpan/DB_File/hints/openbsd.pl + cp ${FILESDIR}/Policy.sh ${WRKSRC}/Policy.sh + cp ${FILESDIR}/cpan-DB_File-hints-netbsd.pl \ + ${WRKSRC}/cpan/DB_File/hints/netbsd.pl + cp ${FILESDIR}/cpan-DB_File-hints-openbsd.pl \ + ${WRKSRC}/cpan/DB_File/hints/openbsd.pl pre-configure: cd ${WRKSRC} && find `pwd` -name "*.orig" -type f -exec ${RM} -f {} \; |