diff options
author | jlam <jlam> | 2005-02-24 22:38:41 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-02-24 22:38:41 +0000 |
commit | 3bdb6fa9c5e7b9d844c20c6f862f2f23c333c998 (patch) | |
tree | c96cdee8b1fc0edeb3e3d598eb735386e2aeae9c /devel/p5-Array-Compare | |
parent | 12351353a26657abc2a5f906e4271c97c515e76d (diff) | |
download | pkgsrc-3bdb6fa9c5e7b9d844c20c6f862f2f23c333c998.tar.gz |
* Teach devel/p5-Module-Build to write .packlists just like MakeMaker.pm
does. This allows us to use dynamic PLISTs for Perl modules that are
built using Module::Build. Bump the PKGREVISION of p5-Module-Build
to 1.
* Drop the use of PERL5_USES_MODULE_BUILD and introduce a new variable
PERL5_MODULE_TYPE that is either "MakeMaker" or "Module::Build" that
names the framework used to build/install the module.
* Split out the variables set in perl5/buildlink3.mk that are also used
by perl5/module.mk into a new file perl5/vars.mk. Move some PERL5_*
variable definitions from pkgsrc/mk/bsd.pkg.use.mk into perl5/vars.mk.
This just centralizes the common PERL5_* definitions into a single
file location.
* Convert the known packages that use Module::Build to set
PERL5_MODULE_TYPE and PERL5_PACKLIST:
devel/p5-Class-Container
devel/p5-Exception-Class
devel/p5-Log-Dispatch
devel/p5-Array-Compare
textproc/p5-Pod-Coverage
www/p5-Apache-Session-Wrapper
www/p5-MasonX-Request-WithApacheSession
Diffstat (limited to 'devel/p5-Array-Compare')
-rw-r--r-- | devel/p5-Array-Compare/Makefile | 7 | ||||
-rw-r--r-- | devel/p5-Array-Compare/PLIST | 5 |
2 files changed, 5 insertions, 7 deletions
diff --git a/devel/p5-Array-Compare/Makefile b/devel/p5-Array-Compare/Makefile index c5c2f42d3be..866a1ab6f51 100644 --- a/devel/p5-Array-Compare/Makefile +++ b/devel/p5-Array-Compare/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2005/02/22 00:33:36 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2005/02/24 22:38:42 jlam Exp $ # DISTNAME= Array-Compare-1.11 @@ -12,9 +12,10 @@ COMMENT= Perl extension for comparing arrays #DEPENDS+= p5-Sub-Uplevel-[0-9]*:../../devel/p5-Sub-Uplevel -USE_BUILDLINK3= yes USE_LANGUAGES= # empty -PERL5_USES_MODULE_BUILD= YES +USE_BUILDLINK3= yes +PERL5_MODULE_TYPE= Module::Build +PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Array/Compare/.packlist .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" diff --git a/devel/p5-Array-Compare/PLIST b/devel/p5-Array-Compare/PLIST index a95472f8972..b0fbd3ac777 100644 --- a/devel/p5-Array-Compare/PLIST +++ b/devel/p5-Array-Compare/PLIST @@ -1,4 +1 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2005/02/22 00:33:36 wiz Exp $ -${PERL5_SITELIB}/Array/Compare.pm -lib/perl5/site_perl/man/man3/Array::Compare.3 -@unexec ${RMDIR} %D/${PERL5_SITELIB}/Array 2>/dev/null || ${TRUE} +@comment $NetBSD: PLIST,v 1.2 2005/02/24 22:38:42 jlam Exp $ |