pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/kdebase3 Fix a crash in the kicker - patch from KD...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/90cc38bd1634
branches:  trunk
changeset: 495629:90cc38bd1634
user:      markd <markd%pkgsrc.org@localhost>
date:      Thu Jun 16 01:11:04 2005 +0000

description:
Fix a crash in the kicker - patch from KDE svn.
OK'ed during freeze by jlam and wiz.
Bump PKGREVISION.

diffstat:

 x11/kdebase3/Makefile         |   3 ++-
 x11/kdebase3/distinfo         |   3 ++-
 x11/kdebase3/patches/patch-am |  13 +++++++++++++
 3 files changed, 17 insertions(+), 2 deletions(-)

diffs (46 lines):

diff -r f31938645ac0 -r 90cc38bd1634 x11/kdebase3/Makefile
--- a/x11/kdebase3/Makefile     Wed Jun 15 22:42:38 2005 +0000
+++ b/x11/kdebase3/Makefile     Thu Jun 16 01:11:04 2005 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.82 2005/05/31 14:21:23 markd Exp $
+# $NetBSD: Makefile,v 1.83 2005/06/16 01:11:04 markd Exp $
 
 DISTNAME=      kdebase-${_KDE_VERSION}
+PKGREVISION=   1
 CATEGORIES=    x11
 COMMENT=       Base modules for the KDE 3 integrated X11 desktop
 
diff -r f31938645ac0 -r 90cc38bd1634 x11/kdebase3/distinfo
--- a/x11/kdebase3/distinfo     Wed Jun 15 22:42:38 2005 +0000
+++ b/x11/kdebase3/distinfo     Thu Jun 16 01:11:04 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.68 2005/05/31 14:21:23 markd Exp $
+$NetBSD: distinfo,v 1.69 2005/06/16 01:11:04 markd Exp $
 
 SHA1 (kdebase-3.4.1.tar.bz2) = 5533ceb91ea9cb01e9c5017d94ef00ec22403850
 RMD160 (kdebase-3.4.1.tar.bz2) = 1cf8837187beb045af8db6d4b2d48940372aeac4
@@ -21,6 +21,7 @@
 SHA1 (patch-aj) = bedd17a5a04bff32e4441ed1750ae8ab5a4fa323
 SHA1 (patch-ak) = df7ff2bf5ed6bb2442d49df1c277712712a7f966
 SHA1 (patch-al) = 555384dc03ab59845e5794e081dd5d1a92e2959e
+SHA1 (patch-am) = 78540db00c51c7516a51f51f531d41c68fe15954
 SHA1 (patch-bb) = 4c85002b95661db18619283e50512f3ab131a0ba
 SHA1 (patch-bc) = c236cc8b3f9caebf2540425232f2d90ec66c70d1
 SHA1 (patch-bx) = d58d16fd484fc0a46c1ae93267af19e73af6f990
diff -r f31938645ac0 -r 90cc38bd1634 x11/kdebase3/patches/patch-am
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/kdebase3/patches/patch-am     Thu Jun 16 01:11:04 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-am,v 1.14 2005/06/16 01:11:04 markd Exp $
+
+--- kicker/taskbar/taskcontainer.cpp.orig      2005-05-24 00:14:10.000000000 +1200
++++ kicker/taskbar/taskcontainer.cpp
+@@ -805,7 +805,7 @@ void TaskContainer::performAction( TaskB
+                 {
+                     // activate next
+                     ++it;
+-                    if (it != itEnd)
++                    if (it == itEnd)
+                     {
+                         it = m_filteredTasks.begin();
+                     }



Home | Main Index | Thread Index | Old Index