svn commit: r323488 - in head/science: . xfce4-equake-plugin xfce4-equake-plugin/files
Olivier Duchateau
olivierd at FreeBSD.org
Mon Jul 22 18:02:59 UTC 2013
Author: olivierd
Date: Mon Jul 22 18:02:57 2013
New Revision: 323488
URL: http://svnweb.freebsd.org/changeset/ports/323488
Log:
Equake is a panel plugin which monitors and displays earthquakes each time
a new one occurs.
WWW: http://freecode.com/projects/equake-xfce
Added:
head/science/xfce4-equake-plugin/
head/science/xfce4-equake-plugin/Makefile (contents, props changed)
head/science/xfce4-equake-plugin/distinfo (contents, props changed)
head/science/xfce4-equake-plugin/files/
head/science/xfce4-equake-plugin/files/patch-panel-plugin__equake_applet.c (contents, props changed)
head/science/xfce4-equake-plugin/pkg-descr (contents, props changed)
head/science/xfce4-equake-plugin/pkg-plist (contents, props changed)
Modified:
head/science/Makefile
Modified: head/science/Makefile
==============================================================================
--- head/science/Makefile Mon Jul 22 17:53:46 2013 (r323487)
+++ head/science/Makefile Mon Jul 22 18:02:57 2013 (r323488)
@@ -187,6 +187,7 @@
SUBDIR += vmd
SUBDIR += voro++
SUBDIR += x11iraf
+ SUBDIR += xfce4-equake-plugin
SUBDIR += xmakemol
SUBDIR += xmds
Added: head/science/xfce4-equake-plugin/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/xfce4-equake-plugin/Makefile Mon Jul 22 18:02:57 2013 (r323488)
@@ -0,0 +1,21 @@
+# Created by: Olivier Duchateau
+# $FreeBSD$
+#
+
+PORTNAME= xfce4-equake-plugin
+PORTVERSION= 1.3.1
+CATEGORIES= science xfce
+MASTER_SITES= http://www.e-quake.org/wp-uploads/2013/07/
+DIST_SUBDIR= xfce4
+
+MAINTAINER= xfce at FreeBSD.org
+COMMENT= Earthquake monitor plugin for the Xfce desktop
+
+GNU_CONFIGURE= yes
+USES= gettext pkgconfig gmake
+USE_GNOME= glib20 gtk20 intltool intlhack
+USE_XFCE= configenv libmenu libutil panel
+USE_XORG= x11
+INSTALLS_ICONS= yes
+
+.include <bsd.port.mk>
Added: head/science/xfce4-equake-plugin/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/xfce4-equake-plugin/distinfo Mon Jul 22 18:02:57 2013 (r323488)
@@ -0,0 +1,2 @@
+SHA256 (xfce4/xfce4-equake-plugin-1.3.1.tar.gz) = ca85a7c7af9337bb17d52f5a687209e310c4586d695dee6fc6aeed0a84a858ac
+SIZE (xfce4/xfce4-equake-plugin-1.3.1.tar.gz) = 478802
Added: head/science/xfce4-equake-plugin/files/patch-panel-plugin__equake_applet.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/xfce4-equake-plugin/files/patch-panel-plugin__equake_applet.c Mon Jul 22 18:02:57 2013 (r323488)
@@ -0,0 +1,22 @@
+Avoid warning during compilation stage.
+
+--- ./panel-plugin/equake_applet.c.orig 2013-07-20 00:56:31.000000000 +0000
++++ ./panel-plugin/equake_applet.c 2013-07-20 15:58:24.000000000 +0000
+@@ -907,7 +907,7 @@
+ static void display_about_dialog(XfcePanelPlugin *applet, struct Equake_Data *equakedata)
+ {
+ GtkWidget *about;
+- gchar *auth[]={AUTHOR, NULL};
++ const gchar *auth[]={AUTHOR, NULL};
+
+ about=gtk_about_dialog_new();
+ if(about!=NULL)
+@@ -919,7 +919,7 @@
+ gtk_about_dialog_set_license((GtkAboutDialog*)about,LICENSE);
+ gtk_about_dialog_set_website((GtkAboutDialog*)about,WEBSITE);
+ gtk_about_dialog_set_website_label((GtkAboutDialog*)about,WEBSITELABEL);
+- gtk_about_dialog_set_authors((GtkAboutDialog*)about, (gchar*)auth);
++ gtk_about_dialog_set_authors((GtkAboutDialog*)about, (const gchar**)auth);
+
+ g_signal_connect_swapped(about, "response", G_CALLBACK (gtk_widget_destroy), about);
+ gtk_widget_show_all((GtkWidget*)about);
Added: head/science/xfce4-equake-plugin/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/xfce4-equake-plugin/pkg-descr Mon Jul 22 18:02:57 2013 (r323488)
@@ -0,0 +1,4 @@
+Equake is a panel plugin which monitors and displays earthquakes each time
+a new one occurs.
+
+WWW: http://freecode.com/projects/equake-xfce
Added: head/science/xfce4-equake-plugin/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/xfce4-equake-plugin/pkg-plist Mon Jul 22 18:02:57 2013 (r323488)
@@ -0,0 +1,7 @@
+lib/xfce4/panel-plugins/xfce4-equake-plugin
+share/icons/hicolor/48x48/apps/xfce4-equake-plugin-icon.png
+share/xfce4/panel-plugins/xfce4-equake-plugin.desktop
+ at dirrmtry share/xfce4/panel-plugins
+ at dirrmtry share/xfce4
+ at dirrmtry lib/xfce4/panel-plugins
+ at dirrmtry lib/xfce4
More information about the svn-ports-head
mailing list