diff options
author | tobez <tobez@FreeBSD.org> | 2002-06-03 03:09:22 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2002-06-03 03:09:22 +0800 |
commit | a7294363350365da89505a3e8b22f59329e1ac33 (patch) | |
tree | 92c0c7c3118fd419cf3c316067398e2e0c9cb482 /net/scli | |
parent | e25566dda8ca075127fdf3f7009a4e2763514d4d (diff) | |
download | freebsd-ports-graphics-a7294363350365da89505a3e8b22f59329e1ac33.tar.gz freebsd-ports-graphics-a7294363350365da89505a3e8b22f59329e1ac33.tar.zst freebsd-ports-graphics-a7294363350365da89505a3e8b22f59329e1ac33.zip |
Update to 0.2.9.
PR: 38834
Submitted by: Marcin Cieslak <saper@system.pl> via the maintainer
Diffstat (limited to 'net/scli')
-rw-r--r-- | net/scli/Makefile | 2 | ||||
-rw-r--r-- | net/scli/distinfo | 2 | ||||
-rw-r--r-- | net/scli/files/patch-aa | 11 | ||||
-rw-r--r-- | net/scli/files/patch-ad | 31 |
4 files changed, 2 insertions, 44 deletions
diff --git a/net/scli/Makefile b/net/scli/Makefile index f3a1daa693e..ffebfd850e8 100644 --- a/net/scli/Makefile +++ b/net/scli/Makefile @@ -6,7 +6,7 @@ # PORTNAME= scli -PORTVERSION= 0.2.8 +PORTVERSION= 0.2.9 CATEGORIES= net MASTER_SITES= ftp://ftp.ibr.cs.tu-bs.de/pub/local/${PORTNAME}/ diff --git a/net/scli/distinfo b/net/scli/distinfo index 7d83c6501bd..4c863e87f9b 100644 --- a/net/scli/distinfo +++ b/net/scli/distinfo @@ -1 +1 @@ -MD5 (scli-0.2.8.tar.gz) = 47b34d224874347c43830ddc18d3301e +MD5 (scli-0.2.9.tar.gz) = 7ca7c7031cbd6118b39550f2ce520a57 diff --git a/net/scli/files/patch-aa b/net/scli/files/patch-aa deleted file mode 100644 index 605317b0ba4..00000000000 --- a/net/scli/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- configure_orig Fri May 24 22:19:04 2002 -+++ configure Fri May 24 22:19:15 2002 -@@ -1569,7 +1569,7 @@ - #include <stdlib.h> - #include <stdio.h> - #include <string.h> --#include <xmlversion.h> -+#include <libxml/xmlversion.h> - - int - main() diff --git a/net/scli/files/patch-ad b/net/scli/files/patch-ad deleted file mode 100644 index 649c50158fb..00000000000 --- a/net/scli/files/patch-ad +++ /dev/null @@ -1,31 +0,0 @@ ---- scli/fmt.c 2002-03-27 14:41:27.000000000 +0100 -+++ scli/fmt.c_old 2002-05-02 08:03:22.000000000 +0200 -@@ -81,7 +81,7 @@ - { - static char buffer[80]; - time_t now, gmt; -- struct tm *tm; -+ struct tm *tm, now_tm; - int gmt_offset; - - now = time(NULL); -@@ -99,13 +99,14 @@ - gmt = mktime(tm); - - tm = localtime(&now); -+ now_tm = *tm; - tm->tm_isdst = 0; - gmt_offset = mktime(tm) - gmt; - - g_snprintf(buffer, sizeof(buffer), - "%04d-%02d-%02d %02d:%02d:%02d %c%02d:%02d", -- tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, -- tm->tm_hour, tm->tm_min, tm->tm_sec, -+ now_tm.tm_year + 1900, now_tm.tm_mon + 1, now_tm.tm_mday, -+ now_tm.tm_hour, now_tm.tm_min, now_tm.tm_sec, - gmt_offset >= 0 ? '+' : '-', - (int) ABS(gmt_offset) / 3600, - (int) (ABS(gmt_offset) / 60) % 60); - - - |