diff options
author | vanilla <vanilla@FreeBSD.org> | 2001-05-27 13:42:57 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2001-05-27 13:42:57 +0800 |
commit | b8b8e1f38b25c269bf46b9d25eaca9f5d25f0ae5 (patch) | |
tree | 2e615c8784d3ba826248f0cb715666c3888816ad /textproc/p5-Tree-Nary | |
parent | ea5a3c55acfd7e2e1dc5d9da9153cef629255ccc (diff) | |
download | freebsd-ports-gnome-b8b8e1f38b25c269bf46b9d25eaca9f5d25f0ae5.tar.gz freebsd-ports-gnome-b8b8e1f38b25c269bf46b9d25eaca9f5d25f0ae5.tar.zst freebsd-ports-gnome-b8b8e1f38b25c269bf46b9d25eaca9f5d25f0ae5.zip |
Perl implementation of N-ary search trees
PR: ports/27443
Submitted by: Seamus Venasse <svenasse@polaris.ca>
Diffstat (limited to 'textproc/p5-Tree-Nary')
-rw-r--r-- | textproc/p5-Tree-Nary/Makefile | 22 | ||||
-rw-r--r-- | textproc/p5-Tree-Nary/distinfo | 1 | ||||
-rw-r--r-- | textproc/p5-Tree-Nary/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/p5-Tree-Nary/pkg-descr | 9 | ||||
-rw-r--r-- | textproc/p5-Tree-Nary/pkg-plist | 5 |
5 files changed, 38 insertions, 0 deletions
diff --git a/textproc/p5-Tree-Nary/Makefile b/textproc/p5-Tree-Nary/Makefile new file mode 100644 index 000000000000..1f4d0648f814 --- /dev/null +++ b/textproc/p5-Tree-Nary/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: Tree:Nary +# Date created: 18 May 2001 +# Whom: svenasse +# +# $FreeBSD$ +# + +PORTNAME= Tree-Nary +PORTVERSION= 1.1 +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Tree +PKGNAMEPREFIX= p5- + +MAINTAINER= svenasse@polaris.ca + +PERL_CONFIGURE= yes + +MAN3= Tree::Nary.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> diff --git a/textproc/p5-Tree-Nary/distinfo b/textproc/p5-Tree-Nary/distinfo new file mode 100644 index 000000000000..88f604a48ea7 --- /dev/null +++ b/textproc/p5-Tree-Nary/distinfo @@ -0,0 +1 @@ +MD5 (Tree-Nary-1.1.tar.gz) = 5add379acd8aeb1d93715cc2768eeff5 diff --git a/textproc/p5-Tree-Nary/pkg-comment b/textproc/p5-Tree-Nary/pkg-comment new file mode 100644 index 000000000000..22ff8c34f494 --- /dev/null +++ b/textproc/p5-Tree-Nary/pkg-comment @@ -0,0 +1 @@ +Perl implementation of N-ary search trees diff --git a/textproc/p5-Tree-Nary/pkg-descr b/textproc/p5-Tree-Nary/pkg-descr new file mode 100644 index 000000000000..7ed27d1824d2 --- /dev/null +++ b/textproc/p5-Tree-Nary/pkg-descr @@ -0,0 +1,9 @@ +The Tree::Nary class implements N-ary trees (trees of data with any +number of branches), providing the organizational structure for a +tree (collection) of any number of nodes, but knowing nothing about +the specific type of node used. It can be used to display +hierarchical database entries in an internal application (the NIS +netgroup file is an example of such a database). It offers the +capability to select nodes on the tree, and attachment points for +nodes on the tree. Each attachment point can support multiple +child nodes. diff --git a/textproc/p5-Tree-Nary/pkg-plist b/textproc/p5-Tree-Nary/pkg-plist new file mode 100644 index 000000000000..fff56a5e9e1f --- /dev/null +++ b/textproc/p5-Tree-Nary/pkg-plist @@ -0,0 +1,5 @@ +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Tree/Nary/.packlist +lib/perl5/site_perl/%%PERL_VER%%/Tree/Nary.pm +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Tree/Nary +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Tree 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Tree 2>/dev/null || true |