diff options
author | markd <markd@pkgsrc.org> | 2003-09-17 23:14:18 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2003-09-17 23:14:18 +0000 |
commit | 1923f6feb7d4e8da1932145e3544d2beb758eb53 (patch) | |
tree | 499a48335d74b87562fb5e3d9a2a089b3ecb4c3c /x11/kdelibs3 | |
parent | ea2ca180c49e3dd66eb94c1da2faeb9264b10ee2 (diff) | |
download | pkgsrc-1923f6feb7d4e8da1932145e3544d2beb758eb53.tar.gz |
Update to KDE3.1.4.
Changes:
* Allows compilation against Qt 3.2.x
* improvements to utf8-filename handling in KIO
* fix nonlating-filenames in http form upload (#61721)
* ignoring X11 errors during startup to avoid startup notification to stop early
* Preformance improvement to KGuiItem::plainText()
* kdesu: implement session management for kdesu-started applications.
* khtml: fix form widget sizing when code is compiled with gcc 3.4+.
* kio: fix bug that caused gzip-encoded webpages to fail rendering when
compiled with Qt 3.2.
* keramik widgets: fix merging mistake that caused drawing errors in comboboxes.
* keramik widgets: Fix pixmap cachine keying, correcting odd artifacts with
some colorscheme changes.
* dcop: honor $DCOPAUTHORITY which allows to specify an alternative location
than $HOME for .DCOPserver_xxx
* kcookiejar: fix cookie handling cornercase
* kdeinit: support read-only home directories
* artsd: fix restart
* khtml: code fixes to avoid miscompilation of SunProCC under Solaris
* kate: fix offering of default encoding when saving a file.
* netwm: fix massive memory leak (showing up e.g. in kicker).
* kate: fix compilation under aCC.
* khtml: several crash fixes. Qt 3.2.x compatibility fixes. rendering
improvements.
* khtml: merging bug that caused the famous scrollbar problem fixed.
* klistview: massive performance improvement in alternative color background
handling
* khtml/java: improved handling of slightly malformed urls.
* kio: only cache successful passwords, otherwise its impossible to re-enter
a password when it failed authorisation the first time.
Diffstat (limited to 'x11/kdelibs3')
-rw-r--r-- | x11/kdelibs3/Makefile | 5 | ||||
-rw-r--r-- | x11/kdelibs3/distinfo | 7 | ||||
-rw-r--r-- | x11/kdelibs3/patches/patch-cf | 22 |
3 files changed, 5 insertions, 29 deletions
diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index aea9a9b1802..9a751a9d6fb 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.40 2003/09/17 19:41:21 grant Exp $ +# $NetBSD: Makefile,v 1.41 2003/09/17 23:14:18 markd Exp $ -DISTNAME= kdelibs-3.1.3 -PKGREVISION= 2 +DISTNAME= kdelibs-3.1.4 CATEGORIES= x11 COMMENT= Support libraries for the KDE integrated X11 desktop diff --git a/x11/kdelibs3/distinfo b/x11/kdelibs3/distinfo index b94974ac334..6b6295b1648 100644 --- a/x11/kdelibs3/distinfo +++ b/x11/kdelibs3/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.26 2003/08/08 12:56:25 skrll Exp $ +$NetBSD: distinfo,v 1.27 2003/09/17 23:14:18 markd Exp $ -SHA1 (kdelibs-3.1.3.tar.bz2) = 1bc987bd7b5a171e4efe5b5edad3134a3959e50b -Size (kdelibs-3.1.3.tar.bz2) = 10533062 bytes +SHA1 (kdelibs-3.1.4.tar.bz2) = 573a8cc045978edd8fb8cf10793b9eee7bcc6d63 +Size (kdelibs-3.1.4.tar.bz2) = 10537433 bytes SHA1 (patch-aa) = 4e79f488d54f6b05a23951c6e206e6582ef2a2a7 SHA1 (patch-ab) = 5b2188a3e4edd1f5eb0f3516f6a846e9a8c8c055 SHA1 (patch-ac) = 491ef6e556b7ce55e9c92b2dd641e20f9c94912e @@ -40,4 +40,3 @@ SHA1 (patch-bv) = 882355f9dd9cdbbbe14d54e5c59b630ef0347e1c SHA1 (patch-cc) = f0154cf753a61271366ec3f57d62c1cf21bffc14 SHA1 (patch-cd) = e9f1096e9c293c545a2121c73ceb238d98e9b486 SHA1 (patch-ce) = 08e965336563bc818bbfd6dcef6b3bdbcfd89497 -SHA1 (patch-cf) = 7b5c022a0b323cd5407cf2879541ed5fd43dabc6 diff --git a/x11/kdelibs3/patches/patch-cf b/x11/kdelibs3/patches/patch-cf deleted file mode 100644 index 474b472a505..00000000000 --- a/x11/kdelibs3/patches/patch-cf +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-cf,v 1.5 2003/08/08 12:56:25 skrll Exp $ - ---- khtml/rendering/render_root.cpp.orig Wed Jul 16 01:57:40 2003 -+++ khtml/rendering/render_root.cpp -@@ -118,7 +118,7 @@ void RenderRoot::layout() - #endif - if (!m_printingMode) { - QSize s = m_view->viewportSize(m_view->contentsWidth(), -- 0); -+ m_view->contentsHeight()); - m_width = s.width(); - m_height = s.height(); - } -@@ -132,7 +132,7 @@ void RenderRoot::layout() - if (!m_printingMode) { - m_view->resizeContents(docWidth(), docHeight()); - QSize s = m_view->viewportSize(m_view->contentsWidth(), -- m_view->contentsHeight()); -+ 0); - setWidth( m_viewportWidth = s.width() ); - setHeight( m_viewportHeight = s.height() ); - } |