1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

Add p5-Algorithm-Networksort 1.01,

a perl module that will create inline comparisons for sorting.

PR:		58551
Submitted by:	clsung@dragon2.net
This commit is contained in:
Foxfair Hu 2003-10-28 15:30:46 +00:00
parent 69ee5c4ce8
commit f2811b3fd9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=92459
5 changed files with 53 additions and 0 deletions

View File

@ -497,6 +497,7 @@
SUBDIR += p5-Algorithm-MDiff
SUBDIR += p5-Algorithm-MarkovChain
SUBDIR += p5-Algorithm-NaiveBayes
SUBDIR += p5-Algorithm-Networksort
SUBDIR += p5-Algorithm-Numerical-Shuffle
SUBDIR += p5-Algorithm-Permute
SUBDIR += p5-Alias

View File

@ -0,0 +1,29 @@
# New ports collection makefile for: Algorithm::Networksort
# Date created: Oct 26 2003
# Whom: clsung@dragon2.net
#
# $FreeBSD$
#
PORTNAME= Algorithm-Networksort
PORTVERSION= 1.01
PORTREVISION= 0
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Algorithm
PKGNAMEPREFIX= p5-
MAINTAINER= clsung@dragon2.net
COMMENT= A perl module that will create sorting networks
PERL_CONFIGURE= yes
MAN3= Algorithm::Networksort.3
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500601
IGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1 @@
MD5 (Algorithm-Networksort-1.01.tar.gz) = 64a983aee3568d7d2cba73b1b62c2227

View File

@ -0,0 +1,17 @@
This module will create sorting networks, a sequence of comparisons
that do not depend upon the results of prior comparisons.
There are several algorithms to generate sorting networks. This
module has three of them: Bose and Nelson's, Hibbard's, and
Batcher's Merge Exchange. It also has networks that were found
to be superior in comparison count to those generated automatically
by these algorithms.
There is a flexible formatting function that will allow you to
print out your network in many ways (see documentation). There
is also a graphical output function that will return the network
in an encapsulated postscript, SVG, or text form.
WWW: http://search.cpan.org/dist/Algorithm-Networksort/
Author: John M. Gamble <jgamble@ripco.com>

View File

@ -0,0 +1,5 @@
%%SITE_PERL%%/Algorithm/Networksort.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/Networksort/.packlist
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/Networksort
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm 2>/dev/null || true
@unexec rmdir %D/%%SITE_PERL%%/Algorithm 2>/dev/null || true