a9dd17e584
the plugging of several memory leaks, fixes to the regular expression engine, the addition of a Unicode character classes, better support for 64-bit platorms, and updates of many modules in the base Perl Library. See perldelta.pod for more details. Also update p5-Data-Dumper, p5-Devel-DProf, and p5-Devel-Peek to the latest versions distributed with the perl-5.6.1 sources, and libperl to 5.6.1 to match the perl package.
43 lines
969 B
Makefile
43 lines
969 B
Makefile
# $NetBSD: Makefile,v 1.20 2001/06/07 04:25:33 jlam Exp $
|
|
|
|
.include "../../lang/perl5/Makefile.common"
|
|
|
|
PKGNAME= libperl-${PERL5_VERS}
|
|
PERL5_PKG_VERS= # empty
|
|
CATEGORIES+= lang devel
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
HOMEPAGE= http://language.perl.com/index.html
|
|
COMMENT= Perl DynaLoader as a shared object
|
|
|
|
USE_PERL5= # defined
|
|
PERL_REQD= ${PERL5_DIST_VERS}
|
|
|
|
EXTRACT_ELEMENTS= ${DISTNAME}/ext/DynaLoader
|
|
WRKSRC= ${WRKDIR}/${EXTRACT_ELEMENTS}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
MKPIC?= yes
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
.if !exists(/usr/libexec/ld.elf_so) && !exists(/usr/libexec/ld.so)
|
|
MKPIC= no
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MKPIC} == "no"
|
|
IGNORE= ${PKGNAME} needs shared objects
|
|
.endif
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} -f ${MAKEFILE} DynaLoader.o
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/DynaLoader.o ${PERL5_ARCHLIB}/DynaLoader_pic.o
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|