Thu Dec 18 00:35:24 2008 UTC ()
Update from version 0.40 to 0.40nb1.

Pkgsrc changes:
 o Make it possible to select between different YAML modules this module
   should depend on, and depend on p5-YAML by default.  Patch from
   PR#39556 -- thanks!


(he)
diff -r1.14 -r1.15 pkgsrc/devel/p5-PAR-Dist/Makefile

cvs diff -r1.14 -r1.15 pkgsrc/devel/p5-PAR-Dist/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/p5-PAR-Dist/Makefile 2008/11/17 04:20:50 1.14
+++ pkgsrc/devel/p5-PAR-Dist/Makefile 2008/12/18 00:35:24 1.15
@@ -1,22 +1,41 @@ @@ -1,22 +1,41 @@
1# $NetBSD: Makefile,v 1.14 2008/11/17 04:20:50 he Exp $ 1# $NetBSD: Makefile,v 1.15 2008/12/18 00:35:24 he Exp $
2# 2#
3 3
4DISTNAME= PAR-Dist-0.40 4DISTNAME= PAR-Dist-0.40
5PKGNAME= p5-${DISTNAME} 5PKGNAME= p5-${DISTNAME}
 6PKGREVISION= 1
6SVR4_PKGNAME= p5moi 7SVR4_PKGNAME= p5moi
7CATEGORIES= devel perl5 8CATEGORIES= devel perl5
8MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=PAR/} 9MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=PAR/}
9 10
10MAINTAINER= pkgsrc-users@NetBSD.org 11MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://search.cpan.org/dist/PAR-Dist/ 12HOMEPAGE= http://search.cpan.org/dist/PAR-Dist/
12COMMENT= Perl module toolkit to create and manipulate PAR distributions 13COMMENT= Perl module toolkit to create and manipulate PAR distributions
13 14
14BUILD_DEPENDS+= p5-Archive-Zip>0:../../archivers/p5-Archive-Zip 15BUILD_DEPENDS+= p5-Archive-Zip>0:../../archivers/p5-Archive-Zip
15 16
16PKG_DESTDIR_SUPPORT= user-destdir 17PKG_DESTDIR_SUPPORT= user-destdir
17 18
18USE_LANGUAGES= # empty 19USE_LANGUAGES= # empty
19PERL5_PACKLIST= auto/PAR/Dist/.packlist 20PERL5_PACKLIST= auto/PAR/Dist/.packlist
20 21
 22PKG_OPTIONS_VAR= PKG_OPTIONS.p5-PAR-Dist
 23PKG_SUPPORTED_OPTIONS+= # empty
 24PKG_SUGGESTED_OPTIONS+= # empty
 25
 26PKG_OPTIONS_REQUIRED_GROUPS= YAML
 27PKG_OPTIONS_GROUP.YAML= YAML LibYAML YAML-Tiny
 28PKG_SUGGESTED_OPTIONS= YAML
 29
 30.include "../../mk/bsd.options.mk"
 31
 32.if !empty(PKG_OPTIONS:MYAML-Tiny)
 33BUILD_DEPENDS+= p5-YAML-Tiny>=1.25:../../textproc/p5-YAML-Tiny
 34.elif !empty(PKG_OPTIONS:MLibYAML)
 35BUILD_DEPENDS+= p5-LibYAML>=0.03:../../textproc/p5-LibYAML
 36.elif !empty(PKG_OPTIONS:MYAML)
 37BUILD_DEPENDS+= p5-YAML>=0.60:../../textproc/p5-YAML
 38.endif
 39
21.include "../../lang/perl5/module.mk" 40.include "../../lang/perl5/module.mk"
22.include "../../mk/bsd.pkg.mk" 41.include "../../mk/bsd.pkg.mk"