From 3b6b08dcd4f9914d2c389ef2ec730c82273af77f Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 22 Jul 2000 16:37:35 +0000 Subject: Add pwgen 1.15, a password generator with various options which influence the security of the password. --- sysutils/Makefile | 1 + sysutils/pwgen/Makefile | 20 ++++++++++++++++++++ sysutils/pwgen/distinfo | 1 + sysutils/pwgen/files/patch-aa | 20 ++++++++++++++++++++ sysutils/pwgen/pkg-comment | 1 + sysutils/pwgen/pkg-descr | 7 +++++++ sysutils/pwgen/pkg-plist | 1 + sysutils/pwgen2/Makefile | 20 ++++++++++++++++++++ sysutils/pwgen2/distinfo | 1 + sysutils/pwgen2/files/patch-aa | 20 ++++++++++++++++++++ sysutils/pwgen2/pkg-comment | 1 + sysutils/pwgen2/pkg-descr | 7 +++++++ sysutils/pwgen2/pkg-plist | 1 + 13 files changed, 101 insertions(+) create mode 100644 sysutils/pwgen/Makefile create mode 100644 sysutils/pwgen/distinfo create mode 100644 sysutils/pwgen/files/patch-aa create mode 100644 sysutils/pwgen/pkg-comment create mode 100644 sysutils/pwgen/pkg-descr create mode 100644 sysutils/pwgen/pkg-plist create mode 100644 sysutils/pwgen2/Makefile create mode 100644 sysutils/pwgen2/distinfo create mode 100644 sysutils/pwgen2/files/patch-aa create mode 100644 sysutils/pwgen2/pkg-comment create mode 100644 sysutils/pwgen2/pkg-descr create mode 100644 sysutils/pwgen2/pkg-plist (limited to 'sysutils') diff --git a/sysutils/Makefile b/sysutils/Makefile index 277bc2f66f44..ec295e03769d 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -69,6 +69,7 @@ SUBDIR += prips SUBDIR += procmap SUBDIR += psmisc + SUBDIR += pwgen SUBDIR += rdate SUBDIR += rtty SUBDIR += roottail diff --git a/sysutils/pwgen/Makefile b/sysutils/pwgen/Makefile new file mode 100644 index 000000000000..e3ae6299e064 --- /dev/null +++ b/sysutils/pwgen/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: pwgen +# Date created: 22 July 2000 +# Whom: Oddbjorn Steffensen +# +# $FreeBSD$ +# + +PORTNAME= pwgen +PORTVERSION= 1.15 +CATEGORIES= sysutils +MASTER_SITES= http://www.tricknology.org/ports/ + +MAINTAINER= oddbjorn@tricknology.org + +BUILD_DEPENDS= ${LOCALBASE}/include/getopt.h:${PORTSDIR}/devel/libgnugetopt + +MAN1= pwgen.1 +WRKSRC= ${WRKDIR}/pwgen-1 + +.include diff --git a/sysutils/pwgen/distinfo b/sysutils/pwgen/distinfo new file mode 100644 index 000000000000..01e9461f68d6 --- /dev/null +++ b/sysutils/pwgen/distinfo @@ -0,0 +1 @@ +MD5 (pwgen-1.15.tar.gz) = 311724e3ce09155694191563be5543e9 diff --git a/sysutils/pwgen/files/patch-aa b/sysutils/pwgen/files/patch-aa new file mode 100644 index 000000000000..3da5b75f5aad --- /dev/null +++ b/sysutils/pwgen/files/patch-aa @@ -0,0 +1,20 @@ +--- Makefile.orig Tue Jan 4 14:54:58 2000 ++++ Makefile Sat Jul 22 18:29:32 2000 +@@ -6,12 +6,12 @@ + OPTS = -DALLBYOPTS -DRAND48 -DDEBIAN + + # Standard items +-CC = gcc +-CFLAGS = -O3 ++CC ?= gcc ++CFLAGS += -I/usr/local/include + LD = cc +-#LDFLAGS = -g +-LIBS = -lm +-INSTALL = install -s ++LDFLAGS = -L/usr/local/lib ++LIBS = -lm -lgnugetopt ++INSTALL?= install -s + INFLAGS = + + # Where to install diff --git a/sysutils/pwgen/pkg-comment b/sysutils/pwgen/pkg-comment new file mode 100644 index 000000000000..2872abe76e74 --- /dev/null +++ b/sysutils/pwgen/pkg-comment @@ -0,0 +1 @@ +A simple password generator diff --git a/sysutils/pwgen/pkg-descr b/sysutils/pwgen/pkg-descr new file mode 100644 index 000000000000..b89d18336914 --- /dev/null +++ b/sysutils/pwgen/pkg-descr @@ -0,0 +1,7 @@ +pwgen is a password generator. + +It was originally posted to alt.sources in 1989 by Brandon S. Allbery. +This version is pulled from Debian, which contains modifications by +Olaf Titz. + +- oddbjorn (oddbjorn@tricknology.org) diff --git a/sysutils/pwgen/pkg-plist b/sysutils/pwgen/pkg-plist new file mode 100644 index 000000000000..6cfca2f54f1d --- /dev/null +++ b/sysutils/pwgen/pkg-plist @@ -0,0 +1 @@ +bin/pwgen diff --git a/sysutils/pwgen2/Makefile b/sysutils/pwgen2/Makefile new file mode 100644 index 000000000000..e3ae6299e064 --- /dev/null +++ b/sysutils/pwgen2/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: pwgen +# Date created: 22 July 2000 +# Whom: Oddbjorn Steffensen +# +# $FreeBSD$ +# + +PORTNAME= pwgen +PORTVERSION= 1.15 +CATEGORIES= sysutils +MASTER_SITES= http://www.tricknology.org/ports/ + +MAINTAINER= oddbjorn@tricknology.org + +BUILD_DEPENDS= ${LOCALBASE}/include/getopt.h:${PORTSDIR}/devel/libgnugetopt + +MAN1= pwgen.1 +WRKSRC= ${WRKDIR}/pwgen-1 + +.include diff --git a/sysutils/pwgen2/distinfo b/sysutils/pwgen2/distinfo new file mode 100644 index 000000000000..01e9461f68d6 --- /dev/null +++ b/sysutils/pwgen2/distinfo @@ -0,0 +1 @@ +MD5 (pwgen-1.15.tar.gz) = 311724e3ce09155694191563be5543e9 diff --git a/sysutils/pwgen2/files/patch-aa b/sysutils/pwgen2/files/patch-aa new file mode 100644 index 000000000000..3da5b75f5aad --- /dev/null +++ b/sysutils/pwgen2/files/patch-aa @@ -0,0 +1,20 @@ +--- Makefile.orig Tue Jan 4 14:54:58 2000 ++++ Makefile Sat Jul 22 18:29:32 2000 +@@ -6,12 +6,12 @@ + OPTS = -DALLBYOPTS -DRAND48 -DDEBIAN + + # Standard items +-CC = gcc +-CFLAGS = -O3 ++CC ?= gcc ++CFLAGS += -I/usr/local/include + LD = cc +-#LDFLAGS = -g +-LIBS = -lm +-INSTALL = install -s ++LDFLAGS = -L/usr/local/lib ++LIBS = -lm -lgnugetopt ++INSTALL?= install -s + INFLAGS = + + # Where to install diff --git a/sysutils/pwgen2/pkg-comment b/sysutils/pwgen2/pkg-comment new file mode 100644 index 000000000000..2872abe76e74 --- /dev/null +++ b/sysutils/pwgen2/pkg-comment @@ -0,0 +1 @@ +A simple password generator diff --git a/sysutils/pwgen2/pkg-descr b/sysutils/pwgen2/pkg-descr new file mode 100644 index 000000000000..b89d18336914 --- /dev/null +++ b/sysutils/pwgen2/pkg-descr @@ -0,0 +1,7 @@ +pwgen is a password generator. + +It was originally posted to alt.sources in 1989 by Brandon S. Allbery. +This version is pulled from Debian, which contains modifications by +Olaf Titz. + +- oddbjorn (oddbjorn@tricknology.org) diff --git a/sysutils/pwgen2/pkg-plist b/sysutils/pwgen2/pkg-plist new file mode 100644 index 000000000000..6cfca2f54f1d --- /dev/null +++ b/sysutils/pwgen2/pkg-plist @@ -0,0 +1 @@ +bin/pwgen -- cgit