From owner-freebsd-ports Mon Oct 7 14: 0:28 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 091AC37B406 for ; Mon, 7 Oct 2002 14:00:13 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4F5643E88 for ; Mon, 7 Oct 2002 14:00:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g97L0BCo057219 for ; Mon, 7 Oct 2002 14:00:11 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g97L0BFA057218; Mon, 7 Oct 2002 14:00:11 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BACF37B401 for ; Mon, 7 Oct 2002 13:59:30 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 28A9743E7B for ; Mon, 7 Oct 2002 13:59:30 -0700 (PDT) (envelope-from negative@magnesium.net) Received: (qmail 6264 invoked by uid 1224); 7 Oct 2002 20:59:29 -0000 Message-Id: <20021007205929.6263.qmail@magnesium.net> Date: 7 Oct 2002 13:59:29 -0700 From: Jim Geovedi Reply-To: Jim Geovedi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/43794: New Port: security/p5-Crypt-Blowfish_PP (Blowfish encryption algorithm implemented purely in Perl) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 43794 >Category: ports >Synopsis: New Port: security/p5-Crypt-Blowfish_PP (Blowfish encryption algorithm implemented purely in Perl) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 07 14:00:11 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Jim Geovedi >Release: FreeBSD 4.6-STABLE i386 >Organization: >Environment: System: FreeBSD toxic.magnesium.net 4.6-STABLE FreeBSD 4.6-STABLE #5: Thu Aug 1 09:24:17 PDT 2002 unfurl@toxic.magnesium.net:/users/world/obj/users/world/src/sys/TOXIC i386 >Description: Blowfish is a published algorithm written by Bruce Schneier Unlike IDEA or DES etc. there are no patent implications in using this algorithm. It uses anywhere between a 64 bit and a 448 bit key. The transform itself is fast and operates on a 64 bit block, and most of the calculation time is in initialising the context with the key data. The _PP name comes from the fact that this implementation is Pure Perl, and will not have any compatibility problems. >How-To-Repeat: >Fix: --- security_p5-Crypt-Blowfish_PP.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-Crypt-Blowfish_PP # p5-Crypt-Blowfish_PP/Makefile # p5-Crypt-Blowfish_PP/distinfo # p5-Crypt-Blowfish_PP/pkg-comment # p5-Crypt-Blowfish_PP/pkg-descr # p5-Crypt-Blowfish_PP/pkg-plist # echo c - p5-Crypt-Blowfish_PP mkdir -p p5-Crypt-Blowfish_PP > /dev/null 2>&1 echo x - p5-Crypt-Blowfish_PP/Makefile sed 's/^X//' >p5-Crypt-Blowfish_PP/Makefile << 'END-of-p5-Crypt-Blowfish_PP/Makefile' X# New ports collection makefile for: p5-Crypt-Blowfish_PP X# Date created: Sep 30, 2002 X# Whom: Jim Geovedi X# X# $FreeBSD$ X# X XPORTNAME= Crypt-Blowfish_PP XPORTVERSION= 1.12 XCATEGORIES= security perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Crypt XPKGNAMEPREFIX= p5- X XMAINTAINER= jim@corebsd.or.id X XPERL_CONFIGURE= yes X XMAN3= Crypt::Blowfish_PP.3 XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X X.include END-of-p5-Crypt-Blowfish_PP/Makefile echo x - p5-Crypt-Blowfish_PP/distinfo sed 's/^X//' >p5-Crypt-Blowfish_PP/distinfo << 'END-of-p5-Crypt-Blowfish_PP/distinfo' XMD5 (Crypt-Blowfish_PP-1.12.tar.gz) = 6bf7dc80967eaf3047b67b26b015267d END-of-p5-Crypt-Blowfish_PP/distinfo echo x - p5-Crypt-Blowfish_PP/pkg-comment sed 's/^X//' >p5-Crypt-Blowfish_PP/pkg-comment << 'END-of-p5-Crypt-Blowfish_PP/pkg-comment' XBlowfish encryption algorithm implemented purely in Perl END-of-p5-Crypt-Blowfish_PP/pkg-comment echo x - p5-Crypt-Blowfish_PP/pkg-descr sed 's/^X//' >p5-Crypt-Blowfish_PP/pkg-descr << 'END-of-p5-Crypt-Blowfish_PP/pkg-descr' XBlowfish is a published algorithm written by Bruce Schneier Unlike XIDEA or DES etc. there are no patent implications in using this Xalgorithm. X XIt uses anywhere between a 64 bit and a 448 bit key. The transform Xitself is fast and operates on a 64 bit block, and most of the Xcalculation time is in initialising the context with the key data. X XThe _PP name comes from the fact that this implementation is Pure XPerl, and will not have any compatibility problems. END-of-p5-Crypt-Blowfish_PP/pkg-descr echo x - p5-Crypt-Blowfish_PP/pkg-plist sed 's/^X//' >p5-Crypt-Blowfish_PP/pkg-plist << 'END-of-p5-Crypt-Blowfish_PP/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/Crypt/Blowfish_PP.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/Blowfish_PP/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/Blowfish_PP X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt 2>/dev/null || true END-of-p5-Crypt-Blowfish_PP/pkg-plist exit --- security_p5-Crypt-Blowfish_PP.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message