summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2010-10-10 11:05:00 +0000
committerRene Ladan <rene@FreeBSD.org>2010-10-10 11:05:00 +0000
commit82237e828233cb5f98d10b0d25a2cb161f4c735f (patch)
tree29db7f89ae8365f4d1b9e16654b4824915a827b3 /sysutils
parentPOEx::Role::PSGIServer encapsulates the core PSGI server behaviors (diff)
- update to 1.0.0
- use MASTER_SITE_XFCE - change maintainer to submitter PR: ports/151175 Submitted by: Olivier Duchateau [duchateau.olivier gmail.com] Approved by: old maintainer [fbsd opal.com]
Notes
Notes: svn path=/head/; revision=262755
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/xfce4-cpugraph-plugin/Makefile10
-rw-r--r--sysutils/xfce4-cpugraph-plugin/distinfo6
-rw-r--r--sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c20
-rw-r--r--sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h19
-rw-r--r--sysutils/xfce4-cpugraph-plugin/pkg-plist106
5 files changed, 113 insertions, 48 deletions
diff --git a/sysutils/xfce4-cpugraph-plugin/Makefile b/sysutils/xfce4-cpugraph-plugin/Makefile
index 27c0d2db3f27..efefec4ad484 100644
--- a/sysutils/xfce4-cpugraph-plugin/Makefile
+++ b/sysutils/xfce4-cpugraph-plugin/Makefile
@@ -6,13 +6,13 @@
#
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@opal.com
+MAINTAINER= duchateau.olivier@gmail.com
COMMENT= XFce4 systemload plugin with multiple CPU display modes
GNU_CONFIGURE= yes
@@ -20,6 +20,6 @@ USE_BZIP2= yes
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 --git a/sysutils/xfce4-cpugraph-plugin/distinfo b/sysutils/xfce4-cpugraph-plugin/distinfo
index 80d4ed4e9238..fe866d7d2cf3 100644
--- a/sysutils/xfce4-cpugraph-plugin/distinfo
+++ b/sysutils/xfce4-cpugraph-plugin/distinfo
@@ -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 --git a/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c b/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c
deleted file mode 100644
index 727fc0dec948..000000000000
--- a/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.c
+++ /dev/null
@@ -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 --git a/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h b/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h
deleted file mode 100644
index b8b0f0bddc48..000000000000
--- a/sysutils/xfce4-cpugraph-plugin/files/patch-panel-plugin-cpu.h
+++ /dev/null
@@ -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 --git a/sysutils/xfce4-cpugraph-plugin/pkg-plist b/sysutils/xfce4-cpugraph-plugin/pkg-plist
index 3814b25cf7eb..0e8e940ae481 100644
--- a/sysutils/xfce4-cpugraph-plugin/pkg-plist
+++ b/sysutils/xfce4-cpugraph-plugin/pkg-plist
@@ -1,6 +1,110 @@
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
-@dirrmtry share/xfce4
+@dirrmtry share/locale/zh_TW/LC_MESSAGES
+@dirrmtry share/locale/zh_TW
+@dirrmtry share/locale/zh_CN/LC_MESSAGES
+@dirrmtry share/locale/zh_CN
+@dirrmtry share/locale/ur_PK/LC_MESSAGES
+@dirrmtry share/locale/ur_PK
+@dirrmtry share/locale/ur/LC_MESSAGES
+@dirrmtry share/locale/ur
+@dirrmtry share/locale/uk/LC_MESSAGES
+@dirrmtry share/locale/uk
+@dirrmtry share/locale/ug/LC_MESSAGES
+@dirrmtry share/locale/ug
+@dirrmtry share/locale/tr/LC_MESSAGES
+@dirrmtry share/locale/tr
+@dirrmtry share/locale/sv/LC_MESSAGES
+@dirrmtry share/locale/sv
+@dirrmtry share/locale/sq/LC_MESSAGES
+@dirrmtry share/locale/sq
+@dirrmtry share/locale/ru/LC_MESSAGES
+@dirrmtry share/locale/ru
+@dirrmtry share/locale/ro/LC_MESSAGES
+@dirrmtry share/locale/ro
+@dirrmtry share/locale/pt_BR/LC_MESSAGES
+@dirrmtry share/locale/pt_BR
+@dirrmtry share/locale/pt/LC_MESSAGES
+@dirrmtry share/locale/pt
+@dirrmtry share/locale/pl/LC_MESSAGES
+@dirrmtry share/locale/pl
+@dirrmtry share/locale/pa/LC_MESSAGES
+@dirrmtry share/locale/pa
+@dirrmtry share/locale/nb/LC_MESSAGES
+@dirrmtry share/locale/nb
+@dirrmtry share/locale/lv/LC_MESSAGES
+@dirrmtry share/locale/lv
+@dirrmtry share/locale/ku/LC_MESSAGES
+@dirrmtry share/locale/ku
+@dirrmtry share/locale/kk/LC_MESSAGES
+@dirrmtry share/locale/kk
+@dirrmtry share/locale/ja/LC_MESSAGES
+@dirrmtry share/locale/ja
+@dirrmtry share/locale/it/LC_MESSAGES
+@dirrmtry share/locale/it
+@dirrmtry share/locale/id/LC_MESSAGES
+@dirrmtry share/locale/id
+@dirrmtry share/locale/hu/LC_MESSAGES
+@dirrmtry share/locale/hu
+@dirrmtry share/locale/gl/LC_MESSAGES
+@dirrmtry share/locale/gl
+@dirrmtry share/locale/fr/LC_MESSAGES
+@dirrmtry share/locale/fr
+@dirrmtry share/locale/fi/LC_MESSAGES
+@dirrmtry share/locale/fi
+@dirrmtry share/locale/eu/LC_MESSAGES
+@dirrmtry share/locale/eu
+@dirrmtry share/locale/es/LC_MESSAGES
+@dirrmtry share/locale/es
+@dirrmtry share/locale/en_GB/LC_MESSAGES
+@dirrmtry share/locale/en_GB
+@dirrmtry share/locale/de/LC_MESSAGES
+@dirrmtry share/locale/de
+@dirrmtry share/locale/da/LC_MESSAGES
+@dirrmtry share/locale/da
+@dirrmtry share/locale/cs/LC_MESSAGES
+@dirrmtry share/locale/cs
+@dirrmtry share/locale/ca/LC_MESSAGES
+@dirrmtry share/locale/ca
+@dirrmtry share/locale/be/LC_MESSAGES
+@dirrmtry share/locale/be
+@dirrmtry share/locale/ast/LC_MESSAGES
+@dirrmtry share/locale/ast
@dirrmtry libexec/xfce4/panel-plugins
@dirrmtry libexec/xfce4