Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 04 Jul 2003 14:53:02 -0300
From:      Juan Salaverria <rael@vectorstar.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/54107: [maintainer update] sysutils/bubblemon 
Message-ID:  <E19YUk2-0005Qu-Jz@demian.dhis.org>
Resent-Message-ID: <200307041750.h64HoH2g077617@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         54107
>Category:       ports
>Synopsis:       [maintainer update] sysutils/bubblemon
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jul 04 10:50:17 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Juan Salaverria
>Release:        FreeBSD 4.7-RELEASE-p1 i386
>Organization:
>Environment:
System: FreeBSD demian.trantor.org 4.7-RELEASE-p1 FreeBSD 4.7-RELEASE-p1 #0: 
Thu Jun 26 07:35:44 ART 2003 root@demian.trantor.org:/usr/src/sys/compile/GENERIC_EXT i386

>Description:
	- update to version 1.2.10
	- removed patches
>How-To-Repeat:
	
>Fix:

diff -ruN bubblemon.bak/Makefile bubblemon/Makefile
--- bubblemon.bak/Makefile	Fri Jul  4 14:27:33 2003
+++ bubblemon/Makefile	Fri Jul  4 14:33:21 2003
@@ -1,15 +1,16 @@
 # New ports collection makefile for:	bubblemon
-# Date created:				28 Aug 2002
+# Date created:				4 Jul 2003
 # Whom:					Juan Salaverria <rael@vectorstar.net>
 #
 # $FreeBSD: ports/sysutils/bubblemon/Makefile,v 1.7 2003/06/27 04:49:27 kris Exp $
 #
 
 PORTNAME=	bubblemon
-PORTVERSION=	1.2.9
+PORTVERSION=	1.2.10
 CATEGORIES=	sysutils gnome
 MASTER_SITES=	http://www.student.nada.kth.se/~d92-jwa/code/bubblemon/ \
-		http://www.student.nada.kth.se/~d92-jwa/code/bubblemon/attic/
+		http://www.student.nada.kth.se/~d92-jwa/code/bubblemon/attic/ \
+		http://savannah.nongnu.org/download/bubblemon/
 
 MAINTAINER=	rael@vectorstar.net
 COMMENT=	Bubblemon is a system CPU and memory load monitor for the GNOME panel
diff -ruN bubblemon.bak/distinfo bubblemon/distinfo
--- bubblemon.bak/distinfo	Fri Jul  4 14:27:33 2003
+++ bubblemon/distinfo	Fri Jul  4 14:31:41 2003
@@ -1 +1 @@
-MD5 (bubblemon-1.2.9.tar.gz) = 0279c39d5b90c7e0376588d30a71ae5b
+MD5 (bubblemon-1.2.10.tar.gz) = 9991d31da403057de1fa56b4e8bb06e8
diff -ruN bubblemon.bak/files/patch-src::bubblemon.c bubblemon/files/patch-src::bubblemon.c
--- bubblemon.bak/files/patch-src::bubblemon.c	Fri Jul  4 14:27:33 2003
+++ bubblemon/files/patch-src::bubblemon.c	Wed Dec 31 21:00:00 1969
@@ -1,31 +0,0 @@
-$FreeBSD: ports/sysutils/bubblemon/files/patch-src::bubblemon.c,v 1.2 2003/06/27 04:49:27 kris Exp $
-
---- src/bubblemon.c.orig	Sun Oct 27 07:45:31 2002
-+++ src/bubblemon.c	Wed Jun 18 03:35:13 2003
-@@ -169,7 +169,7 @@ const char *bubblemon_getTooltip(void)
-   if (sysload.swapSize > 0)
-   {
-     usage2string(swapstring, sysload.swapUsed, sysload.swapSize);
--    snprintf(loadstring, 90,
-+    snprintf(loadstring, sizeof loadstring,
- 	     _("\nSwap used: %s"),
- 	     swapstring);
-     strcat(tooltipstring, loadstring);
-@@ -177,7 +177,7 @@ const char *bubblemon_getTooltip(void)
- 
-   if (sysload.nCpus == 1)
-     {
--      snprintf(loadstring, 45,
-+      snprintf(loadstring, sizeof loadstring,
-                _("\nCPU load: %d%%"),
-                bubblemon_getCpuLoadPercentage(0));
-       strcat(tooltipstring, loadstring);
-@@ -188,7 +188,7 @@ const char *bubblemon_getTooltip(void)
-            cpu_number < sysload.nCpus;
-            cpu_number++)
-         {
--          snprintf(loadstring, 45,
-+          snprintf(loadstring, sizeof loadstring,
-                    _("\nCPU #%d load: %d%%"),
-                    cpu_number,
-                    bubblemon_getCpuLoadPercentage(cpu_number));
diff -ruN bubblemon.bak/files/patch-src::gnome1-meter.c bubblemon/files/patch-src::gnome1-meter.c
--- bubblemon.bak/files/patch-src::gnome1-meter.c	Fri Jul  4 14:27:33 2003
+++ bubblemon/files/patch-src::gnome1-meter.c	Wed Dec 31 21:00:00 1969
@@ -1,10 +0,0 @@
---- src/gnome1-meter.c.orig	Thu Dec 26 00:39:39 2002
-+++ src/gnome1-meter.c	Thu Dec 26 00:39:54 2002
-@@ -20,6 +20,7 @@
-  *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
-  */
- 
-+#include <sys/types.h>
- #include <glibtop.h>
- #include <glibtop/cpu.h>
- #include <glibtop/mem.h>
diff -ruN bubblemon.bak/files/patch-src::gnome1-netload.c bubblemon/files/patch-src::gnome1-netload.c
--- bubblemon.bak/files/patch-src::gnome1-netload.c	Fri Jul  4 14:27:33 2003
+++ bubblemon/files/patch-src::gnome1-netload.c	Wed Dec 31 21:00:00 1969
@@ -1,10 +0,0 @@
---- src/gnome1-netload.c.orig	Thu Dec 26 00:39:30 2002
-+++ src/gnome1-netload.c	Thu Dec 26 00:40:09 2002
-@@ -22,6 +22,7 @@
-  * This is the Gnome 1 specific network load measuring stuff.
-  */
- 
-+#include <sys/types.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <glibtop/netload.h>
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E19YUk2-0005Qu-Jz>