Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
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.

View File

@@ -0,0 +1,29 @@
# $NetBSD: Makefile,v 1.37 2013/05/31 12:40:30 wiz Exp $
DISTNAME= Module-Build-0.4004
PKGNAME= p5-${DISTNAME}0
PKGREVISION= 1
SVR4_PKGNAME= p5mob
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/Module-Build/
COMMENT= Build and install Perl modules
LICENSE= ${PERL5_LICENSE}
DEPENDS+= {perl>=5.14.1,p5-ExtUtils-CBuilder>=0.27}:../../devel/p5-ExtUtils-CBuilder
DEPENDS+= {perl>=5.14.1,p5-ExtUtils-ParseXS>=2.21}:../../devel/p5-ExtUtils-ParseXS
DEPENDS+= {perl>=5.10.1,p5-PathTools>=3.30}:../../devel/p5-PathTools
.include "options.mk"
USE_LANGUAGES= c # For the tests
#BUILDING_MODULE_BUILD= yes
PERL5_MODULE_TYPE= Module::Build
PERL5_PACKLIST= auto/Module/Build/.packlist
# For the tests:
USE_TOOLS+= perl
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.23 2013/04/21 05:27:12 hiramatsu Exp $
SHA1 (Module-Build-0.4004.tar.gz) = f88f719b5208f244ff1959be65d6e4520656cd39
RMD160 (Module-Build-0.4004.tar.gz) = 3e14dadb5494bfafa3df3197aa7ec7564f3f478b
Size (Module-Build-0.4004.tar.gz) = 307445 bytes

View File

@@ -0,0 +1,24 @@
# $NetBSD: options.mk,v 1.4 2010/01/17 17:38:17 sno Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Module-Build
PKG_SUPPORTED_OPTIONS= dist_authoring license_creation ppm_support bundling
PKG_SUGGESTED_OPTIONS= # empty - only for CPAN Authors
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdist_authoring)
DEPENDS+= {perl>=5.10.0,p5-Archive-Tar>=1.09}:../../archivers/p5-Archive-Tar
DEPENDS+= p5-Pod-Readme>=0.04:../../textproc/p5-Pod-Readme
DEPENDS+= p5-Module-Signature>=0.21:../../security/p5-Module-Signature
.endif
.if !empty(PKG_OPTIONS:Mlicense_creation)
DEPENDS+= p5-Software-License-[0-9]*:../../devel/p5-Software-License
.endif
.if !empty(PKG_OPTIONS:Mppm_support)
DEPENDS+= {perl>=5.10.1,p5-IO>=1.13}:../../devel/p5-IO
.endif
.if !empty(PKG_OPTIONS:Mbundling)
# contains required ExtUtils::Installed>=1.999_001
DEPENDS+= {perl>=5.10.1,p5-ExtUtils-Install>=1.54}:../../devel/p5-ExtUtils-Install
.endif