summaryrefslogtreecommitdiff
path: root/sysutils/pwgen2/files/patch-aa
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@FreeBSD.org>2005-09-02 08:12:26 +0000
committerVsevolod Stakhov <vsevolod@FreeBSD.org>2005-09-02 08:12:26 +0000
commitec213d587a841032d8966a579114e9c3b4868458 (patch)
tree86692451c1dea8867872adfa47d5b8056e3a41c3 /sysutils/pwgen2/files/patch-aa
parentFix config files location. (diff)
Add pwgen2 - another branch of pwgen (in comparison with sysutils/pwgen),
more powerful, more flexible. PR: 85349 Submitted by: Andrew Khlebutin <andrey@hm.perm.ru> Approved by: perky (mentor) Repocopy by: marcus
Notes
Notes: svn path=/head/; revision=141770
Diffstat (limited to 'sysutils/pwgen2/files/patch-aa')
-rw-r--r--sysutils/pwgen2/files/patch-aa39
1 files changed, 0 insertions, 39 deletions
diff --git a/sysutils/pwgen2/files/patch-aa b/sysutils/pwgen2/files/patch-aa
deleted file mode 100644
index 25108e8189e2..000000000000
--- a/sysutils/pwgen2/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)