diff options
author | erwin <erwin@FreeBSD.org> | 2005-12-21 16:31:51 +0000 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2005-12-21 16:31:51 +0000 |
commit | 6822c9a10817de3aa5b45e13dd594fc27791aa03 (patch) | |
tree | 524dc7b8168b6666ce7d8a5e87fd318475e3507a | |
parent | 3c399f3d36333eaa59ced51fbef913fefc4cb8d2 (diff) | |
download | FreeBSD-ports-6822c9a10817de3aa5b45e13dd594fc27791aa03.zip FreeBSD-ports-6822c9a10817de3aa5b45e13dd594fc27791aa03.tar.gz |
The single exported subroutine in this module is for generating a salt
suitable for being fed to crypt() and other similar functions.
WWW: http://search.cpan.org/dist/Crypt-Salt
PR: ports/90696
Submitted by: Gabor Kovesdan
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/p5-Crypt-Salt/Makefile | 24 | ||||
-rw-r--r-- | security/p5-Crypt-Salt/distinfo | 3 | ||||
-rw-r--r-- | security/p5-Crypt-Salt/pkg-descr | 4 | ||||
-rw-r--r-- | security/p5-Crypt-Salt/pkg-plist | 5 |
5 files changed, 37 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 1053c47..2c05102 100644 --- a/security/Makefile +++ b/security/Makefile @@ -339,6 +339,7 @@ SUBDIR += p5-Crypt-Rijndael SUBDIR += p5-Crypt-SKey SUBDIR += p5-Crypt-SSLeay + SUBDIR += p5-Crypt-Salt SUBDIR += p5-Crypt-Serpent SUBDIR += p5-Crypt-SmbHash SUBDIR += p5-Crypt-Solitaire diff --git a/security/p5-Crypt-Salt/Makefile b/security/p5-Crypt-Salt/Makefile new file mode 100644 index 0000000..4f3e4d3 --- /dev/null +++ b/security/p5-Crypt-Salt/Makefile @@ -0,0 +1,24 @@ +# New ports collection Makefile for: p5-Crypt-Salt +# Date created: 20 Dec 2006 +# Whom: Gabor Kovesdan +# $FreeBSD$ + +PORTNAME= Crypt-Salt +PORTVERSION= 0.01 +CATEGORIES= security perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Crypt +PKGNAMEPREFIX= p5- + +MAINTAINER= gkovesdan@t-hosting.hu +COMMENT= Perl extension to generate a salt to be fed into crypt + +PERL_CONFIGURE= yes + +MAN3= Crypt::Salt.3 + +.include <bsd.port.pre.mk> +.if ${PERL_LEVEL} <= 500503 +IGNORE= requires Perl 5.6. Intall lang/perl5 or lang/perl5.8, and try again +.endif +.include <bsd.port.post.mk> diff --git a/security/p5-Crypt-Salt/distinfo b/security/p5-Crypt-Salt/distinfo new file mode 100644 index 0000000..fe5f9ec --- /dev/null +++ b/security/p5-Crypt-Salt/distinfo @@ -0,0 +1,3 @@ +MD5 (Crypt-Salt-0.01.tar.gz) = acf14eb915beec773d4ea99ded753352 +SHA256 (Crypt-Salt-0.01.tar.gz) = 400b696319980762ad415d459c28262392990d105992b3a3de6b93ea20b567fa +SIZE (Crypt-Salt-0.01.tar.gz) = 9784 diff --git a/security/p5-Crypt-Salt/pkg-descr b/security/p5-Crypt-Salt/pkg-descr new file mode 100644 index 0000000..6661a5c --- /dev/null +++ b/security/p5-Crypt-Salt/pkg-descr @@ -0,0 +1,4 @@ +The single exported subroutine in this module is for generating a salt +suitable for being fed to crypt() and other similar functions. + +WWW: http://search.cpan.org/dist/Crypt-Salt diff --git a/security/p5-Crypt-Salt/pkg-plist b/security/p5-Crypt-Salt/pkg-plist new file mode 100644 index 0000000..8ab5a43 --- /dev/null +++ b/security/p5-Crypt-Salt/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/Crypt/Salt.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Salt/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt/Salt/ +@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Crypt 2>/dev/null || true +@unexec rmdir %D/%%SITE_PERL%%/Crypt 2>/dev/null || true |