diff options
author | knu <knu@FreeBSD.org> | 2000-05-01 10:34:33 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2000-05-01 10:34:33 +0000 |
commit | 4f34d7b34ea54c79c9c59feab9bd43b9c8e448ae (patch) | |
tree | dea784502f416151b6ebd0189e7a8e79376f41cc /ftp/sftp/Makefile | |
parent | c5b9bceb2b12dba0618d35ea91f6bc7fb547410f (diff) | |
download | FreeBSD-ports-4f34d7b34ea54c79c9c59feab9bd43b9c8e448ae.zip FreeBSD-ports-4f34d7b34ea54c79c9c59feab9bd43b9c8e448ae.tar.gz |
Update to 0.9.4.
Stop registering ssh dependency on systems posterior to 4.0-RELEASE.
PR: ports/18320
Submitted by: R,Ai(Bmi Guyomarch <rguyom@321.net>
Diffstat (limited to 'ftp/sftp/Makefile')
-rw-r--r-- | ftp/sftp/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ftp/sftp/Makefile b/ftp/sftp/Makefile index 5f3d02b..e5c6e13 100644 --- a/ftp/sftp/Makefile +++ b/ftp/sftp/Makefile @@ -6,20 +6,22 @@ # PORTNAME= sftp -PORTVERSION= 0.7 +PORTVERSION= 0.9.4 CATEGORIES= ftp security MASTER_SITES= ftp://ftp.xbill.org/pub/sftp/ MAINTAINER= Cy.Schubert@uumail.gov.bc.ca +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 400014 RUN_DEPENDS= ssh:${PORTSDIR}/security/openssh +.endif RESTRICTED= "Calls external cryptographic routines." GNU_CONFIGURE= yes - -CONFIGURE_ARGS+= --prefix=${PREFIX} \ - --enable-remotepath=${PREFIX}/libexec +CONFIGURE_ARGS= --enable-remotepath=${PREFIX}/libexec MAN1= secftp.1 @@ -42,4 +44,4 @@ do-install: fi @sort -u ${PLIST}.unsorted > ${PLIST} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |