Assign MAINTAINER to Serge Gagnon <gagnon__s@videotron.ca>
fix lex.c add a missed dependency PR: ports/50967 Submitted by: Serge Gagnon <gagnon__s@videotron.ca>
This commit is contained in:
parent
55b8c1aac8
commit
73dd863906
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=85480
3 changed files with 16 additions and 3 deletions
|
@ -13,10 +13,11 @@ MASTER_SITES= ${MASTER_SITE_XCONTRIB}
|
|||
MASTER_SITE_SUBDIR= utilities
|
||||
DISTFILES= Ftptool${PORTVERSION}.tar.gz
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= gagnon__s@videotron.ca
|
||||
COMMENT= Graphic ftp shell based on xview
|
||||
|
||||
LIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview
|
||||
RUN_DEPENDS= ${X11BASE}/bin/textedit:${PORTSDIR}/editors/textedit
|
||||
|
||||
USE_IMAKE= yes
|
||||
WRKSRC= ${WRKDIR}/Ftptool4.6
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# include "stdio.h"
|
||||
# include <stdio.h>
|
||||
# include <unistd.h>
|
||||
# define U(x) x
|
||||
# define NLSTATE yyprevious=YYNEWLINE
|
||||
# define BEGIN yybgin = yysvec + 1 +
|
||||
|
@ -17,7 +18,7 @@ int yyleng; extern char yytext[];
|
|||
int yymorfg;
|
||||
extern char *yysptr, yysbuf[];
|
||||
int yytchar;
|
||||
FILE *yyin = {stdin}, *yyout = {stdout};
|
||||
FILE *yyin = STDIN_FILENO, *yyout = STDOUT_FILENO;
|
||||
extern int yylineno;
|
||||
struct yysvf {
|
||||
struct yywork *yystoff;
|
||||
|
|
11
ftp/ftptool/files/patch-ac
Normal file
11
ftp/ftptool/files/patch-ac
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- create_other.c.orig Mon Aug 29 05:05:43 1994
|
||||
+++ create_other.c Wed Jul 23 19:19:05 2003
|
||||
@@ -1517,7 +1517,7 @@
|
||||
PANEL_VALUE_DISPLAY_LENGTH, 4,
|
||||
PANEL_VALUE_STORED_LENGTH, 40,
|
||||
PANEL_MIN_VALUE, 1992,
|
||||
- PANEL_MAX_VALUE, 2000,
|
||||
+ PANEL_MAX_VALUE, 2999,
|
||||
PANEL_ITEM_X, xv_get(schedule_window.day, XV_X)
|
||||
+ xv_get(schedule_window.day, XV_WIDTH)
|
||||
+ xv_col(schedule_window.panel, 1),
|
Loading…
Reference in a new issue