Update to version 0.19.
PR: 54320 Submitted by: Mathieu Arnold <m@absolight.net>
This commit is contained in:
parent
36a9edf555
commit
03b2acb470
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=84609
4 changed files with 23 additions and 13 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= Module-Build
|
||||
PORTVERSION= 0.18
|
||||
PORTVERSION= 0.19
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Module
|
||||
|
@ -15,8 +15,7 @@ PKGNAMEPREFIX= p5-
|
|||
MAINTAINER= demon@FreeBSD.org
|
||||
COMMENT= Build and install Perl modules
|
||||
|
||||
BUILD_DEPENDS= ${SITE_PERL}/Module/Info.pm:${PORTSDIR}/devel/p5-Module-Info \
|
||||
${SITE_PERL}/Archive/Tar.pm:${PORTSDIR}/archivers/p5-Archive-Tar \
|
||||
BUILD_DEPENDS= ${SITE_PERL}/Archive/Tar.pm:${PORTSDIR}/archivers/p5-Archive-Tar \
|
||||
${SITE_PERL}/YAML.pm:${PORTSDIR}/textproc/p5-YAML
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
|
@ -27,5 +26,8 @@ PERL_CONFIGURE= yes
|
|||
.if ${PERL_LEVEL} > 500600
|
||||
BUILD_DEPENDS+= ${SITE_PERL}/ExtUtils/ParseXS.pm:${PORTSDIR}/devel/p5-ExtUtils-ParseXS
|
||||
.endif
|
||||
.if ${PERL_LEVEL} < 500600
|
||||
BUILD_DEPENDS+= ${SITE_PERL}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (Module-Build-0.18.tar.gz) = 18f35dc7e5751f8e56554f564293d0bc
|
||||
MD5 (Module-Build-0.19.tar.gz) = c1647888d63033446583f9697fb7b426
|
||||
|
|
|
@ -1,2 +1,8 @@
|
|||
Module::Build is a means for build and install Perl modules.
|
||||
It is meant to be a replacement for ExtUtils::MakeMaker.
|
||||
Module::Build is a system for building, testing, and installing Perl modules.
|
||||
It is meant to be a replacement for ExtUtils::MakeMaker. Developers may alter
|
||||
the behavior of the module through subclassing in a much more straightforward
|
||||
way than with MakeMaker. It also does not require a make on your system - most
|
||||
of the Module::Build code is pure-perl and written in a very cross-platform
|
||||
way.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Module-Build/
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
%%SITE_PERL%%/Module/Build.pm
|
||||
%%SITE_PERL%%/Module/Build/Base.pm
|
||||
%%SITE_PERL%%/Module/Build/Compat.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/Amiga.pm
|
||||
%%SITE_PERL%%/Module/Build/Base.pm
|
||||
%%SITE_PERL%%/Module/Build/PPMMaker.pm
|
||||
%%SITE_PERL%%/Module/Build/Cookbook.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/darwin.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/Default.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/EBCDIC.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/MacOS.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/MPEiX.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/RiscOS.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/Unix.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/VMS.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/VOS.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/Windows.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/Unix.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/Amiga.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/EBCDIC.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/MPEiX.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/VMS.pm
|
||||
%%SITE_PERL%%/Module/Build/Platform/Default.pm
|
||||
@dirrm %%SITE_PERL%%/Module/Build/Platform
|
||||
@dirrm %%SITE_PERL%%/Module/Build
|
||||
@unexec rmdir %D/%%SITE_PERL%%/Module 2>/dev/null || true
|
||||
|
|
Loading…
Reference in a new issue