Date: Sun, 12 Aug 2007 16:56:10 GMT From: Gabor Kovesdan <gabor@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 125086 for review Message-ID: <200708121656.l7CGuA9P000819@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=125086 Change 125086 by gabor@gabor_server on 2007/08/12 16:55:09 - Make PERL_CONFIGURE, PERL_MODBUILD, USE_PERL5_BUILD and USE_PERL5_RUN accept the new versioned syntax. Affected files ... .. //depot/projects/soc2007/gabor_perlmk/Mk/bsd.perl.mk#19 edit Differences ... ==== //depot/projects/soc2007/gabor_perlmk/Mk/bsd.perl.mk#19 (text+ko) ==== @@ -130,6 +130,13 @@ .endif .endif #defined(USE_PERL5) && ${USE_PERL5} != "yes" +.if defined(USE_PERL5_RUN) +USE_PERL5= ${USE_PERL5_RUN} +.endif +.if defined(USE_PERL5_BUILD) +USE_PERL5= ${USE_PERL5_BUILD} +.endif + SITE_PERL_REL?= lib/perl5/site_perl/${PERL_VER} SITE_PERL?= ${LOCALBASE}/${SITE_PERL_REL} @@ -142,7 +149,7 @@ SITE_PERL=${SITE_PERL_REL} .if defined(PERL_MODBUILD) -PERL_CONFIGURE= yes +PERL_CONFIGURE= ${PERL_MODBUILD} CONFIGURE_SCRIPT?= Build.PL .if ${PORTNAME} != Module-Build BUILD_DEPENDS+= ${SITE_PERL}/Module/Build.pm:${PORTSDIR}/devel/p5-Module-Build @@ -162,7 +169,7 @@ .endif .if defined(PERL_CONFIGURE) -USE_PERL5= yes +USE_PERL5= ${PERL_CONFIGURE} .if defined(BATCH) && !defined(IS_INTERACTIVE) CONFIGURE_ENV+= PERL_MM_USE_DEFAULT="YES" .endif # defined(BATCH) && !defined(IS_INTERACTIVE)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200708121656.l7CGuA9P000819>