From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 31 15:21:17 2005 Return-Path: X-Original-To: freebsd-ports-bugs@FreeBSD.org Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EDC616A41F; Sun, 31 Jul 2005 15:21:17 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from priv-edmwes26.telusplanet.net (defout.telus.net [204.209.205.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11BCE43D45; Sun, 31 Jul 2005 15:21:16 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from [192.168.15.100] (really [137.186.246.196]) by priv-edmwes26.telusplanet.net (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050731152116.IMB20234.priv-edmwes26.telusplanet.net@[192.168.15.100]>; Sun, 31 Jul 2005 09:21:16 -0600 Message-ID: <42ECEC9B.5080905@daltons.ca> Date: Sun, 31 Jul 2005 09:22:03 -0600 From: Aaron Dalton User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sergey Matveychuk References: <200507311256.j6VCuQLs020230@freefall.freebsd.org> In-Reply-To: <200507311256.j6VCuQLs020230@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------020103070803080006030607" Cc: freebsd-ports-bugs@FreeBSD.org, bug-followup@FreeBSD.org Subject: Re: ports/82885: New Port: devel/p5-Tree-Node X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jul 2005 15:21:17 -0000 This is a multi-part message in MIME format. --------------020103070803080006030607 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sorry for the oversight. I have changed the Makefile to PERL_MODBUILD instead of _CONFIGURE. Odd that I didn't receive that same error when I built the port. Anyway, attached is the new shell archive. If you have any further problems, let me know. Sorry again for the bother! Cheers! Aaron --------------020103070803080006030607 Content-Type: text/plain; name="submission.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="submission.txt" # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Tree-Node # p5-Tree-Node/Makefile # p5-Tree-Node/distinfo # p5-Tree-Node/pkg-descr # p5-Tree-Node/pkg-plist # echo c - p5-Tree-Node mkdir -p p5-Tree-Node > /dev/null 2>&1 echo x - p5-Tree-Node/Makefile sed 's/^X//' >p5-Tree-Node/Makefile << 'END-of-p5-Tree-Node/Makefile' X# New ports collection makefile for: p5-Tree-Node X# Date created: 01 July 2005 X# Whom: Aaron Dalton X# X# $FreeBSD$ X# X XPORTNAME= Tree-Node XPORTVERSION= 0.06 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Tree XPKGNAMEPREFIX= p5- X XMAINTAINER= aaron@daltons.ca XCOMMENT= Memory-efficient tree nodes in Perl X XPERL_MODBUILD= yes X XMAN3= Tree::Node.3 X X.include END-of-p5-Tree-Node/Makefile echo x - p5-Tree-Node/distinfo sed 's/^X//' >p5-Tree-Node/distinfo << 'END-of-p5-Tree-Node/distinfo' XMD5 (Tree-Node-0.06.tar.gz) = 667894c4e717e7f4f609e31c1db69aac XSIZE (Tree-Node-0.06.tar.gz) = 50886 END-of-p5-Tree-Node/distinfo echo x - p5-Tree-Node/pkg-descr sed 's/^X//' >p5-Tree-Node/pkg-descr << 'END-of-p5-Tree-Node/pkg-descr' XThis module implements a memory-efficient node type (for trees, skip lists Xand similar data structures) for Perl. X XYou may ask "Why bother implementing an ordered structure such as a tree Xwhen Perl has hashes built-in?" Since Perl is optimized for speed over Xmemory usage, hashes (and lists) use a lot of memory. X XSo the purpose of this package is to provide a simple low-level Node class Xwhich can be used as a base class to implement various kinds of tree Xstructures. Each node has a key/value pair and a variable number of X"children" pointers. X XHow nodes are organized or the algorithm used to organize them is for you Xto implement. X XThere is no Pure-perl version because this package was written to overcome Xlimitations of Perl. X XWWW: http://search.cpan.org/dist/Tree-Node/ XAuthor: Robert Rothenberg X X- Aaron Dalton Xaaron@daltons.ca END-of-p5-Tree-Node/pkg-descr echo x - p5-Tree-Node/pkg-plist sed 's/^X//' >p5-Tree-Node/pkg-plist << 'END-of-p5-Tree-Node/pkg-plist' X%%SITE_PERL%%/%%PERL_ARCH%%/Tree/Node.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/.packlist X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.bs X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node/Node.so X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree/Node X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Tree 2>/dev/null || true X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/Tree 2>/dev/null || true X END-of-p5-Tree-Node/pkg-plist exit --------------020103070803080006030607--