summaryrefslogtreecommitdiff
path: root/security/ssh2/Makefile
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1998-12-01 11:10:33 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1998-12-01 11:10:33 +0000
commit4bc2255958173159ee1b4e65ca8a0976b8ab39df (patch)
treecc4b1214de56a05a076fec2490e29f89e8fc033f /security/ssh2/Makefile
parentreturn breakage status (but only for 2.2.x) (diff)
1. Update base ssh2 version from 2.0.9 to 2.0.11
Ssh 2.0.9 has bugs abount updating utmp/wtmp file. 2. Now you can compile ssh2 to support TCP_Wrapper (security/tcp_wrapper) when you define USE_TCPWRAP=YES 3. Fix typo in MASTER_SITES (Thanks to Chris Piazza <norn@home.net>) 4. Use /usr/lib/libz.so.* instead of libz in ssh2 source file. 5. Delete some obsolute pathes. PR: ports/8916 Submitted by: issei@jp.FreeBSD.ORG
Notes
Notes: svn path=/head/; revision=15012
Diffstat (limited to 'security/ssh2/Makefile')
-rw-r--r--security/ssh2/Makefile13
1 files changed, 4 insertions, 9 deletions
diff --git a/security/ssh2/Makefile b/security/ssh2/Makefile
index 9cbda58f77fe..12e8a8dc84b8 100644
--- a/security/ssh2/Makefile
+++ b/security/ssh2/Makefile
@@ -1,29 +1,24 @@
# New ports collection makefile for: ssh2
-# Version required: 2.0.9
+# Version required: 2.0.11
# Date created: 5 Oct 1998
# Whom: Issei Suzuki <issei@jp.FreeBSD.ORG>
#
-# $Id: Makefile,v 1.73 1998/11/23 05:15:16 kuriyama Exp $
+# $Id: Makefile,v 1.74 1998/12/01 09:33:58 obrien Exp $
#
# Maximal ssh2 package requires YES values for
# USE_SSH1, USE_TCPWRAP
-DISTNAME= ssh-2.0.9
+DISTNAME= ssh-2.0.11
CATEGORIES= security net
MASTER_SITES= ftp://ftp.cs.hut.fi/pub/ssh/ \
ftp://sunsite.unc.edu/pub/packages/security/ssh/ \
ftp://ftp.kyoto.wide.ad.jp/pub/security/ssh/
-PATCH_SITES= ${MASTER_SITES}
-PATCHFILES= ${DISTNAME}-configure-patch
-
MAINTAINER= issei@jp.FreeBSD.org
RESTRICTED= "Crypto; export-controlled"
GNU_CONFIGURE= YES
-MAKE_ENV= SSH_SERVER_DIR="${PREFIX}/etc/ssh2" \
- SSH_CLIENT_GLOBAL_CONFIG_FILE="${PREFIX}/etc/ssh2/ssh2_config"
CONFIGURE_ARGS= --prefix=${PREFIX} --with-etcdir=${PREFIX}/etc
#Uncomment if all your users are in their own group and their homedir
@@ -46,7 +41,7 @@ CONFIGURE_ARGS+= --with-tis
.endif
# Include tcp_wrappers support
.if defined(USE_TCPWRAP) && ${USE_TCPWRAP} == YES
-CONFIGURE_ARGS+= --with-libwrap
+CONFIGURE_ARGS+= --with-libwrap="-L ${PREFIX}/lib -lwrap"
LIB_DEPENDS+= wrap.7:${PORTSDIR}/security/tcp_wrapper
.endif