aboutsummaryrefslogtreecommitdiff
path: root/sysutils/pwgen
diff options
context:
space:
mode:
authorPhilip M. Gollucci <pgollucci@FreeBSD.org>2009-02-05 08:46:19 +0000
committerPhilip M. Gollucci <pgollucci@FreeBSD.org>2009-02-05 08:46:19 +0000
commitfc0b95f3d80811060d25fda82603499d47c4c9d4 (patch)
tree114d1694298b2585deadf0d2de0a7561ac5b75cb /sysutils/pwgen
parent44fb4a911738e17a107b62bb301abf457f472409 (diff)
- Update download locations, update WWW
Moved to SF Update to 2.06 to fix fetch While here, clean up MAKE_ENV Reported by: -fetch-original pointyhat run
Notes
Notes: svn path=/head/; revision=227653
Diffstat (limited to 'sysutils/pwgen')
-rw-r--r--sysutils/pwgen/Makefile9
-rw-r--r--sysutils/pwgen/distinfo6
-rw-r--r--sysutils/pwgen/files/patch-aa39
3 files changed, 6 insertions, 48 deletions
diff --git a/sysutils/pwgen/Makefile b/sysutils/pwgen/Makefile
index 14859675eb2b..f99b52ec1505 100644
--- a/sysutils/pwgen/Makefile
+++ b/sysutils/pwgen/Makefile
@@ -6,17 +6,14 @@
#
PORTNAME= pwgen
-PORTVERSION= 1.15
-PORTREVISION= 1
+PORTVERSION= 2.06
CATEGORIES= sysutils
-MASTER_SITES= http://www.tricknology.org/ports/
+MASTER_SITES= SF
MAINTAINER= oddbjorn@tricknology.org
COMMENT= A simple password generator
-WRKSRC= ${WRKDIR}/${PORTNAME}-1
-MAKE_ENV= CPPFLAGS="${CPPFLAGS}" \
- LDFLAGS="${LDFLAGS}"
+HAS_CONFIGURE= yes
MAN1= pwgen.1
PLIST_FILES= bin/pwgen
diff --git a/sysutils/pwgen/distinfo b/sysutils/pwgen/distinfo
index 99d6c87adb1c..fc5afe322ccb 100644
--- a/sysutils/pwgen/distinfo
+++ b/sysutils/pwgen/distinfo
@@ -1,3 +1,3 @@
-MD5 (pwgen-1.15.tar.gz) = 311724e3ce09155694191563be5543e9
-SHA256 (pwgen-1.15.tar.gz) = fb50a42bf3bf9608f5d3e5b72a414e05df13ff1f03945549cb44fe454c81dbd4
-SIZE (pwgen-1.15.tar.gz) = 14839
+MD5 (pwgen-2.06.tar.gz) = 935aebcbe610fbc9de8125e7b7d71297
+SHA256 (pwgen-2.06.tar.gz) = 61598c9e3a0f7eb2e7367d4ecc71522c4f16a7d41ed31db29e3afee8d9843454
+SIZE (pwgen-2.06.tar.gz) = 30952
diff --git a/sysutils/pwgen/files/patch-aa b/sysutils/pwgen/files/patch-aa
deleted file mode 100644
index 25108e8189e2..000000000000
--- a/sysutils/pwgen/files/patch-aa
+++ /dev/null
@@ -1,39 +0,0 @@
---- Makefile.orig Tue Jan 4 22:54:58 2000
-+++ Makefile Sun Jul 6 20:15:32 2003
-@@ -6,17 +6,17 @@
- OPTS = -DALLBYOPTS -DRAND48 -DDEBIAN
-
- # Standard items
--CC = gcc
--CFLAGS = -O3
--LD = cc
--#LDFLAGS = -g
-+CC ?= gcc
-+CFLAGS += ${CPPFLAGS}
-+LD = ${CC}
- LIBS = -lm
- INSTALL = install -s
- INFLAGS =
-
- # Where to install
--DESTDIR = /usr/local/bin
--MANDIR = /usr/local/man/man1
-+PREFIX ?= /usr/local
-+DESTDIR = ${PREFIX}/bin
-+MANDIR = ${PREFIX}/man/man1
-
- # End configuration section
-
-@@ -27,10 +27,8 @@
- ./pwgen 8 20
-
- install: all
-- $(INSTALL) pwgen $(DESTDIR)
-- install pwgen.1 $(MANDIR)
-- chmod 555 $(DESTDIR)/pwgen
-- chmod 444 $(MANDIR)/pwgen.1
-+ ${BSD_INSTALL_PROGRAM} pwgen $(DESTDIR)
-+ ${BSD_INSTALL_MAN} pwgen.1 $(MANDIR)
-
- spwgen: spwgen.o
- $(LD) $(LDFLAGS) -o spwgen spwgen.o $(LIBS)