diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-01 08:04:10 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-01 08:04:10 +0000 |
commit | 37ca737cfb67a02f42f2d6f125ebc28af32fe809 (patch) | |
tree | cca49ea3c4d524174e09b6bdec88caa196870939 /security | |
parent | 46fa04acb3304a9d1729eac1ba122e6b4de861c1 (diff) | |
download | FreeBSD-ports-37ca737cfb67a02f42f2d6f125ebc28af32fe809.zip FreeBSD-ports-37ca737cfb67a02f42f2d6f125ebc28af32fe809.tar.gz |
New port: makepasswd, random password generator
Random password generator.
PR: ports/49008
Submitted by: Toni Viemero <toni.viemero@iki.fi>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/makepasswd/Makefile | 35 | ||||
-rw-r--r-- | security/makepasswd/distinfo | 1 | ||||
-rw-r--r-- | security/makepasswd/pkg-descr | 7 | ||||
-rw-r--r-- | security/makepasswd/pkg-plist | 4 |
5 files changed, 48 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index cdc8113..f16e53a 100644 --- a/security/Makefile +++ b/security/Makefile @@ -127,6 +127,7 @@ SUBDIR += lsh SUBDIR += lxnb SUBDIR += mac-robber + SUBDIR += makepasswd SUBDIR += mcrypt SUBDIR += mdcrack SUBDIR += mhash diff --git a/security/makepasswd/Makefile b/security/makepasswd/Makefile new file mode 100644 index 0000000..2e69dd8 --- /dev/null +++ b/security/makepasswd/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: makepasswd +# Date created: 7 March 2003 +# Whom: Toni Viemerö <toni.viemero@iki.fi> +# +# $FreeBSD$ +# + +PORTNAME= makepasswd +PORTVERSION= 1.10 +CATEGORIES= security +MASTER_SITES= ${MASTER_SITE_DEBIAN} +MASTER_SITE_SUBDIR= dists/potato/main/source/admin/ +DISTNAME= ${PORTNAME}_${PORTVERSION}.orig + +MAINTAINER= toni.viemero@iki.fi +COMMENT= Random password generator + +NO_BUILD= yes +USE_PERL5_RUN= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +MAN1= makepasswd.1 +DOCS= CHANGES README + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/makepasswd ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for file in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/security/makepasswd/distinfo b/security/makepasswd/distinfo new file mode 100644 index 0000000..cb34811b --- /dev/null +++ b/security/makepasswd/distinfo @@ -0,0 +1 @@ +MD5 (makepasswd_1.10.orig.tar.gz) = 55842bb4c064ebcdedffb4afd5f0945a diff --git a/security/makepasswd/pkg-descr b/security/makepasswd/pkg-descr new file mode 100644 index 0000000..054ce00 --- /dev/null +++ b/security/makepasswd/pkg-descr @@ -0,0 +1,7 @@ +Generates true random passwords by using the /dev/random feature of +Linux, +with the emphasis on security over pronounceability. It can also +encrypt +plaintext passwords given on the command line. + +WWW: http://packages.debian.org/stable/admin/makepasswd.html diff --git a/security/makepasswd/pkg-plist b/security/makepasswd/pkg-plist new file mode 100644 index 0000000..f4087be --- /dev/null +++ b/security/makepasswd/pkg-plist @@ -0,0 +1,4 @@ +bin/makepasswd +share/doc/makepasswd/CHANGES +share/doc/makepasswd/README +@dirrm share/doc/makepasswd |