summaryrefslogtreecommitdiff
path: root/misc/kdepim3
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2003-07-29 12:31:15 +0000
committermarkd <markd@pkgsrc.org>2003-07-29 12:31:15 +0000
commit256395f93a08245bb8f79336ef877a0fe55b8207 (patch)
tree94cebc977661ba0ab4f8e452594df2e5bbca5a38 /misc/kdepim3
parentfee67671be4a1f8d4f6db78c613462d5ffe53db8 (diff)
downloadpkgsrc-256395f93a08245bb8f79336ef877a0fe55b8207.tar.gz
If TZ wasn't set unset it again after playing with other timezones.
Fixes korganiser always displaying the wrong time after loading a calendar (unless you are in UTC). PKGREVISION++
Diffstat (limited to 'misc/kdepim3')
-rw-r--r--misc/kdepim3/Makefile4
-rw-r--r--misc/kdepim3/distinfo3
-rw-r--r--misc/kdepim3/patches/patch-aa13
3 files changed, 17 insertions, 3 deletions
diff --git a/misc/kdepim3/Makefile b/misc/kdepim3/Makefile
index 829a48b382f..d4e60ba9fc7 100644
--- a/misc/kdepim3/Makefile
+++ b/misc/kdepim3/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.13 2003/07/13 13:52:42 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2003/07/29 12:31:15 markd Exp $
DISTNAME= kdepim-3.1.2
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= misc
COMMENT= Personal Information Management tools for the KDE desktop
diff --git a/misc/kdepim3/distinfo b/misc/kdepim3/distinfo
index 3ea1b79e214..54d7d210df4 100644
--- a/misc/kdepim3/distinfo
+++ b/misc/kdepim3/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.11 2003/05/22 02:57:13 markd Exp $
+$NetBSD: distinfo,v 1.12 2003/07/29 12:31:15 markd Exp $
SHA1 (kdepim-3.1.2.tar.bz2) = c1f0666ca2a5dd12433df13ab530a05644c28b0f
Size (kdepim-3.1.2.tar.bz2) = 3289340 bytes
+SHA1 (patch-aa) = c9c14175eaf996d185e4de330e815cf86b6013c4
SHA1 (patch-ai) = c69ff8ba710838169de0deaaa2936c703deefd87
diff --git a/misc/kdepim3/patches/patch-aa b/misc/kdepim3/patches/patch-aa
new file mode 100644
index 00000000000..1c94a48806e
--- /dev/null
+++ b/misc/kdepim3/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.3 2003/07/29 12:31:15 markd Exp $
+
+--- libical/src/libical/icaltime.c.orig 2002-09-28 06:49:07.000000000 +1200
++++ libical/src/libical/icaltime.c
+@@ -141,7 +141,7 @@ void unset_tz(struct set_tz_save savetz)
+
+ free(orig_tzid);
+ } else {
+-#ifdef __FreeBSD__
++#if defined(__FreeBSD__) || defined(__NetBSD__)
+ unsetenv("TZ");
+ #else
+ putenv("TZ"); /* Delete from environment */