diff options
author | 2004-01-22 19:10:05 +0000 | |
---|---|---|
committer | 2004-01-22 19:10:05 +0000 | |
commit | c82edb4148c7e398c5a3b72bf7396252a70fcd4d (patch) | |
tree | 5b39e0ab46281d1b3d897d65621fe1a590004672 /app-admin/gkrellm/files | |
parent | Added a fix for linux/fb.h. (diff) | |
download | historical-c82edb4148c7e398c5a3b72bf7396252a70fcd4d.tar.gz historical-c82edb4148c7e398c5a3b72bf7396252a70fcd4d.tar.bz2 historical-c82edb4148c7e398c5a3b72bf7396252a70fcd4d.zip |
Version bumped and x86 stable
Diffstat (limited to 'app-admin/gkrellm/files')
-rw-r--r-- | app-admin/gkrellm/files/digest-gkrellm-2.1.25 | 1 | ||||
-rw-r--r-- | app-admin/gkrellm/files/gkrellm-2.1.24-dotkeep.patch | 15 | ||||
-rw-r--r-- | app-admin/gkrellm/files/gkrellm-dotkeep.patch | 33 |
3 files changed, 34 insertions, 15 deletions
diff --git a/app-admin/gkrellm/files/digest-gkrellm-2.1.25 b/app-admin/gkrellm/files/digest-gkrellm-2.1.25 new file mode 100644 index 000000000000..e75108ee1a30 --- /dev/null +++ b/app-admin/gkrellm/files/digest-gkrellm-2.1.25 @@ -0,0 +1 @@ +MD5 1241d0a7c17650ded440f21463ce0403 gkrellm-2.1.25.tar.bz2 633685 diff --git a/app-admin/gkrellm/files/gkrellm-2.1.24-dotkeep.patch b/app-admin/gkrellm/files/gkrellm-2.1.24-dotkeep.patch deleted file mode 100644 index 9fa5a59ef2a2..000000000000 --- a/app-admin/gkrellm/files/gkrellm-2.1.24-dotkeep.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -Naur gkrellm-2.1.24/src/plugins.c gkrellm-2.1.24-new/src/plugins.c ---- gkrellm-2.1.24/src/plugins.c 2003-12-14 02:22:50.000000000 +0100 -+++ gkrellm-2.1.24-new/src/plugins.c 2004-01-20 15:59:42.625278072 +0100 -@@ -1057,6 +1057,11 @@ - return; - while ((name = (gchar *) g_dir_read_name(dir)) != NULL) - { -+ -+ if (strcmp(name, ".keep") == 0) { -+ continue; -+ } -+ - /* If there's a libtool .la archive, won't want to load this .so - */ - if ( !string_suffix(name, "la") diff --git a/app-admin/gkrellm/files/gkrellm-dotkeep.patch b/app-admin/gkrellm/files/gkrellm-dotkeep.patch new file mode 100644 index 000000000000..835c14128eb0 --- /dev/null +++ b/app-admin/gkrellm/files/gkrellm-dotkeep.patch @@ -0,0 +1,33 @@ +diff -Naur src/mail.c.org src/mail.c +--- src/mail.c.org 2003-12-19 05:57:01.000000000 +0100 ++++ src/mail.c 2004-01-20 16:47:09.000000000 +0100 +@@ -1376,7 +1378,15 @@ + mbox->old_mail_count = 0; + while(fgets(buf, sizeof(buf), f)) + { +- if (is_multipart && !in_header) ++ ++ if (is_From_line(mbox, buf)) ++ { ++ mbox->mail_count += 1; ++ in_header = TRUE; ++ marked_read = FALSE; ++ is_multipart = FALSE; ++ } ++ else if (is_multipart && !in_header) + { + /* Skip to last line of multipart mail */ + if (strncmp(buf,mpart_sep,strlen(mpart_sep))==0) +@@ -1387,12 +1397,6 @@ + in_header = FALSE; + mbox->is_internal = FALSE; + } +- else if (is_From_line(mbox, buf)) +- { +- mbox->mail_count += 1; +- in_header = TRUE; +- marked_read = FALSE; +- } + else if (in_header && status_is_old(buf) && !marked_read) + { + mbox->old_mail_count += 1; |