1f337496f7
* Several modules were updated to fix minor bugs. * Tests were fixed. * Documentation was improved. Changes 5.14.0: * Unicode version 6.0 is now supported. * Regular expressions can now be reset to the default modifiers. * Four new regular expression modifiers, "/d", "/l" , "/u", and "/a", were introduced. * The substitution operators now support the modifier "/r" to work non-destructively, leaving the original unmodified. * Larger octals can now be specified. * Array and hash operators can now experimentally operate directly on hard references. * printf-like functions now understand post-1980 size modifiers. * Exception handling was made more reliable and consistent. * Other enhancements and many bug fixes were made PkgSrc: * Fixed configuring on Mac OS X 10.7.
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# $NetBSD: buildlink3.mk,v 1.48 2011/08/05 18:06:14 adam Exp $
|
|
|
|
BUILDLINK_TREE+= perl
|
|
|
|
.if !defined(PERL_BUILDLINK3_MK)
|
|
PERL_BUILDLINK3_MK:=
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
PERL5_REQD+= 5.14.0
|
|
.for _perl5_ver_ in ${PERL5_REQD}
|
|
BUILDLINK_API_DEPENDS.perl+= perl>=${_perl5_ver_}
|
|
.endfor
|
|
# Prevent p5-* etc. packages built for 5.14.0 to be used
|
|
# with the next incompatible version of perl:
|
|
BUILDLINK_API_DEPENDS.perl+= perl<5.16.0
|
|
|
|
BUILDLINK_PKGSRCDIR.perl?= ../../lang/perl5
|
|
|
|
FIND_PREFIX:= PERLDIR=perl
|
|
.include "../../mk/find-prefix.mk"
|
|
PERL5= ${PERLDIR}/bin/perl
|
|
|
|
pkgbase := perl
|
|
.include "../../mk/pkg-build-options.mk"
|
|
|
|
PERL5_OPTIONS?= # empty
|
|
.if !empty(PERL5_OPTIONS:Mthreads)
|
|
INSTALL_TEMPLATES+= ${.CURDIR}/../../lang/perl5/files/install_threads.tmpl
|
|
.endif
|
|
|
|
.if ${PKG_INSTALLATION_TYPE} == "overwrite"
|
|
#
|
|
# Perl keeps headers and odd libraries in an odd path not caught by the
|
|
# default BUILDLINK_FILES_CMD, so name them to be symlinked into
|
|
# ${BUILDLINK_DIR}.
|
|
#
|
|
.include "../../lang/perl5/vars.mk"
|
|
BUILDLINK_FILES.perl= ${PERL5_SUB_INSTALLARCHLIB}/CORE/*
|
|
.endif
|
|
.endif # PERL_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -perl
|