diff options
author | steve <steve@FreeBSD.org> | 1999-03-15 09:18:49 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-03-15 09:18:49 +0800 |
commit | 2aa0972ca88d2588fce9e0315caed050f020feb9 (patch) | |
tree | b2c75e1f2b4b6c8c5f281a1fc23c6c3793d0b696 /security/ssh2 | |
parent | e656041eac5f60ff5e29bb1894a36847b50ecb1c (diff) | |
download | freebsd-ports-gnome-2aa0972ca88d2588fce9e0315caed050f020feb9.tar.gz freebsd-ports-gnome-2aa0972ca88d2588fce9e0315caed050f020feb9.tar.zst freebsd-ports-gnome-2aa0972ca88d2588fce9e0315caed050f020feb9.zip |
Re-order definition of a couple of variables so the ssh1 dependency
is picked up correctly.
PR: 10577
Submitted by: maintainer
Diffstat (limited to 'security/ssh2')
-rw-r--r-- | security/ssh2/Makefile | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/security/ssh2/Makefile b/security/ssh2/Makefile index e8965b12fdfe..a6a201d9e3c4 100644 --- a/security/ssh2/Makefile +++ b/security/ssh2/Makefile @@ -3,7 +3,7 @@ # Date created: 5 Oct 1998 # Whom: Issei Suzuki <issei@jp.FreeBSD.ORG> # -# $Id: Makefile,v 1.75 1998/12/01 11:10:33 obrien Exp $ +# $Id: Makefile,v 1.78 1999/02/06 01:40:28 ache Exp $ # # Maximal ssh2 package requires YES values for # USE_SSH1, USE_TCPWRAP @@ -24,22 +24,27 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --with-etcdir=${PREFIX}/etc --enable-debug #Uncomment if all your users are in their own group and their homedir #is writeable by that group. Beware the security implications! #CONFIGURE_ARGS+= --enable-group-writeability -# + # Include support for ssh1 client backward compatibility +USE_SSH1?= YES +# Include tcp_wrappers support +USE_TCPWRAP?= NO +# Warning: untested ! +# Include support for the TIS authentication server +USE_TIS?= NO +# Include support for the SecureID card +USE_SECUREID?= NO + .if defined(USE_SSH1) && ${USE_SSH1} == YES BUILD_DEPENDS+= ssh1:${PORTSDIR}/security/ssh RUN_DEPENDS+= ssh1:${PORTSDIR}/security/ssh .endif -# Warning: untested ! -# Include support for the SecureID card .if defined(USE_SECUREID) && ${USE_SECUREID} == YES CONFIGURE_ARGS+= --with-secureid .endif .if defined(USE_TIS) && ${USE_TIS} == YES -# Include support for the TIS authentication server CONFIGURE_ARGS+= --with-tis .endif -# Include tcp_wrappers support .if defined(USE_TCPWRAP) && ${USE_TCPWRAP} == YES CONFIGURE_ARGS+= --with-libwrap="-L ${PREFIX}/lib -lwrap" LIB_DEPENDS+= wrap.7:${PORTSDIR}/security/tcp_wrapper @@ -49,10 +54,6 @@ MAN1= ssh2.1 ssh-keygen2.1 ssh-add2.1 ssh-agent2.1 \ scp2.1 sftp2.1 MAN8= sshd2.8 -USE_SSH1?= YES -USE_TCPWRAP?= NO -USE_TIS?= NO -USE_SECUREID?= NO PORTDOCS= CHANGES LICENSING README .if !defined(USE_SSH1) || (defined(USE_SSH1) && ${USE_SSH1} != YES) PLIST= ${PKGDIR}/PLIST.ssh2_only |