From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 27 00:40:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E87E216A4CE for ; Fri, 27 Aug 2004 00:40:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAE1343D1F for ; Fri, 27 Aug 2004 00:40:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i7R0eNTQ012376 for ; Fri, 27 Aug 2004 00:40:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7R0eNFW012375; Fri, 27 Aug 2004 00:40:23 GMT (envelope-from gnats) Resent-Date: Fri, 27 Aug 2004 00:40:23 GMT Resent-Message-Id: <200408270040.i7R0eNFW012375@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aaron Dalton Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C42516A4CE for ; Fri, 27 Aug 2004 00:39:15 +0000 (GMT) Received: from priv-edtnes40.telusplanet.net (outbound05.telus.net [199.185.220.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2822C43D58 for ; Fri, 27 Aug 2004 00:39:15 +0000 (GMT) (envelope-from aaron@daltons.ca) Received: from galan.daltons.ca ([137.186.239.215]) by priv-edtnes40.telusplanet.netESMTP <20040827003914.ZGCG18063.priv-edtnes40.telusplanet.net@galan.daltons.ca> for ; Thu, 26 Aug 2004 18:39:14 -0600 Received: from aaron by galan.daltons.ca with local (Exim 4.41 (FreeBSD)) id 1C0UmZ-000EGM-Ff for FreeBSD-gnats-submit@freebsd.org; Thu, 26 Aug 2004 18:39:55 -0600 Message-Id: Date: Thu, 26 Aug 2004 18:39:55 -0600 From: Aaron Dalton To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/71014: New Port: devel/p5-AI-Pathfinding-AStar - Perl implementation of the A* pathfinding algorithm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Aaron Dalton List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Aug 2004 00:40:24 -0000 >Number: 71014 >Category: ports >Synopsis: New Port: devel/p5-AI-Pathfinding-AStar - Perl implementation of the A* pathfinding algorithm >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Aug 27 00:40:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Aaron Dalton >Release: FreeBSD 5.2.1-RELEASE i386 >Organization: >Environment: System: FreeBSD galan.daltons.ca 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Sat Aug 14 16:19:13 MDT 2004 aaron@galan.daltons.ca:/usr/src/sys/i386/compile/GALAN i386 >Description: This module implements the A* pathfinding algorithm. It acts as a base class from which a custom map object can be derived. It requires from the map object a subroutine named "getSurrounding" and provides to the object a routine called "findPath" which calculates the shortest (ie. least-expensive) path between two nodes. >How-To-Repeat: >Fix: --- submission.txt begins here --- # 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-AI-Pathfinding-AStar # p5-AI-Pathfinding-AStar/Makefile # p5-AI-Pathfinding-AStar/pkg-plist # p5-AI-Pathfinding-AStar/pkg-descr # p5-AI-Pathfinding-AStar/distinfo # echo c - p5-AI-Pathfinding-AStar mkdir -p p5-AI-Pathfinding-AStar > /dev/null 2>&1 echo x - p5-AI-Pathfinding-AStar/Makefile sed 's/^X//' >p5-AI-Pathfinding-AStar/Makefile << 'END-of-p5-AI-Pathfinding-AStar/Makefile' X# New ports collection makefile for: AI::Pathfinding::AStar X# Date created: 26 August 2004 X# Whom: Aaron Dalton X# X# $FreeBSD$ X# X XPORTNAME= AI-Pathfinding-AStar XPORTVERSION= 0.02 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= AI XPKGNAMEPREFIX= p5- X XMAINTAINER= aaron@daltons.ca XCOMMENT= Perl implementation of the A* pathfinding algorithm X XPERL_CONFIGURE= yes X XBUILD_DEPENDS+= ${SITE_PERL}/Heap/Simple.pm:${PORTSDIR}/devel/p5-Heap-Simple XRUN_DEPENDS+= ${BUILD_DEPENDS} X XMAN3= AI::Pathfinding::AStar.3 X X.include X X.if ${PERL_LEVEL} < 500600 XIGNORE= Uses devel/p5-Heap-Simple, which requires perl5.6, install lang/perl5 or lang/perl5.8 X.endif X X.include END-of-p5-AI-Pathfinding-AStar/Makefile echo x - p5-AI-Pathfinding-AStar/pkg-plist sed 's/^X//' >p5-AI-Pathfinding-AStar/pkg-plist << 'END-of-p5-AI-Pathfinding-AStar/pkg-plist' X%%SITE_PERL%%/AI/Pathfinding/AStar.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/Pathfinding/AStar/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/Pathfinding/AStar X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/AI/Pathfinding X@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/AI 2>/dev/null || true X@dirrm %%SITE_PERL%%/AI/Pathfinding X@unexec rmdir %D/%%SITE_PERL%%/AI 2>/dev/null || true END-of-p5-AI-Pathfinding-AStar/pkg-plist echo x - p5-AI-Pathfinding-AStar/pkg-descr sed 's/^X//' >p5-AI-Pathfinding-AStar/pkg-descr << 'END-of-p5-AI-Pathfinding-AStar/pkg-descr' XThis module implements the A* pathfinding algorithm. It acts as a base class Xfrom which a custom map object can be derived. It requires from the map object Xa subroutine named "getSurrounding" and provides to the object a routine called X"findPath" which calculates the shortest (ie. least-expensive) path between two Xnodes. X XWWW: http://search.cpan.org/dist/AI-Pathfinding-AStar/ X X- Aaron Dalton Xaaron@daltons.ca END-of-p5-AI-Pathfinding-AStar/pkg-descr echo x - p5-AI-Pathfinding-AStar/distinfo sed 's/^X//' >p5-AI-Pathfinding-AStar/distinfo << 'END-of-p5-AI-Pathfinding-AStar/distinfo' XMD5 (AI-Pathfinding-AStar-0.02.tar.gz) = 679867a36718f5c9a6bb7bd2d6a28994 XSIZE (AI-Pathfinding-AStar-0.02.tar.gz) = 4697 END-of-p5-AI-Pathfinding-AStar/distinfo exit --- submission.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: