summaryrefslogtreecommitdiff
path: root/x11/kdebase4
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2009-11-04 11:05:50 +0000
committermarkd <markd@pkgsrc.org>2009-11-04 11:05:50 +0000
commit0ce22f2491b04390e731e3875e7549f556a6777a (patch)
tree6938c06ad531c02f51f08c94c80524eacd4b732f /x11/kdebase4
parent34b5b35b4c2ea07e4ad10acadbf714bb91848431 (diff)
downloadpkgsrc-0ce22f2491b04390e731e3875e7549f556a6777a.tar.gz
Update to KDE 4.3.3
KDE 4.3.3 has a number of improvements that will make your life just a little bit better. Some of KWin's effects have been smoothed and freed of visual glitches, JuK should now be more stable, KDE PIM has seen its share of improvements while in the back-rooms of KDE, the developers are working hard on porting all applications to the new Akonadi storage and cache.
Diffstat (limited to 'x11/kdebase4')
-rw-r--r--x11/kdebase4/distinfo9
-rw-r--r--x11/kdebase4/patches/patch-aa30
2 files changed, 4 insertions, 35 deletions
diff --git a/x11/kdebase4/distinfo b/x11/kdebase4/distinfo
index 862e1aac25e..acbb2658243 100644
--- a/x11/kdebase4/distinfo
+++ b/x11/kdebase4/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2009/10/11 08:13:40 markd Exp $
+$NetBSD: distinfo,v 1.3 2009/11/04 11:05:52 markd Exp $
-SHA1 (kdebase-4.3.2.tar.bz2) = c9c65dc596c8c48974fbe4099f340371de147fa8
-RMD160 (kdebase-4.3.2.tar.bz2) = 9d34189746ee7b99840388d1a45d6ffaef795f19
-Size (kdebase-4.3.2.tar.bz2) = 4273532 bytes
-SHA1 (patch-aa) = a25428863150185b0a389ed260e186a6b30cb6fb
+SHA1 (kdebase-4.3.3.tar.bz2) = 7459ea75312961b4802626edd22dc291370be329
+RMD160 (kdebase-4.3.3.tar.bz2) = 7fdc0f5cb3574b6707ae8f005eb887126ca2339e
+Size (kdebase-4.3.3.tar.bz2) = 4275500 bytes
diff --git a/x11/kdebase4/patches/patch-aa b/x11/kdebase4/patches/patch-aa
deleted file mode 100644
index fb0b6f5265a..00000000000
--- a/x11/kdebase4/patches/patch-aa
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2009/10/11 08:13:40 markd Exp $
-
-KDE svn 1032180
-
---- apps/dolphin/src/panels/terminal/terminalpanel.cpp.orig 2009-08-27 20:17:51.000000000 +1200
-+++ apps/dolphin/src/panels/terminal/terminalpanel.cpp
-@@ -23,7 +23,6 @@
- #include <kde_terminal_interface_v2.h>
- #include <kparts/part.h>
- #include <kshell.h>
--#include <kio/netaccess.h>
-
- #include <QBoxLayout>
- #include <QShowEvent>
-@@ -58,13 +57,12 @@ void TerminalPanel::setUrl(const KUrl& u
- }
-
- Panel::setUrl(url);
-- KUrl mostLocalUrl = KIO::NetAccess::mostLocalUrl(url, 0);
- const bool sendInput = (m_terminal != 0)
- && (m_terminal->foregroundProcessId() == -1)
- && isVisible()
-- && mostLocalUrl.isLocalFile();
-+ && url.isLocalFile();
- if (sendInput) {
-- m_terminal->sendInput("cd " + KShell::quoteArg(mostLocalUrl.toLocalFile()) + '\n');
-+ m_terminal->sendInput("cd " + KShell::quoteArg(url.toLocalFile()) + '\n');
- }
-
- }