diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2005-03-11 14:49:35 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2005-03-11 14:49:35 +0000 |
commit | 9a8237356347c86062ca2c5e2200a4ac580df16a (patch) | |
tree | f5b256654c4428054d830670e71984fffc2422a8 | |
parent | 354a0220d1c197268bdd8439335f7f4d7fb25c43 (diff) | |
download | ports-9a8237356347c86062ca2c5e2200a4ac580df16a.tar.gz ports-9a8237356347c86062ca2c5e2200a4ac580df16a.zip |
Notes
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-Algorithm-ChooseSubsets/Makefile | 28 | ||||
-rw-r--r-- | devel/p5-Algorithm-ChooseSubsets/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Algorithm-ChooseSubsets/pkg-descr | 12 | ||||
-rw-r--r-- | devel/p5-Algorithm-ChooseSubsets/pkg-plist | 5 |
5 files changed, 48 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index c65461c74915..3ecbecad94c4 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -615,6 +615,7 @@ SUBDIR += p5-Agent SUBDIR += p5-Algorithm-Accounting SUBDIR += p5-Algorithm-Annotate + SUBDIR += p5-Algorithm-ChooseSubsets SUBDIR += p5-Algorithm-Cluster SUBDIR += p5-Algorithm-Diff SUBDIR += p5-Algorithm-Evolutionary diff --git a/devel/p5-Algorithm-ChooseSubsets/Makefile b/devel/p5-Algorithm-ChooseSubsets/Makefile new file mode 100644 index 000000000000..6955aa18a78a --- /dev/null +++ b/devel/p5-Algorithm-ChooseSubsets/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: Algorithm::ChooseSubsets +# Date created: 04 Mar 2005 +# Whom: lars.eggert@gmx.net +# +# $FreeBSD$ +# + +PORTNAME= Algorithm-ChooseSubsets +PORTVERSION= 0.01 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Algorithm +PKGNAMEPREFIX= p5- + +MAINTAINER= lars.eggert@gmx.net +COMMENT= Perl algorithm to iterate through subsets of a list + +PERL_CONFIGURE= yes + +MAN3= Algorithm::ChooseSubsets.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500600 +IGNORE= "Needs perl 5.6.0 or higher, install lang/perl5.6 and try again" +.endif + +.include <bsd.port.post.mk> diff --git a/devel/p5-Algorithm-ChooseSubsets/distinfo b/devel/p5-Algorithm-ChooseSubsets/distinfo new file mode 100644 index 000000000000..d42529fa255c --- /dev/null +++ b/devel/p5-Algorithm-ChooseSubsets/distinfo @@ -0,0 +1,2 @@ +MD5 (Algorithm-ChooseSubsets-0.01.tar.gz) = cf3f0e764ee048872c1888d5a2898223 +SIZE (Algorithm-ChooseSubsets-0.01.tar.gz) = 2785 diff --git a/devel/p5-Algorithm-ChooseSubsets/pkg-descr b/devel/p5-Algorithm-ChooseSubsets/pkg-descr new file mode 100644 index 000000000000..c55b830eb83e --- /dev/null +++ b/devel/p5-Algorithm-ChooseSubsets/pkg-descr @@ -0,0 +1,12 @@ +Perl algorithm to iterate through subsets of a list. + +"Subsets" in this context refers to lists with elements taken +from the original list, and in the same order as the elements in the +original list. After creating the object, subsequent calls to next() +will return the next such list in lexicographic order (where the alphabet +is the original list). + +WWW: http://search.cpan.org/~bduggan/Algorithm-ChooseSubsets/ + +- Brian Duggan +bduggan@matatu.org diff --git a/devel/p5-Algorithm-ChooseSubsets/pkg-plist b/devel/p5-Algorithm-ChooseSubsets/pkg-plist new file mode 100644 index 000000000000..3d91514a836b --- /dev/null +++ b/devel/p5-Algorithm-ChooseSubsets/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/Algorithm/ChooseSubsets.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/ChooseSubsets/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/ChooseSubsets +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Algorithm 2>/dev/null || true |