diff options
author | Peter Wemm <peter@FreeBSD.org> | 1996-05-24 19:13:04 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1996-05-24 19:13:04 +0000 |
commit | 2b76d4a8e5620fb3b152fa86d5f62649d24cc041 (patch) | |
tree | 13aa3b84784e10b951ae1a83870a42612f8b5b1e /security/ssh2 | |
parent | 1c12b19f32e92fa527a7bbc597b6953396cacf1d (diff) | |
download | ports-2b76d4a8e5620fb3b152fa86d5f62649d24cc041.tar.gz ports-2b76d4a8e5620fb3b152fa86d5f62649d24cc041.zip |
Notes
Diffstat (limited to 'security/ssh2')
-rw-r--r-- | security/ssh2/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/security/ssh2/Makefile b/security/ssh2/Makefile index 5b09922876aa..6ec2039338ff 100644 --- a/security/ssh2/Makefile +++ b/security/ssh2/Makefile @@ -3,7 +3,7 @@ # Date created: 30 Jul 1995 # Whom: torstenb@FreeBSD.ORG # -# $Id: Makefile,v 1.20 1996/03/24 23:04:17 ache Exp $ +# $Id: Makefile,v 1.21 1996/04/17 01:07:04 asami Exp $ # # Maximal ssh package requires YES values for # USE_PERL, USE_WISH, USE_TCPWRAP @@ -90,9 +90,13 @@ post-install: # Following stuff must be after <bsd.port.mk> to expand exists() properly .if defined(USE_WISH) && ${USE_WISH} == YES || \ - (exists(${PREFIX}/bin/wish4.0) || exists(${PREFIX}/bin/wish)) && \ + (exists(${PREFIX}/bin/wish4.0) || exists(${PREFIX}/bin/wish4.1) || \ + exists(${PREFIX}/bin/wish)) && \ (!defined(USE_WISH) || ${USE_WISH} != NO) -.if exists(${PREFIX}/bin/wish4.0) +.if exists(${PREFIX}/bin/wish4.1) +BUILD_DEPENDS+= wish4.1:${PORTSDIR}/x11/tk41 +CONFIGURE_ENV+= WISH=${PREFIX}/bin/wish4.1 +.elif exists(${PREFIX}/bin/wish4.0) BUILD_DEPENDS+= wish4.0:${PORTSDIR}/x11/tk4 CONFIGURE_ENV+= WISH=${PREFIX}/bin/wish4.0 .else |