Update to 0.3.9 release.

PR:		ports/67675
Submitted by:	Filippo Natali <filippo@widestore.net> (maintainer)
This commit is contained in:
Alex Dupre 2004-06-07 21:53:48 +00:00
parent 4935946660
commit 5e6b0ce3ff
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=111036
4 changed files with 10 additions and 28 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= xfce4-weather-plugin
PORTVERSION= 0.3.0
PORTVERSION= 0.3.9
CATEGORIES= misc xfce
MASTER_SITES= http://download.berlios.de/xfce-goodies/

View File

@ -1,2 +1,2 @@
MD5 (xfce4-weather-plugin-0.3.0.tar.gz) = 8796652a1bb75270dc70583739577cd5
SIZE (xfce4-weather-plugin-0.3.0.tar.gz) = 574143
MD5 (xfce4-weather-plugin-0.3.9.tar.gz) = a89866fc4f383b8313853ae1ace844f4
SIZE (xfce4-weather-plugin-0.3.9.tar.gz) = 581155

View File

@ -0,0 +1,7 @@
--- panel-plugin/http_client.h.orig Mon Apr 19 16:15:44 2004
+++ panel-plugin/http_client.h Mon Jun 7 15:52:19 2004
@@ -1,3 +1,4 @@
+#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>

View File

@ -1,25 +0,0 @@
*** panel-plugin/weather.c Sun Feb 29 22:10:53 2004
--- weather.c Fri Apr 2 16:00:39 2004
***************
*** 375,380 ****
--- 375,382 ----
void start_draw_up(xfceweather_data *data) {
gint width, height;
+ GdkRectangle update_rect = {0, 0, data->drawable_label->allocation.width,
+ data->drawable_label->allocation.height};
/* if only one pixmap don't start the callback */
if (!data->xmldata_pixmaps || data->xmldata_pixmaps->len == 0)
***************
*** 383,391 ****
if (data->xmldata_pixmaps->len == 1) {
data->drawable_pixmap = (GdkPixmap *)g_ptr_array_index(data->xmldata_pixmaps, 0);
data->drawable_offset = 0;
-
- GdkRectangle update_rect = {0, 0, data->drawable_label->allocation.width,
- data->drawable_label->allocation.height};
gtk_widget_draw(data->drawable_label, &update_rect);
return;
--- 385,390 ----