diff options
Diffstat (limited to 'x11/gnomeapplets2')
-rw-r--r-- | x11/gnomeapplets2/Makefile | 2 | ||||
-rw-r--r-- | x11/gnomeapplets2/distinfo | 2 | ||||
-rw-r--r-- | x11/gnomeapplets2/files/patch-gweather_weather.c | 11 |
3 files changed, 13 insertions, 2 deletions
diff --git a/x11/gnomeapplets2/Makefile b/x11/gnomeapplets2/Makefile index f1ca71507..602923d93 100644 --- a/x11/gnomeapplets2/Makefile +++ b/x11/gnomeapplets2/Makefile @@ -6,7 +6,7 @@ # PORTNAME= gnomeapplets2 -PORTVERSION= 2.5.1 +PORTVERSION= 2.5.2 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/gnome-applets/2.5 diff --git a/x11/gnomeapplets2/distinfo b/x11/gnomeapplets2/distinfo index efc1b501c..5c6d0d66a 100644 --- a/x11/gnomeapplets2/distinfo +++ b/x11/gnomeapplets2/distinfo @@ -1 +1 @@ -MD5 (gnome2/gnome-applets-2.5.1.tar.bz2) = 203b657463514f3c0940a5e8f60f97fb +MD5 (gnome2/gnome-applets-2.5.2.tar.bz2) = 5b47dc2060420e0baadf86cbe558076f diff --git a/x11/gnomeapplets2/files/patch-gweather_weather.c b/x11/gnomeapplets2/files/patch-gweather_weather.c new file mode 100644 index 000000000..ceb720580 --- /dev/null +++ b/x11/gnomeapplets2/files/patch-gweather_weather.c @@ -0,0 +1,11 @@ +--- gweather/weather.c.orig Mon Dec 8 12:47:00 2003 ++++ gweather/weather.c Mon Dec 8 12:50:03 2003 +@@ -1915,7 +1915,7 @@ + degree = "F"; + + g_snprintf(buf, sizeof (buf), "%d\302\260%s", +- (int)lrint(info->temp), degree); ++ (int)rint(info->temp), degree); + + return buf; + } |