summaryrefslogtreecommitdiffstats
path: root/x11/gnomeapplets2
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-12-09 02:14:02 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-12-09 02:14:02 +0800
commitd69d5eb48bcac3fa5f2e651b0c5467f89d3c7635 (patch)
treecef7917d563b29d0a18090dc63a67033a5e5c9d3 /x11/gnomeapplets2
parent88dc04ee9fad84fceba9ff849ca3bc235ac6641f (diff)
downloadmarcuscom-ports-d69d5eb48bcac3fa5f2e651b0c5467f89d3c7635.tar
marcuscom-ports-d69d5eb48bcac3fa5f2e651b0c5467f89d3c7635.tar.gz
marcuscom-ports-d69d5eb48bcac3fa5f2e651b0c5467f89d3c7635.tar.bz2
marcuscom-ports-d69d5eb48bcac3fa5f2e651b0c5467f89d3c7635.tar.lz
marcuscom-ports-d69d5eb48bcac3fa5f2e651b0c5467f89d3c7635.tar.xz
marcuscom-ports-d69d5eb48bcac3fa5f2e651b0c5467f89d3c7635.tar.zst
marcuscom-ports-d69d5eb48bcac3fa5f2e651b0c5467f89d3c7635.zip
Update to 2.5.2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1409 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnomeapplets2')
-rw-r--r--x11/gnomeapplets2/Makefile2
-rw-r--r--x11/gnomeapplets2/distinfo2
-rw-r--r--x11/gnomeapplets2/files/patch-gweather_weather.c11
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;
+ }