diff options
author | kris <kris@FreeBSD.org> | 2001-02-06 01:22:25 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-02-06 01:22:25 +0000 |
commit | 4146df33b0294012d6b7956ac8175c06e27a49d2 (patch) | |
tree | 594e29f002076ca51ba153b79c70a82f82802da7 /security/ssh | |
parent | c0f10ad4cbec0fe4775f1677d26a28672f63b824 (diff) | |
download | FreeBSD-ports-4146df33b0294012d6b7956ac8175c06e27a49d2.zip FreeBSD-ports-4146df33b0294012d6b7956ac8175c06e27a49d2.tar.gz |
Note the reason why this port is still at 1.2.27 (1.2.30 is under
the more restrictive SSH2 license), deprecate this port in favour of
OpenSSH as a parting shot (still allow people to build by setting an
environment variable) and remove myself as maintainer since I don't
have any interest in maintaining it.
About the only thing this port does which OpenSSH can't do well is
Kerberized logins..once that is working properly in OpenSSH I'm planning
to nuke the port.
Diffstat (limited to 'security/ssh')
-rw-r--r-- | security/ssh/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 6c5d2d3..52f90d4 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -9,7 +9,7 @@ # PORTNAME= ssh -PORTVERSION= 1.2.27 +PORTVERSION= 1.2.27 # Note, 1.2.30 is under a more restrictive license PORTREVISION= 1 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.cs.engr.uky.edu/cs/software/ \ @@ -21,7 +21,7 @@ MASTER_SITES= ftp://ftp.cs.engr.uky.edu/cs/software/ \ ftp://ftp.comp.hkbu.edu.hk/.6/unix/ \ ftp://ftp.dei.uc.pt/.disk2/Crypto/SSH/old/ -MAINTAINER= kris@FreeBSD.org +MAINTAINER= ports@FreeBSD.org #RESTRICTED= "Crypto: export-controlled" @@ -66,6 +66,12 @@ CONFIGURE_ARGS+= --with-secureid CONFIGURE_ARGS+= --without-idea .endif +.include <bsd.port.pre.mk> + +.if (${OSVERSION} >= 400016 && !defined(REALLY_WANT_SSH)) +BROKEN= "OpenSSH is a superior version of SSH which has been included in the FreeBSD base system since 4.0-RELEASE. This port is now deprecated and will be removed at some point in the future. To override this warning set the REALLY_WANT_SSH environment variable and rebuild." +.endif + MAN1= scp1.1 ssh-add1.1 ssh-agent1.1 ssh-keygen1.1 ssh1.1 \ make-ssh-known-hosts1.1 MAN8= sshd1.8 @@ -97,8 +103,6 @@ post-install: fi; \ fi -.include <bsd.port.pre.mk> - # Include tcp-wrapper support (call remote identd) .if exists(/usr/include/tcpd.h) CONFIGURE_ARGS+= --with-libwrap |