summaryrefslogtreecommitdiff
path: root/ftp/ncftp2
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-11-10 03:10:41 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-11-10 03:10:41 +0000
commitbd990e6999d23a4ac713737af7fc03b713f29041 (patch)
treea59a2ff3ded55f8e0241dffd19706287b9447965 /ftp/ncftp2
parentTry to detect if tk4.x is present in /usr/local so that XF86Setup can (diff)
Update ncftp2.4.1 -> 2.4.2
Removed my patch for the extra characters in the passwd prompt caused by the long-standing (but now fixed in development sources) ncurses problem now that the author has an equivalent fix.
Notes
Notes: svn path=/head/; revision=4367
Diffstat (limited to 'ftp/ncftp2')
-rw-r--r--ftp/ncftp2/Makefile7
-rw-r--r--ftp/ncftp2/distinfo2
-rw-r--r--ftp/ncftp2/files/patch-ab28
3 files changed, 4 insertions, 33 deletions
diff --git a/ftp/ncftp2/Makefile b/ftp/ncftp2/Makefile
index f2b8fd78e11c..c579be134685 100644
--- a/ftp/ncftp2/Makefile
+++ b/ftp/ncftp2/Makefile
@@ -1,15 +1,14 @@
# New ports collection makefile for: ncftp2
-# Version required: 2.4.1
+# Version required: 2.4.2
# Date created: 4 Nov 1994
# Whom: ache
#
-# $Id: Makefile,v 1.34 1996/10/18 15:55:37 ache Exp $
+# $Id: Makefile,v 1.35 1996/10/21 20:05:10 ache Exp $
#
-DISTNAME= ncftp-2.4.1
+DISTNAME= ncftp-2.4.2
CATEGORIES+= net
MASTER_SITES= ftp://ftp.probe.net/pub/ncftp/
-EXTRACT_SUFX= .tgz
MAINTAINER= ache@FreeBSD.ORG
diff --git a/ftp/ncftp2/distinfo b/ftp/ncftp2/distinfo
index abc41546a123..081e9fc1a515 100644
--- a/ftp/ncftp2/distinfo
+++ b/ftp/ncftp2/distinfo
@@ -1 +1 @@
-MD5 (ncftp-2.4.1.tgz) = 7bc3b470e5ada29f70d65b1f294fd774
+MD5 (ncftp-2.4.2.tar.gz) = 7ca452f7932820c4bad98cfb78d8bba8
diff --git a/ftp/ncftp2/files/patch-ab b/ftp/ncftp2/files/patch-ab
deleted file mode 100644
index 97726f007458..000000000000
--- a/ftp/ncftp2/files/patch-ab
+++ /dev/null
@@ -1,28 +0,0 @@
-#
-# This is to work around an apparent ncurses bug.. It's a slight optimisation
-# too, I think.
-#
---- Win.c.dist Wed Dec 6 13:38:47 1995
-+++ Win.c Sun Aug 18 23:08:11 1996
-@@ -1101,16 +1101,12 @@
- Exit(kExitWinFail2);
- }
-
-+ werase(gPromptWin);
- WAttr(gPromptWin, flags, 1);
-- if (addTail) {
-- mvwprintw(gPromptWin, 0,0, "%s%s", pr, kPromptTail);
-- WAttr(gPromptWin, flags, 0);
-- } else {
-- mvwprintw(gPromptWin, 0,0, "%s", pr);
-- WAttr(gPromptWin, flags, 0);
-- if (flags & kReverse)
-- wprintw(gPromptWin, " ");
-- }
-+ mvwprintw(gPromptWin, 0,0, "%s", pr);
-+ if (addTail)
-+ wprintw(gPromptWin, "%s", kPromptTail);
-+ WAttr(gPromptWin, flags, 0);
- wnoutrefresh(gPromptWin);
- werase(gInputWin);
- touchwin(gInputWin);