diff options
author | markd <markd@pkgsrc.org> | 2005-06-16 01:11:04 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2005-06-16 01:11:04 +0000 |
commit | 54890c07accb9562d9375b242e6a532549bdcfcf (patch) | |
tree | 3f5df2568d1068cb00779f8df5534186ca2a8164 /x11/kdebase3 | |
parent | bfe24ea6067f9e07a7b0adb72bd94e07564a9d1d (diff) | |
download | pkgsrc-54890c07accb9562d9375b242e6a532549bdcfcf.tar.gz |
Fix a crash in the kicker - patch from KDE svn.
OK'ed during freeze by jlam and wiz.
Bump PKGREVISION.
Diffstat (limited to 'x11/kdebase3')
-rw-r--r-- | x11/kdebase3/Makefile | 3 | ||||
-rw-r--r-- | x11/kdebase3/distinfo | 3 | ||||
-rw-r--r-- | x11/kdebase3/patches/patch-am | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/x11/kdebase3/Makefile b/x11/kdebase3/Makefile index 54bea933840..ec71459c247 100644 --- a/x11/kdebase3/Makefile +++ b/x11/kdebase3/Makefile @@ -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 --git a/x11/kdebase3/distinfo b/x11/kdebase3/distinfo index 581a161711d..250a11c5ad4 100644 --- a/x11/kdebase3/distinfo +++ b/x11/kdebase3/distinfo @@ -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-ag) = 89f50ee8b328cd654aebf1da5424e87eb6b42628 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 --git a/x11/kdebase3/patches/patch-am b/x11/kdebase3/patches/patch-am new file mode 100644 index 00000000000..79d3f8af6a1 --- /dev/null +++ b/x11/kdebase3/patches/patch-am @@ -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(); + } |