diff options
author | demon <demon@FreeBSD.org> | 2004-07-07 21:20:11 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2004-07-07 21:20:11 +0800 |
commit | 9dbcd9b6ebc50848036473459734791c98c04297 (patch) | |
tree | db57b1c75c0cbd91e0f5aa9b752f140bb1a99178 /devel | |
parent | 41f80559fca5a97b02b4028c7e4414ace33c8b62 (diff) | |
download | freebsd-ports-gnome-9dbcd9b6ebc50848036473459734791c98c04297.tar.gz freebsd-ports-gnome-9dbcd9b6ebc50848036473459734791c98c04297.tar.zst freebsd-ports-gnome-9dbcd9b6ebc50848036473459734791c98c04297.zip |
New port: Tree::Simple.
This module in an fully object-oriented implementation of a simple n-
ary tree. It is built upon the concept of parent-child relationships,
so therefore every Tree::Simple object has both a parent and a set of
children (who themselves may have children, and so on). Every
Tree::Simple object also has siblings, as they are just the children of
their immediate parent.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-Tree-Simple/Makefile | 22 | ||||
-rw-r--r-- | devel/p5-Tree-Simple/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Tree-Simple/pkg-descr | 6 | ||||
-rw-r--r-- | devel/p5-Tree-Simple/pkg-plist | 4 |
5 files changed, 35 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index c12bd985bfd0..1e3c4c9bc845 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -966,6 +966,7 @@ SUBDIR += p5-TimeDate SUBDIR += p5-TraceFuncs SUBDIR += p5-Tree-DAG_Node + SUBDIR += p5-Tree-Simple SUBDIR += p5-UNIVERSAL-exports SUBDIR += p5-UNIVERSAL-moniker SUBDIR += p5-Unix-Statgrab diff --git a/devel/p5-Tree-Simple/Makefile b/devel/p5-Tree-Simple/Makefile new file mode 100644 index 000000000000..d958307627ef --- /dev/null +++ b/devel/p5-Tree-Simple/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: Tree::Simple +# Date created: 7 July 2004 +# Whom: Dmitry Sivachenko <demon@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= Tree-Simple +PORTVERSION= 1.06 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Tree +PKGNAMEPREFIX= p5- + +MAINTAINER= ports@FreeBSD.org +COMMENT= A simple tree object + +PERL_CONFIGURE= yes + +MAN3= Tree::Simple.3 Tree::Simple::Visitor.3 + +.include <bsd.port.mk> diff --git a/devel/p5-Tree-Simple/distinfo b/devel/p5-Tree-Simple/distinfo new file mode 100644 index 000000000000..a78bfc5a7355 --- /dev/null +++ b/devel/p5-Tree-Simple/distinfo @@ -0,0 +1,2 @@ +MD5 (Tree-Simple-1.06.tar.gz) = 0d39b93b643e1aa7b6b7c57c40ebf41b +SIZE (Tree-Simple-1.06.tar.gz) = 23019 diff --git a/devel/p5-Tree-Simple/pkg-descr b/devel/p5-Tree-Simple/pkg-descr new file mode 100644 index 000000000000..b8f1f952d3d7 --- /dev/null +++ b/devel/p5-Tree-Simple/pkg-descr @@ -0,0 +1,6 @@ +This module in an fully object-oriented implementation of a simple n- +ary tree. It is built upon the concept of parent-child relationships, +so therefore every Tree::Simple object has both a parent and a set of +children (who themselves may have children, and so on). Every +Tree::Simple object also has siblings, as they are just the children of +their immediate parent. diff --git a/devel/p5-Tree-Simple/pkg-plist b/devel/p5-Tree-Simple/pkg-plist new file mode 100644 index 000000000000..9f8214d9d2cc --- /dev/null +++ b/devel/p5-Tree-Simple/pkg-plist @@ -0,0 +1,4 @@ +%%SITE_PERL%%/Tree/Simple.pm +%%SITE_PERL%%/Tree/Simple/Visitor.pm +@dirrm %%SITE_PERL%%/Tree/Simple +@unexec rmdir %D/%%SITE_PERL%%/Tree 2>/dev/null || true |