From tjs@Pluto.CDPA.nsysu.edu.tw  Fri Jul 14 01:01:30 2006
Return-Path: <tjs@Pluto.CDPA.nsysu.edu.tw>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 157C516A4DF
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 14 Jul 2006 01:01:30 +0000 (UTC)
	(envelope-from tjs@Pluto.CDPA.nsysu.edu.tw)
Received: from Pluto.CDPA.nsysu.edu.tw (Pluto.CDPA.nsysu.edu.tw [140.117.205.30])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A734043D4C
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 14 Jul 2006 01:01:29 +0000 (GMT)
	(envelope-from tjs@Pluto.CDPA.nsysu.edu.tw)
Received: from Pluto.CDPA.nsysu.edu.tw (localhost [127.0.0.1])
	by Pluto.CDPA.nsysu.edu.tw (8.13.6/8.13.6) with ESMTP id k6E11QnJ015653
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 14 Jul 2006 09:01:26 +0800 (CST)
	(envelope-from tjs@Pluto.CDPA.nsysu.edu.tw)
Received: (from root@localhost)
	by Pluto.CDPA.nsysu.edu.tw (8.13.6/8.13.6/Submit) id k6E11QbS015652;
	Fri, 14 Jul 2006 09:01:26 +0800 (CST)
	(envelope-from tjs)
Message-Id: <200607140101.k6E11QbS015652@Pluto.CDPA.nsysu.edu.tw>
Date: Fri, 14 Jul 2006 09:01:26 +0800 (CST)
From: tjs <tjs@cdpa.nsysu.edu.tw>
Reply-To: tjs <tjs@cdpa.nsysu.edu.tw>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: New port: devel/p5-IPC-Mmap
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         100258
>Category:       ports
>Synopsis:       New port: devel/p5-IPC-Mmap
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jul 14 01:10:09 GMT 2006
>Closed-Date:    Fri Jul 14 01:57:55 GMT 2006
>Last-Modified:  Fri Jul 14 01:57:55 GMT 2006
>Originator:     Jin-Shan Tseng
>Release:        FreeBSD 6.1-STABLE i386
>Organization:
NCHC
>Environment:
System: FreeBSD Pluto.CDPA.nsysu.edu.tw 6.1-STABLE FreeBSD 6.1-STABLE #0: Tue Jul 11 22:29:47 CST 2006 tjs@Pluto.CDPA.nsysu.edu.tw:/usr/obj/usr/src/sys/Pluto i386


>Description:

	Provides an object-oriented interface to either the POSIX mmap() or Win32
	equivalent APIs to memory map a file into a process's address space for
	general memory access. IPC::Mmap provides only a minimal interface without
	the additional overhead of tie'd variables or locking enforced in other
	modules (e.g., Sys::Mmap, Win32::MMF); hence, the application is responsible
	for performing read()'s and write()'s on the IPC::Mmap object, and calling
	any needed lock() and unlock() methods, as required by concurrent processes.

	http://search.cpan.org/dist/IPC-Mmap/

>How-To-Repeat:
>Fix:


--- p5-IPC-Mmap.shar 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-IPC-Mmap
#	p5-IPC-Mmap/Makefile
#	p5-IPC-Mmap/distinfo
#	p5-IPC-Mmap/pkg-descr
#	p5-IPC-Mmap/pkg-plist
#
echo c - p5-IPC-Mmap
mkdir -p p5-IPC-Mmap > /dev/null 2>&1
echo x - p5-IPC-Mmap/Makefile
sed 's/^X//' >p5-IPC-Mmap/Makefile << 'END-of-p5-IPC-Mmap/Makefile'
X# New ports collection makefile for:	p5-IPC-Mmap
X# Date created:				2006-07-14
X# Whom:					Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	IPC-Mmap
XPORTVERSION=	0.11
XCATEGORIES=	devel perl5
XMASTER_SITES=	${MASTER_SITE_PERL_CPAN}
XMASTER_SITE_SUBDIR=	IPC
XPKGNAMEPREFIX=	p5-
X
XMAINTAINER=	tjs@cdpa.nsysu.edu.tw
XCOMMENT=	Provides a minimal mmap() interface for both POSIX and Win32
X
XPERL_CONFIGURE=	yes
X
XMAN3=	IPC::Mmap.3
X
X.include <bsd.port.pre.mk>
X
X.if ${PERL_LEVEL} < 500800
XIGNORE=		requires perl 5.8.0 or later. Install lang/perl5.8 and try again
X.endif
X
X.include <bsd.port.post.mk>
END-of-p5-IPC-Mmap/Makefile
echo x - p5-IPC-Mmap/distinfo
sed 's/^X//' >p5-IPC-Mmap/distinfo << 'END-of-p5-IPC-Mmap/distinfo'
XMD5 (IPC-Mmap-0.11.tar.gz) = 8d63fa396234d6989e9506b13ccb269b
XSHA256 (IPC-Mmap-0.11.tar.gz) = ede1b97e75571da13c6ec7f414a92d8f8797aa47744212cd677219a11b63da8f
XSIZE (IPC-Mmap-0.11.tar.gz) = 18298
END-of-p5-IPC-Mmap/distinfo
echo x - p5-IPC-Mmap/pkg-descr
sed 's/^X//' >p5-IPC-Mmap/pkg-descr << 'END-of-p5-IPC-Mmap/pkg-descr'
XProvides an object-oriented interface to either the POSIX mmap()
Xor Win32 equivalent APIs to memory map a file into a process's
Xaddress space for general memory access. IPC::Mmap provides only
Xa minimal interface without the additional overhead of tie'd
Xvariables or locking enforced in other modules
X(e.g., Sys::Mmap, Win32::MMF); hence, the application is responsible
Xfor performing read()'s and write()'s on the IPC::Mmap object,
Xand calling any needed lock() and unlock() methods, as required
Xby concurrent processes.
X
XWWW: http://search.cpan.org/dist/IPC-Mmap/
END-of-p5-IPC-Mmap/pkg-descr
echo x - p5-IPC-Mmap/pkg-plist
sed 's/^X//' >p5-IPC-Mmap/pkg-plist << 'END-of-p5-IPC-Mmap/pkg-plist'
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/Mmap/.packlist
X%%SITE_PERL%%/%%PERL_ARCH%%/IPC/Mmap.pm
X%%SITE_PERL%%/%%PERL_ARCH%%/IPC/Mmap.pod
X%%SITE_PERL%%/%%PERL_ARCH%%/IPC/Mmap/POSIX.pm
X%%SITE_PERL%%/%%PERL_ARCH%%/IPC/Mmap/Win32.pm
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/Mmap/Mmap.so
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/Mmap/Mmap.bs
X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC/Mmap
X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/IPC/Mmap
X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/IPC
X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/IPC
END-of-p5-IPC-Mmap/pkg-plist
exit
--- p5-IPC-Mmap.shar ends here ---


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: clsung 
State-Changed-When: Fri Jul 14 01:57:39 UTC 2006 
State-Changed-Why:  
Duplicate of ports/100256. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=100258 
>Unformatted:
