From 9dbcd9b6ebc50848036473459734791c98c04297 Mon Sep 17 00:00:00 2001 From: demon Date: Wed, 7 Jul 2004 13:20:11 +0000 Subject: 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. --- devel/Makefile | 1 + devel/p5-Tree-Simple/Makefile | 22 ++++++++++++++++++++++ devel/p5-Tree-Simple/distinfo | 2 ++ devel/p5-Tree-Simple/pkg-descr | 6 ++++++ devel/p5-Tree-Simple/pkg-plist | 4 ++++ 5 files changed, 35 insertions(+) create mode 100644 devel/p5-Tree-Simple/Makefile create mode 100644 devel/p5-Tree-Simple/distinfo create mode 100644 devel/p5-Tree-Simple/pkg-descr create mode 100644 devel/p5-Tree-Simple/pkg-plist (limited to 'devel') 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 +# +# $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 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 -- cgit