diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2001-06-01 14:49:36 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2001-06-01 14:49:36 +0000 |
commit | 5cbc48b2d7fe78d13208d12ed5498d5c7f337ed1 (patch) | |
tree | a1039bddf485c683ef0b392748d4211e50076186 /security/openssh-portable/Makefile | |
parent | 0b3c4191d13cc8e9cc14ac805a559a18b1aab3c3 (diff) |
Notes
Diffstat (limited to 'security/openssh-portable/Makefile')
-rw-r--r-- | security/openssh-portable/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile new file mode 100644 index 000000000000..1f155f8ae624 --- /dev/null +++ b/security/openssh-portable/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: openssh +# Date created: 18 Mar 1999 +# Whom: dwcjr@inethouston.net +# +# $FreeBSD$ +# + +PORTNAME= openssh +PORTVERSION= 2.9p1 +CATEGORIES= security ipv6 +MASTER_SITES= ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \ + ftp://ftp.op.net/pub/OpenBSD/OpenSSH/portable/ \ + ftp://carroll.cac.psu.edu/pub/OpenBSD/OpenSSH/portable/ +PKGNAMESUFFIX= -portable + +MAINTAINER= dwcjr@inethouston.net + +MAN1= sftp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 scp.1 ssh.1 +MAN8= sftp-server.8 sshd.8 + +CRYPTOLIBS= -L${OPENSSLLIB} -lcrypto +USE_OPENSSL= YES +GNU_CONFIGURE= yes +CONFIGURE_ARGS?= --prefix=${PREFIX} + +.if exists(/usr/include/security/pam_modules.h) +CONFIGURE_ARGS+= --with-pam +.endif + +.if exists(/usr/include/tcpd.h) +CONFIGURE_ARGS+= --with-tcp-wrappers +.endif + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |