mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
Remove ftp/ncftp1, has been unfetchable for some time.
This commit is contained in:
parent
559561ed8f
commit
31d37b4446
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=389303
1
MOVED
1
MOVED
@ -7635,3 +7635,4 @@ print/gnome-specimen||2015-06-10|Has expired: Broken since update to gnome3
|
||||
x11-themes/gtk-aqualightblue-theme||2015-06-10|Has expired: Upstream disappeared
|
||||
x11-themes/gtk-flat-theme2||2015-06-10|Has expired: Upstream disappeared
|
||||
databases/postgresql84-server||2015-06-10|Has expired: "EOL was reached in July 2014"
|
||||
ftp/ncftp1||2015-06-12|Unfetchable
|
||||
|
@ -46,7 +46,6 @@
|
||||
SUBDIR += llnlxftp
|
||||
SUBDIR += mirror
|
||||
SUBDIR += multiget
|
||||
SUBDIR += ncftp1
|
||||
SUBDIR += ncftp3
|
||||
SUBDIR += ncftpd
|
||||
SUBDIR += net2ftp
|
||||
|
@ -1,30 +0,0 @@
|
||||
# Created by: jkh
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ncftp
|
||||
PORTVERSION= 1.9.5
|
||||
CATEGORIES= ftp
|
||||
MASTER_SITES= ftp://ftp.ncftp.com/ncftp/
|
||||
PKGNAMESUFFIX= 1
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= FTP replacement with advanced user interface
|
||||
|
||||
BROKEN= Unfetchable
|
||||
OPTIONS_DEFINE= AS_NCFTP
|
||||
AS_NCFTP_DESC= Install binary as ncftp instead of ncftp1
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
NCFTP= ${PORTNAME}
|
||||
.if empty(PORT_OPTIONS:MAS_NCFTP)
|
||||
NCFTP:= ${NCFTP}${PKGNAMESUFFIX}
|
||||
.endif
|
||||
|
||||
PLIST_FILES= bin/${NCFTP} man/man1/${NCFTP}.1.gz
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${NCFTP}
|
||||
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/${NCFTP}.1.gz
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (ncftp-1.9.5.tar.gz) = 00e35e8f1b59f5d9df7a4207faad14d51c60b4f9cda72158e49053eca85b4bfe
|
||||
SIZE (ncftp-1.9.5.tar.gz) = 95832
|
@ -1,35 +0,0 @@
|
||||
--- Makefile.orig Sun Oct 1 17:50:58 1995
|
||||
+++ Makefile Sun Oct 19 02:18:45 2003
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
# Program definitions. See the README, part C.
|
||||
#--------------------------------------------------------------------------
|
||||
-PDEFS =
|
||||
+PDEFS = -DREADLINE
|
||||
#PDEFS = -DGETLINE
|
||||
#PDEFS = -DREADLINE -DCURSES
|
||||
#PDEFS = -DSOCKS
|
||||
@@ -24,11 +24,12 @@
|
||||
# Choose your compiler and flags below. Make sure you use an ANSI compiler
|
||||
# that handles new style function declarations and prototypes (gcc should).
|
||||
#--------------------------------------------------------------------------
|
||||
-CC = cc
|
||||
+CC ?= cc
|
||||
#CC = gcc
|
||||
|
||||
+CFLAGS ?= -O -pipe
|
||||
#CFLAGS = $(TERM_INC) -O
|
||||
-CFLAGS = $(TERM_INC) -O2
|
||||
+CFLAGS += $(TERM_INC)
|
||||
#CFLAGS = $(TERM_INC) -g
|
||||
|
||||
LFLAGS = -s
|
||||
@@ -53,7 +54,7 @@
|
||||
# You'll need to know where the Rconnect.o object file is if you want
|
||||
# to use Socks.
|
||||
#--------------------------------------------------------------------------
|
||||
-LIBS =
|
||||
+LIBS = -lreadline
|
||||
#LIBS = -ldbmalloc
|
||||
#LIBS = -lgetline
|
||||
#LIBS = -lreadline -lcurses
|
@ -1,24 +0,0 @@
|
||||
--- cmds.c.orig 2014-08-06 20:08:22.000000000 -0400
|
||||
+++ cmds.c 2014-08-06 20:09:04.000000000 -0400
|
||||
@@ -90,7 +90,7 @@
|
||||
extern struct servent serv;
|
||||
extern struct cmd cmdtab[];
|
||||
extern struct userinfo uinfo;
|
||||
-extern FILE *cin, *cout, *logf;
|
||||
+extern FILE *cin, *cout, *logfile;
|
||||
extern int Optind;
|
||||
extern char *Optarg;
|
||||
extern int Optind;
|
||||
@@ -1352,9 +1352,9 @@
|
||||
if (connected)
|
||||
(void) disconnect(0, NULL);
|
||||
rcode = WriteRecentSitesFile();
|
||||
- if (logf != NULL) {
|
||||
- (void) fclose(logf);
|
||||
- logf = NULL;
|
||||
+ if (logfile != NULL) {
|
||||
+ (void) fclose(logfile);
|
||||
+ logfile = NULL;
|
||||
}
|
||||
return rcode;
|
||||
} /* close_up_shop */
|
@ -1,34 +0,0 @@
|
||||
--- ftp.c.orig 2014-08-06 20:08:32.000000000 -0400
|
||||
+++ ftp.c 2014-08-06 20:09:24.000000000 -0400
|
||||
@@ -89,7 +89,7 @@
|
||||
*/
|
||||
|
||||
/* ftp.c externs */
|
||||
-extern FILE *logf;
|
||||
+extern FILE *logfile;
|
||||
extern string anon_password;
|
||||
extern longstring cwd, lcwd;
|
||||
extern Hostname hostname;
|
||||
@@ -365,9 +365,9 @@
|
||||
#endif
|
||||
|
||||
/* Save which sites we opened to the user's logfile. */
|
||||
- if (logf != NULL) {
|
||||
+ if (logfile != NULL) {
|
||||
(void) time(&now);
|
||||
- (void) fprintf(logf, "%s opened at %s",
|
||||
+ (void) fprintf(logfile, "%s opened at %s",
|
||||
hostname,
|
||||
ctime(&now));
|
||||
}
|
||||
@@ -887,8 +887,8 @@
|
||||
} else
|
||||
(void) Strncpy(fullRemote, remote);
|
||||
|
||||
- if (logf != NULL) {
|
||||
- (void) fprintf(logf, "\t-> \"%s\" %s, %s\n",
|
||||
+ if (logfile != NULL) {
|
||||
+ (void) fprintf(logfile, "\t-> \"%s\" %s, %s\n",
|
||||
fullRemote, direction, bsstr);
|
||||
}
|
||||
#ifdef SYSLOG
|
@ -1,29 +0,0 @@
|
||||
--- main.c.orig 1995-10-29 22:17:55.000000000 -0500
|
||||
+++ main.c 2014-08-06 20:07:56.000000000 -0400
|
||||
@@ -69,7 +69,7 @@
|
||||
string pager; /* program to browse text files */
|
||||
string version = FTP_VERSION;
|
||||
long eventnumber; /* number of commands we've done */
|
||||
-FILE *logf = NULL; /* log user activity */
|
||||
+FILE *logfile = NULL; /* log user activity */
|
||||
longstring logfname; /* name of the logfile */
|
||||
long logsize = 4096L; /* max log size. 0 == no limit */
|
||||
int percent_flags; /* "%" in prompt string? */
|
||||
@@ -200,7 +200,7 @@
|
||||
ansi_escapes = 0;
|
||||
if ((cp = getenv("TERM")) != NULL) {
|
||||
if ((*cp == 'v' && cp[1] == 't') /* vt100, vt102, ... */
|
||||
- || (strcmp(cp, "xterm") == 0))
|
||||
+ || (strncmp(cp, "xterm", 5) == 0))
|
||||
ansi_escapes = 1;
|
||||
}
|
||||
#endif
|
||||
@@ -334,7 +334,7 @@
|
||||
cpend = 0; /* no pending replies */
|
||||
|
||||
if (*logfname)
|
||||
- logf = fopen (logfname, "a");
|
||||
+ logfile = fopen (logfname, "a");
|
||||
|
||||
|
||||
/* The user specified a host, maybe in 'colon-mode', on the command
|
@ -1,29 +0,0 @@
|
||||
--- set.c.orig 2014-08-06 20:08:41.000000000 -0400
|
||||
+++ set.c 2014-08-06 20:09:47.000000000 -0400
|
||||
@@ -43,7 +43,7 @@
|
||||
extern string pager, anon_password, prompt;
|
||||
extern str32 curtypename;
|
||||
extern long logsize;
|
||||
-extern FILE *logf;
|
||||
+extern FILE *logfile;
|
||||
extern longstring rcname, logfname, lcwd;
|
||||
extern int auto_binary, ansi_escapes, debug;
|
||||
extern int mprompt, remote_is_unix, verbose;
|
||||
@@ -131,13 +131,13 @@
|
||||
|
||||
void set_log(char *fname, int unset)
|
||||
{
|
||||
- if (logf) {
|
||||
- (void) fclose(logf);
|
||||
- logf = NULL;
|
||||
+ if (logfile) {
|
||||
+ (void) fclose(logfile);
|
||||
+ logfile = NULL;
|
||||
}
|
||||
if (!unset && fname) {
|
||||
(void) Strncpy(logfname, fname);
|
||||
- logf = fopen (LocalDotPath(logfname), "a");
|
||||
+ logfile = fopen (LocalDotPath(logfname), "a");
|
||||
}
|
||||
} /* set_log */
|
||||
|
@ -1,10 +0,0 @@
|
||||
--- sys.h.orig Tue Jun 4 21:12:36 2002
|
||||
+++ sys.h Tue Jun 4 21:12:44 2002
|
||||
@@ -423,7 +423,6 @@
|
||||
# define HERROR 1
|
||||
# define TERMIOS 1
|
||||
# define HAS_GETCWD 1
|
||||
-# define U_WAIT 1
|
||||
# define NO_CONST 1 /* avoid prototype conflict */
|
||||
#endif
|
||||
|
@ -1,5 +0,0 @@
|
||||
NcFTP is a user interface to the Internet standard File
|
||||
Transfer Protocol. This program allows a user to transfer
|
||||
files to and from a remote network site, and offers addi-
|
||||
tional features that are not found in the standard inter-
|
||||
face, ftp.
|
Loading…
Reference in New Issue
Block a user