Index: head/x11-fm/filerunner/Makefile =================================================================== --- head/x11-fm/filerunner/Makefile (revision 148141) +++ head/x11-fm/filerunner/Makefile (revision 148142) @@ -1,43 +1,44 @@ # New ports collection makefile for: filerunner # Date created: 3 August 1996 # Whom: lukin # # $FreeBSD$ # PORTNAME= filerunner PORTVERSION= 2.5.1 +PORTREVISION= 1 CATEGORIES= x11-fm tk84 MASTER_SITES= ${MASTER_SITE_NETBSD} \ http://www.cd.chalmers.se/~hch/ DISTNAME= FileRunner-${PORTVERSION} MAINTAINER= andrew.nau.ua@gmail.com COMMENT= Filemanager with FTP capabilities. Uses Tcl/Tk LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84 MAKEFILE= Makefile.freebsd_gcc MAKE_ENV+= X11BASE=${X11BASE} pre-build: # @ ${RM} ${WRKSRC}/ext.so @ ${CP} ${WRKSRC}/Makefiles/Makefile.freebsd_gcc ${WRKSRC} do-install: @${MKDIR} ${PREFIX}/lib/FileRunner/bitmaps @${INSTALL_SCRIPT} ${WRKSRC}/fr ${PREFIX}/lib/FileRunner @${INSTALL_SCRIPT} ${WRKSRC}/frcolor ${PREFIX}/lib/FileRunner @${INSTALL_SCRIPT} ${WRKSRC}/frftp ${PREFIX}/lib/FileRunner @${LN} -sf ${PREFIX}/lib/FileRunner/fr ${PREFIX}/bin .for file in COPYING FAQ HISTORY KnownBugs.txt QuickStart.txt README Tips.txt \ Users_Guide.txt chmod.tcl cmd.tcl config.tcl dialog.tcl ext.so font.tcl \ ftp.tcl http.tcl tclIndex @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/FileRunner .endfor .for map in cross.bit frterm.bit larger.bit left.bit max.bit pgdown.bit pgup.bit \ right.bit smaller.bit toggle.bit tree.bit up.bit update.bit xterm.bit @${INSTALL_DATA} ${WRKSRC}/bitmaps/${map} ${PREFIX}/lib/FileRunner/bitmaps .endfor .include Property changes on: head/x11-fm/filerunner/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.29 \ No newline at end of property +1.30 \ No newline at end of property Index: head/x11-fm/filerunner/distinfo =================================================================== --- head/x11-fm/filerunner/distinfo (revision 148141) +++ head/x11-fm/filerunner/distinfo (revision 148142) @@ -1,2 +1,3 @@ MD5 (FileRunner-2.5.1.tar.gz) = dc46234d75c906972696242cd330847d +SHA256 (FileRunner-2.5.1.tar.gz) = 3f1ad9b52cca5d130a1679aaa9ac3d34fd75518d636a2d7f1bf1c841fd54590b SIZE (FileRunner-2.5.1.tar.gz) = 122795 Property changes on: head/x11-fm/filerunner/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/x11-fm/filerunner/files/patch-ac =================================================================== --- head/x11-fm/filerunner/files/patch-ac (revision 148141) +++ head/x11-fm/filerunner/files/patch-ac (revision 148142) @@ -1,17 +1,18 @@ ---- ext.c.orig Wed Oct 12 18:22:46 2005 -+++ ext.c Wed Oct 12 18:22:22 2005 +--- ext.c.orig Sun Nov 13 12:52:16 2005 ++++ ext.c Sun Nov 13 12:52:57 2005 @@ -123,11 +123,12 @@ HANDLE2(*p != '\0', "Error converting arg to int"); time_s = localtime(&t); + time_s->tm_year = 1900 + time_s->tm_year; if (dateformat) - sprintf(interp->result, "%02d%02d%02d %02d:%02d:%02d", time_s->tm_mday, time_s->tm_mon+1, +- time_s->tm_year % 100, time_s->tm_hour, time_s->tm_min, time_s->tm_sec); + sprintf(interp->result, "%02d%02d%04d %02d:%02d:%02d", time_s->tm_mday, time_s->tm_mon+1, - time_s->tm_year % 100, time_s->tm_hour, time_s->tm_min, time_s->tm_sec); ++ time_s->tm_year, time_s->tm_hour, time_s->tm_min, time_s->tm_sec); else - sprintf(interp->result, "%02d%02d%02d %02d:%02d:%02d", time_s->tm_year % 100, time_s->tm_mon+1, -+ sprintf(interp->result, "%04d%02d%02d %02d:%02d:%02d", time_s->tm_year % 100, time_s->tm_mon+1, ++ sprintf(interp->result, "%04d%02d%02d %02d:%02d:%02d", time_s->tm_year, time_s->tm_mon+1, time_s->tm_mday, time_s->tm_hour, time_s->tm_min, time_s->tm_sec); return TCL_OK; } Property changes on: head/x11-fm/filerunner/files/patch-ac ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property