Date: Tue, 6 Aug 2019 17:53:17 +0000 (UTC) From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508279 - in head/math/emc2: . files Message-ID: <201908061753.x76HrHim069648@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: fernape Date: Tue Aug 6 17:53:16 2019 New Revision: 508279 URL: https://svnweb.freebsd.org/changeset/ports/508279 Log: math/emc2: pet portlint * Move out of order variable * Remake patches Modified: head/math/emc2/Makefile head/math/emc2/files/patch-Makefile head/math/emc2/files/patch-f3d__u_hp700__prettydate.c head/math/emc2/files/patch-f3d__u_hp700__prettytime.c head/math/emc2/files/patch-libI77__fio.h head/math/emc2/files/patch-libI77__lread.c head/math/emc2/files/patch-libemc2_1.c Modified: head/math/emc2/Makefile ============================================================================== --- head/math/emc2/Makefile Tue Aug 6 17:43:07 2019 (r508278) +++ head/math/emc2/Makefile Tue Aug 6 17:53:16 2019 (r508279) @@ -17,11 +17,11 @@ LICENSE_NAME= INRIA license, perhaps specific to emc2 LICENSE_FILE= ${WRKSRC}/COPYRIGHT LICENSE_PERMS= auto-accept no-dist-sell no-pkg-sell -RESTRICTED= No resale, contact author for commercial usage - USES= gmake USE_XORG= x11 xau xcb xdmcp + ALL_TARGET= ${PORTNAME} +RESTRICTED= No resale, contact author for commercial usage .if defined(LANG) && ${LANG:Mfr*} != "" CFLAGS+= -DFRENCH Modified: head/math/emc2/files/patch-Makefile ============================================================================== --- head/math/emc2/files/patch-Makefile Tue Aug 6 17:43:07 2019 (r508278) +++ head/math/emc2/files/patch-Makefile Tue Aug 6 17:53:16 2019 (r508279) @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Feb 10 09:17:51 2003 -+++ Makefile Tue Dec 16 23:22:42 2003 +--- Makefile.orig 2003-02-10 08:17:51 UTC ++++ Makefile @@ -8,9 +8,9 @@ # for IBM RS6000 #CC=xlc Modified: head/math/emc2/files/patch-f3d__u_hp700__prettydate.c ============================================================================== --- head/math/emc2/files/patch-f3d__u_hp700__prettydate.c Tue Aug 6 17:43:07 2019 (r508278) +++ head/math/emc2/files/patch-f3d__u_hp700__prettydate.c Tue Aug 6 17:53:16 2019 (r508279) @@ -1,6 +1,6 @@ ---- ./f3d/u_hp700/prettydate.c.orig 2010-08-31 08:51:18.000000000 -0400 -+++ ./f3d/u_hp700/prettydate.c 2010-08-31 08:52:44.000000000 -0400 -@@ -6,7 +6,7 @@ +--- f3d/u_hp700/prettydate.c.orig 1999-11-09 14:58:17 UTC ++++ f3d/u_hp700/prettydate.c +@@ -6,7 +6,7 @@ char *date; { time_t timevar; struct tm *pttm; @@ -9,7 +9,7 @@ timevar=time(&timevar); pttm = localtime(&timevar); -@@ -14,6 +14,6 @@ +@@ -14,6 +14,6 @@ char *date; sprintf(buffer,"%02d%02d%02d",pttm->tm_year % 100, pttm->tm_mon+1, pttm->tm_mday); Modified: head/math/emc2/files/patch-f3d__u_hp700__prettytime.c ============================================================================== --- head/math/emc2/files/patch-f3d__u_hp700__prettytime.c Tue Aug 6 17:43:07 2019 (r508278) +++ head/math/emc2/files/patch-f3d__u_hp700__prettytime.c Tue Aug 6 17:53:16 2019 (r508279) @@ -1,6 +1,6 @@ ---- ./f3d/u_hp700/prettytime.c.orig 2010-08-31 08:51:31.000000000 -0400 -+++ ./f3d/u_hp700/prettytime.c 2010-08-31 08:52:32.000000000 -0400 -@@ -6,7 +6,7 @@ +--- f3d/u_hp700/prettytime.c.orig 1999-11-09 14:58:18 UTC ++++ f3d/u_hp700/prettytime.c +@@ -6,7 +6,7 @@ char *timeret; { time_t timevar; struct tm *pttm; @@ -9,7 +9,7 @@ timevar=time(&timevar); pttm = localtime(&timevar); -@@ -14,6 +14,6 @@ +@@ -14,6 +14,6 @@ char *timeret; sprintf(buffer,"%02d%02d%02d000000",pttm->tm_hour, pttm->tm_min, pttm->tm_sec); Modified: head/math/emc2/files/patch-libI77__fio.h ============================================================================== --- head/math/emc2/files/patch-libI77__fio.h Tue Aug 6 17:43:07 2019 (r508278) +++ head/math/emc2/files/patch-libI77__fio.h Tue Aug 6 17:53:16 2019 (r508279) @@ -1,5 +1,5 @@ ---- libI77/fio.h.orig Tue Nov 9 15:58:43 1999 -+++ libI77/fio.h Tue Dec 16 23:53:43 2003 +--- libI77/fio.h.orig 1999-11-09 14:58:43 UTC ++++ libI77/fio.h @@ -17,6 +17,12 @@ #endif #endif Modified: head/math/emc2/files/patch-libI77__lread.c ============================================================================== --- head/math/emc2/files/patch-libI77__lread.c Tue Aug 6 17:43:07 2019 (r508278) +++ head/math/emc2/files/patch-libI77__lread.c Tue Aug 6 17:53:16 2019 (r508279) @@ -1,6 +1,6 @@ ---- ./libI77/lread.c.orig 2010-08-31 08:39:32.000000000 -0400 -+++ ./libI77/lread.c 2010-08-31 08:40:19.000000000 -0400 -@@ -369,7 +369,7 @@ +--- libI77/lread.c.orig 1999-11-09 14:58:44 UTC ++++ libI77/lread.c +@@ -369,7 +369,7 @@ l_CHAR(Void) *p++ = ch; f__lcount = 10*f__lcount + ch - '0'; if (++i == size) { @@ -9,7 +9,7 @@ (unsigned int)(size += BUFSIZE)); p = f__lchar + i; } -@@ -401,7 +401,7 @@ +@@ -401,7 +401,7 @@ l_CHAR(Void) noquote: *p++ = ch; if (++i == size) { @@ -18,7 +18,7 @@ (unsigned int)(size += BUFSIZE)); p = f__lchar + i; } -@@ -414,7 +414,7 @@ +@@ -414,7 +414,7 @@ l_CHAR(Void) if(i==size) { newone: Modified: head/math/emc2/files/patch-libemc2_1.c ============================================================================== --- head/math/emc2/files/patch-libemc2_1.c Tue Aug 6 17:43:07 2019 (r508278) +++ head/math/emc2/files/patch-libemc2_1.c Tue Aug 6 17:53:16 2019 (r508279) @@ -1,6 +1,6 @@ ---- ./libemc2_1.c.orig 2010-08-31 08:37:40.000000000 -0400 -+++ ./libemc2_1.c 2010-08-31 08:38:38.000000000 -0400 -@@ -1517,7 +1517,7 @@ +--- libemc2_1.c.orig 1999-11-09 14:58:23 UTC ++++ libemc2_1.c +@@ -1517,7 +1517,7 @@ R*/ i__1[2] = 7, a__1[2] = "' retry"; s_cat(ch__1, a__1, i__1, &c__3, 99L); scrtch_(ch__1, ii + 19);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908061753.x76HrHim069648>