diff options
author | abs <abs@pkgsrc.org> | 2008-05-30 11:52:39 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2008-05-30 11:52:39 +0000 |
commit | 5261992cf5c392e50ad5c63b39fb36b3a9edf32b (patch) | |
tree | fd57268f4accabedddbf0dd13818d3e976a76f87 /devel | |
parent | ceaca2c3bde5a96bc16c356bd7d79ea0aefe7c1f (diff) | |
download | pkgsrc-5261992cf5c392e50ad5c63b39fb36b3a9edf32b.tar.gz |
Add devel/p5-parent-0.221
Allows you to both load one or more modules, while setting up
inheritance from those modules at the same time. Mostly similar in
effect to:
package Baz;
BEGIN {
require Foo;
require Bar;
push @ISA, qw(Foo Bar);
}
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-parent/DESCR | 10 | ||||
-rw-r--r-- | devel/p5-parent/Makefile | 19 | ||||
-rw-r--r-- | devel/p5-parent/distinfo | 5 |
3 files changed, 34 insertions, 0 deletions
diff --git a/devel/p5-parent/DESCR b/devel/p5-parent/DESCR new file mode 100644 index 00000000000..7bbc2b8c602 --- /dev/null +++ b/devel/p5-parent/DESCR @@ -0,0 +1,10 @@ +Allows you to both load one or more modules, while setting up +inheritance from those modules at the same time. Mostly similar in +effect to: + + package Baz; + BEGIN { + require Foo; + require Bar; + push @ISA, qw(Foo Bar); + } diff --git a/devel/p5-parent/Makefile b/devel/p5-parent/Makefile new file mode 100644 index 00000000000..9b008a1abb7 --- /dev/null +++ b/devel/p5-parent/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2008/05/30 11:52:39 abs Exp $ +# + +DISTNAME= parent-0.221 +PKGNAME= p5-${DISTNAME} +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/C/CO/CORION/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://search.cpan.org/~corion/parent/ +COMMENT= Establish an ISA relationship with base classes at compile time + +USE_LANGUAGES= # empty +PERL5_PACKLIST= auto/parent/.packlist + +PKG_DESTDIR_SUPPORT= user-destdir + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/devel/p5-parent/distinfo b/devel/p5-parent/distinfo new file mode 100644 index 00000000000..3f4327a963c --- /dev/null +++ b/devel/p5-parent/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2008/05/30 11:52:39 abs Exp $ + +SHA1 (parent-0.221.tar.gz) = 9d1be72537fe83d68acca0532c502868ce0eefa1 +RMD160 (parent-0.221.tar.gz) = 7ee181cccbd5245f951658eadff4761579379e69 +Size (parent-0.221.tar.gz) = 5061 bytes |