From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Jul 17 01:40:18 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 1D9A816A4DA for ; Mon, 17 Jul 2006 01:40:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB0B643D45 for ; Mon, 17 Jul 2006 01:40:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k6H1eHk3015456 for ; Mon, 17 Jul 2006 01:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k6H1eHPE015415; Mon, 17 Jul 2006 01:40:17 GMT (envelope-from gnats) Resent-Date: Mon, 17 Jul 2006 01:40:17 GMT Resent-Message-Id: <200607170140.k6H1eHPE015415@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, Gea-Suan Lin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C7B616A4DF for ; Mon, 17 Jul 2006 01:34:02 +0000 (UTC) (envelope-from gslin@netnews.NCTU.edu.tw) Received: from netnews.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E5CA43D45 for ; Mon, 17 Jul 2006 01:34:01 +0000 (GMT) (envelope-from gslin@netnews.NCTU.edu.tw) Received: by netnews.NCTU.edu.tw (Postfix, from userid 1000) id 855F6B2; Mon, 17 Jul 2006 09:33:59 +0800 (CST) Message-Id: <20060717013359.855F6B2@netnews.NCTU.edu.tw> Date: Mon, 17 Jul 2006 09:33:59 +0800 (CST) From: Gea-Suan Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gslin@gslin.org Subject: ports/100415: [NEW PORT] devel/p5-Fuse: Write filesystems in Perl using FUSE 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: Mon, 17 Jul 2006 01:40:18 -0000 >Number: 100415 >Category: ports >Synopsis: [NEW PORT] devel/p5-Fuse: Write filesystems in Perl using FUSE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jul 17 01:40:16 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 6.1-RELEASE i386 >Organization: >Environment: System: FreeBSD netnews.NCTU.edu.tw 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sat May 13 03:43:48 CST 2006 >Description: This lets you implement filesystems in perl, through the FUSE (Filesystem in USErspace) kernel/lib interface. FUSE expects you to implement callbacks for the various functions. In the following definitions, "errno" can be 0 (for a success), -EINVAL, -ENOENT, -EONFIRE, any integer less than 1 really. You can import standard error constants by saying something like "use POSIX qw(EDOTDOT ENOANO);". Every constant you need (file types, open() flags, error values, etc) can be imported either from POSIX or from Fcntl, often both. See their respective documentations, for more information. WWW: http://search.cpan.org/dist/Fuse/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Fuse-0.07.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-Fuse # p5-Fuse/pkg-descr # p5-Fuse/Makefile # p5-Fuse/pkg-plist # p5-Fuse/distinfo # echo c - p5-Fuse mkdir -p p5-Fuse > /dev/null 2>&1 echo x - p5-Fuse/pkg-descr sed 's/^X//' >p5-Fuse/pkg-descr << 'END-of-p5-Fuse/pkg-descr' XThis lets you implement filesystems in perl, through the FUSE X(Filesystem in USErspace) kernel/lib interface. X XFUSE expects you to implement callbacks for the various functions. X XIn the following definitions, "errno" can be 0 (for a success), X-EINVAL, -ENOENT, -EONFIRE, any integer less than 1 really. X XYou can import standard error constants by saying something like "use XPOSIX qw(EDOTDOT ENOANO);". X XEvery constant you need (file types, open() flags, error values, etc) Xcan be imported either from POSIX or from Fcntl, often both. See their Xrespective documentations, for more information. X XWWW: http://search.cpan.org/dist/Fuse/ END-of-p5-Fuse/pkg-descr echo x - p5-Fuse/Makefile sed 's/^X//' >p5-Fuse/Makefile << 'END-of-p5-Fuse/Makefile' X# New ports collection makefile for: p5-Fuse X# Date created: 2006-07-17 X# Whom: Gea-Suan Lin X# X# $FreeBSD$ X# X XPORTNAME= Fuse XPORTVERSION= 0.07 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= ../../authors/id/D/DP/DPAVLIN XPKGNAMEPREFIX= p5- X XMAINTAINER= gslin@gslin.org XCOMMENT= Write filesystems in Perl using FUSE X XRUN_DEPENDS= ${LOCALBASE}/include/fuse.h:${PORTSDIR}/sysutils/fusefs-libs XBUILD_DEPENDS= ${RUN_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= Fuse.3 X X.include X X.if ${OSVERSION} < 600000 # Inherited from sysutils/fusefs-libs XIGNORE= depends on kernel module that requires FreeBSD 6 or later X.endif X X.include END-of-p5-Fuse/Makefile echo x - p5-Fuse/pkg-plist sed 's/^X//' >p5-Fuse/pkg-plist << 'END-of-p5-Fuse/pkg-plist' X@comment $FreeBSD$ X%%SITE_PERL%%/%%PERL_ARCH%%/Fuse.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Fuse/.packlist X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Fuse/Fuse.bs X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Fuse/Fuse.so X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Fuse/autosplit.ix X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Fuse X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Fuse END-of-p5-Fuse/pkg-plist echo x - p5-Fuse/distinfo sed 's/^X//' >p5-Fuse/distinfo << 'END-of-p5-Fuse/distinfo' XMD5 (Fuse-0.07.tar.gz) = 9e8b2338ada7ef1e25f1b5bf7769b03c XSHA256 (Fuse-0.07.tar.gz) = f1c48be240f0becf46877344d8318ade40d6a6d3562c310d7b815e4eed2ea334 XSIZE (Fuse-0.07.tar.gz) = 20134 END-of-p5-Fuse/distinfo exit --- p5-Fuse-0.07.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: