diff options
author | hubertf <hubertf> | 1999-12-27 23:53:43 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1999-12-27 23:53:43 +0000 |
commit | 79eb0e3730374c363129aa672327875441c91cd6 (patch) | |
tree | 08beeb1e60cdfe805cc58cbc06e22011d6060f7d /net | |
parent | 676e97ed7f8c016d2d6f9ae1918de4a4287588ed (diff) | |
download | pkgsrc-79eb0e3730374c363129aa672327875441c91cd6.tar.gz |
Update to V0.5. Changes:
- added "dir" == "ls -l", "mget" == "get", "mput == "put"
- filenames with spaces should work now
- added ability to connect to a different port with -p. -P now
specifies remote path
- fixed problems with multiple opens and no intermediate close
- command line flags processed in open, so multiple opens with
different flags will work
Uses NetBSD's libedit instead of libreadline. (Why don't we have any
documentation on that, btw?!?)
Diffstat (limited to 'net')
-rw-r--r-- | net/sftp/Makefile | 4 | ||||
-rw-r--r-- | net/sftp/files/md5 | 4 | ||||
-rw-r--r-- | net/sftp/patches/patch-aa | 12 | ||||
-rw-r--r-- | net/sftp/patches/patch-ab | 19 |
4 files changed, 35 insertions, 4 deletions
diff --git a/net/sftp/Makefile b/net/sftp/Makefile index 0dcb566e5a3..8aa288c3275 100644 --- a/net/sftp/Makefile +++ b/net/sftp/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 1999/12/21 22:39:30 hubertf Exp $ +# $NetBSD: Makefile,v 1.3 1999/12/27 23:53:43 hubertf Exp $ # -DISTNAME= sftp-0.4 +DISTNAME= sftp-0.5 CATEGORIES= net security MASTER_SITES= ftp://ftp.xbill.org/pub/sftp/ diff --git a/net/sftp/files/md5 b/net/sftp/files/md5 index a82fd9d8a95..cc548b70263 100644 --- a/net/sftp/files/md5 +++ b/net/sftp/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.1.1.1 1999/12/21 22:37:51 hubertf Exp $ +$NetBSD: md5,v 1.2 1999/12/27 23:53:44 hubertf Exp $ -MD5 (sftp-0.4.tar.gz) = 6165f7264ee50372cba6da542e09f937 +MD5 (sftp-0.5.tar.gz) = 8070983234f1a872b969f8eebe24b84d diff --git a/net/sftp/patches/patch-aa b/net/sftp/patches/patch-aa new file mode 100644 index 00000000000..1df0a6a7c67 --- /dev/null +++ b/net/sftp/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1 1999/12/27 23:53:44 hubertf Exp $ + +--- Makefile.in.orig Tue Dec 28 00:40:39 1999 ++++ Makefile.in Tue Dec 28 00:42:39 1999 +@@ -1,6 +1,6 @@ + CC = @CC@ + CFLAGS = @CFLAGS@ +-LIBS = @LIBS@ ++LIBS = -ledit -ltermcap + + all: sftp rsftp sftpserv + diff --git a/net/sftp/patches/patch-ab b/net/sftp/patches/patch-ab new file mode 100644 index 00000000000..d3d04d3ee11 --- /dev/null +++ b/net/sftp/patches/patch-ab @@ -0,0 +1,19 @@ +$NetBSD: patch-ab,v 1.1 1999/12/27 23:53:45 hubertf Exp $ + +--- sftp.c.orig Tue Dec 28 00:36:29 1999 ++++ sftp.c Tue Dec 28 00:39:46 1999 +@@ -19,10 +19,14 @@ + #include <sys/socket.h> + #include <sys/wait.h> + ++#ifdef __NetBSD__ ++#include <readline.h> ++#else /* __NetBSD__ */ + #ifdef HAVE_LIBREADLINE + #include <readline/readline.h> + #include <readline/history.h> + #endif ++#endif /* __NetBSD__ */ + + #include "sftp.h" + |