diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2006-12-20 06:26:28 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2006-12-20 06:26:28 +0000 |
commit | 177be7e47824265e40d2bad159d099e75ae173d4 (patch) | |
tree | 03f83060ddd92bca64c34c38a30c96b2ef1acfe7 | |
parent | f5fb853283e73e1551edbc0bf00cae9515f2b5a5 (diff) |
Notes
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-Sort-Maker/Makefile | 22 | ||||
-rw-r--r-- | devel/p5-Sort-Maker/distinfo | 3 | ||||
-rw-r--r-- | devel/p5-Sort-Maker/pkg-descr | 8 | ||||
-rw-r--r-- | devel/p5-Sort-Maker/pkg-plist | 4 |
5 files changed, 38 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 9972d7681ff5..eda8dcd0a46d 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1373,6 +1373,7 @@ SUBDIR += p5-Sort-ArrayOfArrays SUBDIR += p5-Sort-Key SUBDIR += p5-Sort-Key-DateTime + SUBDIR += p5-Sort-Maker SUBDIR += p5-Sort-Tree SUBDIR += p5-Sort-Versions SUBDIR += p5-Spiffy diff --git a/devel/p5-Sort-Maker/Makefile b/devel/p5-Sort-Maker/Makefile new file mode 100644 index 000000000000..a92b1b71adb5 --- /dev/null +++ b/devel/p5-Sort-Maker/Makefile @@ -0,0 +1,22 @@ +# ex:ts=8 +# Ports collection makefile for: Sort::Maker +# Date created: Dec 20, 2006 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= Sort-Maker +DISTVERSION= 0.05 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= A simple way to make efficient sort subs + +PERL_CONFIGURE= yes + +MAN3= Sort::Maker.3 + +.include <bsd.port.mk> diff --git a/devel/p5-Sort-Maker/distinfo b/devel/p5-Sort-Maker/distinfo new file mode 100644 index 000000000000..94c695bb5be2 --- /dev/null +++ b/devel/p5-Sort-Maker/distinfo @@ -0,0 +1,3 @@ +MD5 (Sort-Maker-0.05.tar.gz) = 36db37d9acddfcc682740a4ee3e38ac5 +SHA256 (Sort-Maker-0.05.tar.gz) = 28a59554896767dec74dfc86c3db4c2f707cf02921ef9abb66588904c950c099 +SIZE (Sort-Maker-0.05.tar.gz) = 23668 diff --git a/devel/p5-Sort-Maker/pkg-descr b/devel/p5-Sort-Maker/pkg-descr new file mode 100644 index 000000000000..2381e83ef3d2 --- /dev/null +++ b/devel/p5-Sort-Maker/pkg-descr @@ -0,0 +1,8 @@ +This module has two main goals: to make it easy to create correct sort +functions, and to make it simple to select the optimum sorting algorithm +for the number of items to be sorted. Sort::Maker generates complete +sort subroutines in one of four styles, plain, orcish manouver, +Schwartzian Transform and the Guttman-Rosler Transform. You can also get +the source for a sort sub you create via the sorter_source call. + +WWW: http://search.cpan.org/dist/Sort-Maker/ diff --git a/devel/p5-Sort-Maker/pkg-plist b/devel/p5-Sort-Maker/pkg-plist new file mode 100644 index 000000000000..9f3858506811 --- /dev/null +++ b/devel/p5-Sort-Maker/pkg-plist @@ -0,0 +1,4 @@ +%%SITE_PERL%%/Sort/Maker.pm +@dirrmtry %%SITE_PERL%%/Sort +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort |