1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-03 22:23:24 +00:00
freebsd-ports/security/openssh/files/patch-at
Brian Feldman 2122dd8811 Make some various cleanups. Note that I did not add RESTRICTED since this is
in no way cryptographically encumbered code.  The fact that it's
redistributed by me from freefall is completely coincidental.

Submitted by:	obrien, Christian Weisgerber <naddy@unix-ag.uni-kl.de>
1999-11-09 12:43:45 +00:00

28 lines
562 B
Plaintext

--- ssh-keygen/Makefile.orig Thu Oct 28 03:32:00 1999
+++ ssh-keygen/Makefile Tue Nov 9 06:42:34 1999
@@ -2,20 +2,14 @@
PROG= ssh-keygen
BINOWN= root
+BINMODE=555
-.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "powerpc" || \
- ${MACHINE_ARCH} == "hppa")
-BINMODE=0000
-.else
-BINMODE?=555
-.endif
-
-BINDIR= /usr/bin
-MAN= ssh-keygen.1
+BINDIR= /bin
+MAN1= ssh-keygen.1
SRCS= ssh-keygen.c log-client.c
.include <bsd.prog.mk>
-LDADD+= -lcrypto -lutil -lz
+LDADD+= -lutil -lz ${CRYPTOLIBS}
DPADD+= ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ}