diff options
author | drochner <drochner@pkgsrc.org> | 2007-12-16 12:05:46 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2007-12-16 12:05:46 +0000 |
commit | 9d132a1af09b1a68315698b046cd634c93d2fa2b (patch) | |
tree | 1991193b0881ddeed19a1eb59920b23fe56705d7 /x11/gnome-panel | |
parent | 38faee0a53342c478cd8871be5ecdf7bfb6a0312 (diff) | |
download | pkgsrc-9d132a1af09b1a68315698b046cd634c93d2fa2b.tar.gz |
fix (or work around) a problem in clock applet - evolution communication:
if a Task was checked as done in the calendar the timezone offset was
appearently applied twice, so that a wrong time was put into the database.
I don't know whether the clock applet generates the timestamp the wrong
way or whether evolution doesn't deal with non-UTC timestamps, but passing
UTC helps.
bump PKGREVISION
Diffstat (limited to 'x11/gnome-panel')
-rw-r--r-- | x11/gnome-panel/Makefile | 3 | ||||
-rw-r--r-- | x11/gnome-panel/distinfo | 3 | ||||
-rw-r--r-- | x11/gnome-panel/patches/patch-ab | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/x11/gnome-panel/Makefile b/x11/gnome-panel/Makefile index fa08d95ca8a..bc8d9206452 100644 --- a/x11/gnome-panel/Makefile +++ b/x11/gnome-panel/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.92 2007/11/29 20:44:31 drochner Exp $ +# $NetBSD: Makefile,v 1.93 2007/12/16 12:05:46 drochner Exp $ # DISTNAME= gnome-panel-2.20.2 +PKGREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gnome-panel/2.20/} EXTRACT_SUFX= .tar.bz2 diff --git a/x11/gnome-panel/distinfo b/x11/gnome-panel/distinfo index e021e90ffdd..0b8820eac58 100644 --- a/x11/gnome-panel/distinfo +++ b/x11/gnome-panel/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.38 2007/12/01 18:14:02 drochner Exp $ +$NetBSD: distinfo,v 1.39 2007/12/16 12:05:46 drochner Exp $ SHA1 (gnome-panel-2.20.2.tar.bz2) = d3bf83e825afc47e620129f63b0fd00229ef12a7 RMD160 (gnome-panel-2.20.2.tar.bz2) = e883139c8c873290e7d854c1a45642ff0d34c2a8 Size (gnome-panel-2.20.2.tar.bz2) = 2835817 bytes SHA1 (patch-aa) = 602ceea87d5861aa1400268e1a1e189c7281ddac +SHA1 (patch-ab) = 961186c5db258557294fae4a280d13efdcfe1de1 diff --git a/x11/gnome-panel/patches/patch-ab b/x11/gnome-panel/patches/patch-ab new file mode 100644 index 00000000000..e1e071ab9ed --- /dev/null +++ b/x11/gnome-panel/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.4 2007/12/16 12:05:46 drochner Exp $ + +--- applets/clock/calendar-client.c.orig 2007-12-01 20:23:22.000000000 +0100 ++++ applets/clock/calendar-client.c +@@ -2025,7 +2025,7 @@ calendar_client_set_task_completed (Cale + { + struct icaltimetype completed_time; + +- completed_time = icaltime_current_time_with_zone (client->priv->zone); ++ completed_time = icaltime_current_time_with_zone (icaltimezone_get_utc_timezone ()); + if (!prop) + { + icalcomponent_add_property (ical, |