diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2002-06-02 19:09:22 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2002-06-02 19:09:22 +0000 |
commit | 80d369c49f7405d9c54654a757aef142d94360b6 (patch) | |
tree | 89cc017c56437e16b247f4143093b9d2b045a16e /net-mgmt | |
parent | Add a missing mkdir (diff) |
Update to 0.2.9.
PR: 38834
Submitted by: Marcin Cieslak <saper@system.pl> via the maintainer
Notes
Notes:
svn path=/head/; revision=60481
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/scli/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/scli/distinfo | 2 | ||||
-rw-r--r-- | net-mgmt/scli/files/patch-aa | 11 | ||||
-rw-r--r-- | net-mgmt/scli/files/patch-ad | 31 |
4 files changed, 2 insertions, 44 deletions
diff --git a/net-mgmt/scli/Makefile b/net-mgmt/scli/Makefile index f3a1daa693ef..ffebfd850e87 100644 --- a/net-mgmt/scli/Makefile +++ b/net-mgmt/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-mgmt/scli/distinfo b/net-mgmt/scli/distinfo index 7d83c6501bda..4c863e87f9b3 100644 --- a/net-mgmt/scli/distinfo +++ b/net-mgmt/scli/distinfo @@ -1 +1 @@ -MD5 (scli-0.2.8.tar.gz) = 47b34d224874347c43830ddc18d3301e +MD5 (scli-0.2.9.tar.gz) = 7ca7c7031cbd6118b39550f2ce520a57 diff --git a/net-mgmt/scli/files/patch-aa b/net-mgmt/scli/files/patch-aa deleted file mode 100644 index 605317b0ba46..000000000000 --- a/net-mgmt/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-mgmt/scli/files/patch-ad b/net-mgmt/scli/files/patch-ad deleted file mode 100644 index 649c50158fb0..000000000000 --- a/net-mgmt/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); - - - |