ports/151174: [UPDATE] sysutils/xfce4-cpugraph-plugin to 1.0.0

Olivier DUCHATEAU duchateau.olivier at gmail.com
Sun Oct 3 17:10:05 UTC 2010


>Number:         151174
>Category:       ports
>Synopsis:       [UPDATE] sysutils/xfce4-cpugraph-plugin to 1.0.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Oct 03 17:10:04 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Olivier DUCHATEAU
>Release:        FreeBSD 8.1-RELEASE
>Organization:
>Environment:
FreeBSD bornem.errements.net 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010     root at almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
Update this panel-plugin for Xfce4 and remove patch files, they are no longer needed.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -urN /usr/ports/sysutils/xfce4-cpugraph-plugin/Makefile xfce4-cpugraph-plugin/Makefile
--- /usr/ports/sysutils/xfce4-cpugraph-plugin/Makefile	2010-05-31 17:27:26.000000000 +0200
+++ xfce4-cpugraph-plugin/Makefile	2010-10-03 18:48:34.000000000 +0200
@@ -6,10 +6,10 @@
 #
 
 PORTNAME=	xfce4-cpugraph-plugin
-PORTVERSION=	0.3.0
-PORTREVISION=	14
+PORTVERSION=	1.0.0
 CATEGORIES=	sysutils xfce
-MASTER_SITES=	http://goodies.xfce.org/releases/${PORTNAME}/
+MASTER_SITES=	${MASTER_SITE_XFCE}
+MASTER_SITE_SUBDIR=	src/panel-plugins/${PORTNAME}/${PORTVERSION:R}
 DIST_SUBDIR=	xfce4
 
 MAINTAINER=	fbsd at opal.com
@@ -20,6 +20,6 @@
 USE_GETTEXT=	yes
 USE_GMAKE=	yes
 USE_GNOME=	gnometarget gtk20 intltool intlhack pkgconfig
-USE_XFCE=	configenv panel
+USE_XFCE=	configenv libgui panel
 
 .include <bsd.port.mk>
diff -urN /usr/ports/sysutils/xfce4-cpugraph-plugin/distinfo xfce4-cpugraph-plugin/distinfo
--- /usr/ports/sysutils/xfce4-cpugraph-plugin/distinfo	2007-03-06 22:01:50.000000000 +0100
+++ xfce4-cpugraph-plugin/distinfo	2010-10-03 18:35:19.000000000 +0200
@@ -1,3 +1,3 @@
-MD5 (xfce4/xfce4-cpugraph-plugin-0.3.0.tar.bz2) = b2ff93a62845289c4a8ed7d45faa7a1f
-SHA256 (xfce4/xfce4-cpugraph-plugin-0.3.0.tar.bz2) = eb6c2eee5f3d56a3202a9affb33242c3434bfbaeb0d7fe02cf267e64e85f3825
-SIZE (xfce4/xfce4-cpugraph-plugin-0.3.0.tar.bz2) = 102638
+MD5 (xfce4/xfce4-cpugraph-plugin-1.0.0.tar.bz2) = ba08c72b0fe52784d97d0a8d15516e84
+SHA256 (xfce4/xfce4-cpugraph-plugin-1.0.0.tar.bz2) = a7283cc1bb5c449985d2226572d6dd2add506d30e8bdfee2f03a7614af38d8db
+SIZE (xfce4/xfce4-cpugraph-plugin-1.0.0.tar.bz2) = 135597
diff -urN /usr/ports/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c
--- /usr/ports/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c	2009-07-01 14:33:11.000000000 +0200
+++ xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c	1970-01-01 01:00:00.000000000 +0100
@@ -1,20 +0,0 @@
---- panel-plugin/cpu.c.orig	2005-10-09 05:06:46.000000000 -0400
-+++ panel-plugin/cpu.c	2009-06-15 18:29:08.000000000 -0400
-@@ -606,7 +606,7 @@
-     op->m_Notebook = gtk_notebook_new ();
-     gtk_container_set_border_width (GTK_CONTAINER (op->m_Notebook), 
-                                     BORDER - 2);
--    label = gtk_label_new (_("Apperance"));
-+    label = gtk_label_new (_("Appearance"));
-     gtk_notebook_append_page (GTK_NOTEBOOK (op->m_Notebook),
-                               GTK_WIDGET (vbox2), GTK_WIDGET (label));
-     label = gtk_label_new (_("Advanced"));
-@@ -952,7 +952,7 @@
- SetHistorySize (CPUGraph * base, int size)
- {
-     base->m_History =
--        (long *) realloc (base->m_History, size * sizeof (long));
-+        (int *) realloc (base->m_History, size * sizeof (int));
-     int i;
- 
-     for (i = size - 1; i >= base->m_Values; i--)
diff -urN /usr/ports/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h
--- /usr/ports/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h	2009-07-01 14:33:11.000000000 +0200
+++ xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h	1970-01-01 01:00:00.000000000 +0100
@@ -1,19 +0,0 @@
---- panel-plugin/cpu.h.orig	2005-10-09 05:19:34.000000000 -0400
-+++ panel-plugin/cpu.h	2009-06-15 18:07:25.000000000 -0400
-@@ -10,6 +10,7 @@
- #include <math.h>
- #include <stdio.h>
- #include <string.h>
-+#include <stdlib.h>
- 
- #include <libxfce4util/libxfce4util.h>
- #include <libxfcegui4/libxfcegui4.h>
-@@ -83,7 +84,7 @@
- 	
- 	guint m_TimeoutID; // Timeout ID for the tooltip;
- 	long m_CPUUsage;
--	long *m_History;
-+	int *m_History;
- 	int m_Values;
- 
- 	int m_Orientation;
diff -urN /usr/ports/sysutils/xfce4-cpugraph-plugin/pkg-plist xfce4-cpugraph-plugin/pkg-plist
--- /usr/ports/sysutils/xfce4-cpugraph-plugin/pkg-plist	2007-01-22 17:45:09.000000000 +0100
+++ xfce4-cpugraph-plugin/pkg-plist	2010-10-03 18:42:12.000000000 +0200
@@ -1,6 +1,109 @@
 libexec/xfce4/panel-plugins/xfce4-cpugraph-plugin
+share/locale/ast/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/be/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ca/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/cs/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/da/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/de/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/en_GB/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/es/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/eu/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/fi/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/fr/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/gl/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/hu/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/id/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/it/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ja/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/kk/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ku/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/lv/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/nb/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/pa/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/pl/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/pt/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/pt_BR/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ro/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ru/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/sq/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/sv/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/tr/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ug/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/uk/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ur/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/ur_PK/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/zh_CN/LC_MESSAGES/xfce4-cpugraph-plugin.mo
+share/locale/zh_TW/LC_MESSAGES/xfce4-cpugraph-plugin.mo
 share/xfce4/panel-plugins/cpugraph.desktop
 @dirrmtry share/xfce4/panel-plugins
- at dirrmtry share/xfce4
+ at dirrmtry share/locale/zh_TW/LC_MESSAGES
+ at dirrmtry share/locale/zh_TW
+ at dirrmtry share/locale/zh_CN/LC_MESSAGES
+ at dirrmtry share/locale/zh_CN
+ at dirrmtry share/locale/ur_PK/LC_MESSAGES
+ at dirrmtry share/locale/ur_PK
+ at dirrmtry share/locale/ur/LC_MESSAGES
+ at dirrmtry share/locale/ur
+ at dirrmtry share/locale/uk/LC_MESSAGES
+ at dirrmtry share/locale/uk
+ at dirrmtry share/locale/ug/LC_MESSAGES
+ at dirrmtry share/locale/ug
+ at dirrmtry share/locale/tr/LC_MESSAGES
+ at dirrmtry share/locale/tr
+ at dirrmtry share/locale/sv/LC_MESSAGES
+ at dirrmtry share/locale/sv
+ at dirrmtry share/locale/sq/LC_MESSAGES
+ at dirrmtry share/locale/sq
+ at dirrmtry share/locale/ru/LC_MESSAGES
+ at dirrmtry share/locale/ru
+ at dirrmtry share/locale/ro/LC_MESSAGES
+ at dirrmtry share/locale/ro
+ at dirrmtry share/locale/pt_BR/LC_MESSAGES
+ at dirrmtry share/locale/pt_BR
+ at dirrmtry share/locale/pt/LC_MESSAGES
+ at dirrmtry share/locale/pt
+ at dirrmtry share/locale/pl/LC_MESSAGES
+ at dirrmtry share/locale/pl
+ at dirrmtry share/locale/pa/LC_MESSAGES
+ at dirrmtry share/locale/pa
+ at dirrmtry share/locale/nb/LC_MESSAGES
+ at dirrmtry share/locale/nb
+ at dirrmtry share/locale/lv/LC_MESSAGES
+ at dirrmtry share/locale/lv
+ at dirrmtry share/locale/ku/LC_MESSAGES
+ at dirrmtry share/locale/ku
+ at dirrmtry share/locale/kk/LC_MESSAGES
+ at dirrmtry share/locale/kk
+ at dirrmtry share/locale/ja/LC_MESSAGES
+ at dirrmtry share/locale/ja
+ at dirrmtry share/locale/it/LC_MESSAGES
+ at dirrmtry share/locale/it
+ at dirrmtry share/locale/id/LC_MESSAGES
+ at dirrmtry share/locale/id
+ at dirrmtry share/locale/hu/LC_MESSAGES
+ at dirrmtry share/locale/hu
+ at dirrmtry share/locale/gl/LC_MESSAGES
+ at dirrmtry share/locale/gl
+ at dirrmtry share/locale/fr/LC_MESSAGES
+ at dirrmtry share/locale/fr
+ at dirrmtry share/locale/fi/LC_MESSAGES
+ at dirrmtry share/locale/fi
+ at dirrmtry share/locale/eu/LC_MESSAGES
+ at dirrmtry share/locale/eu
+ at dirrmtry share/locale/es/LC_MESSAGES
+ at dirrmtry share/locale/es
+ at dirrmtry share/locale/en_GB/LC_MESSAGES
+ at dirrmtry share/locale/en_GB
+ at dirrmtry share/locale/de/LC_MESSAGES
+ at dirrmtry share/locale/de
+ at dirrmtry share/locale/da/LC_MESSAGES
+ at dirrmtry share/locale/da
+ at dirrmtry share/locale/cs/LC_MESSAGES
+ at dirrmtry share/locale/cs
+ at dirrmtry share/locale/ca/LC_MESSAGES
+ at dirrmtry share/locale/ca
+ at dirrmtry share/locale/be/LC_MESSAGES
+ at dirrmtry share/locale/be
+ at dirrmtry share/locale/ast/LC_MESSAGES
+ at dirrmtry share/locale/ast
 @dirrmtry libexec/xfce4/panel-plugins
- at dirrmtry libexec/xfce4


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list