diff options
author | markd <markd@pkgsrc.org> | 2007-02-05 19:32:17 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2007-02-05 19:32:17 +0000 |
commit | 4d2ad6c77682f43a5d497afb4e99408d795aac2c (patch) | |
tree | 33d670844ab910d783cd2eaeda3994728841c48d /x11/kdelibs3 | |
parent | 157473fecfb97f3eab0a577bd98a7f3b5d87b09f (diff) | |
download | pkgsrc-4d2ad6c77682f43a5d497afb4e99408d795aac2c.tar.gz |
Reverting r617941. This fixes jumping to the top right before loading a
new page in konqueror and also fixes page loading time increase.
From KDE SVN. Bump PKGREVISION.
Diffstat (limited to 'x11/kdelibs3')
-rw-r--r-- | x11/kdelibs3/Makefile | 3 | ||||
-rw-r--r-- | x11/kdelibs3/distinfo | 3 | ||||
-rw-r--r-- | x11/kdelibs3/patches/patch-af | 15 |
3 files changed, 19 insertions, 2 deletions
diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index 9084f602a4c..bcf167f768e 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.119 2007/01/26 02:44:27 markd Exp $ +# $NetBSD: Makefile,v 1.120 2007/02/05 19:32:17 markd Exp $ DISTNAME= kdelibs-${_KDE_VERSION} +PKGREVISION= 1 CATEGORIES= x11 COMMENT= Support libraries for the KDE integrated X11 desktop diff --git a/x11/kdelibs3/distinfo b/x11/kdelibs3/distinfo index 9fa278b69c1..b93718e7ada 100644 --- a/x11/kdelibs3/distinfo +++ b/x11/kdelibs3/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.82 2007/01/26 02:44:28 markd Exp $ +$NetBSD: distinfo,v 1.83 2007/02/05 19:32:17 markd Exp $ SHA1 (kdelibs-3.5.6.tar.bz2) = 2cc15499bd2191bd9333cfd1892b5ecf1199fbfd RMD160 (kdelibs-3.5.6.tar.bz2) = ce8c088e13f0e59238719600da9c768eac58b57d @@ -8,6 +8,7 @@ SHA1 (patch-ab) = 3a79b3e7fadef1a93a5490b716dace60f3de30a1 SHA1 (patch-ac) = f4a8fc2bfcf8a414e690eafd51607250b9f51890 SHA1 (patch-ad) = d8ddcea1a281474b7694979b14744c5e06b56b65 SHA1 (patch-ae) = b259a376dca4a335fbc5167868330c25c7691912 +SHA1 (patch-af) = 3f9075e84e56da7dac6ba0d893d215cc4cd11bfa SHA1 (patch-aj) = 2ec8d33ce6684da7c60759cf395b78fa4ac2eaec SHA1 (patch-an) = d34a3cc0ac0b92921bcaeb9b05c5b7a99ee3566c SHA1 (patch-ao) = 7ae360b2ee2332ec3017dfd468457f2c1b139308 diff --git a/x11/kdelibs3/patches/patch-af b/x11/kdelibs3/patches/patch-af new file mode 100644 index 00000000000..6218b7233fb --- /dev/null +++ b/x11/kdelibs3/patches/patch-af @@ -0,0 +1,15 @@ +$NetBSD: patch-af,v 1.8 2007/02/05 19:32:18 markd Exp $ + +kde svn 628618 + +--- khtml/html/html_documentimpl.cpp.orig 2007-02-04 10:47:21.000000000 +1300 ++++ khtml/html/html_documentimpl.cpp +@@ -222,7 +222,7 @@ ElementImpl *HTMLDocumentImpl::createEle + + void HTMLDocumentImpl::slotHistoryChanged() + { +- if ( !m_render ) ++ if ( true || !m_render ) + return; + + recalcStyle( Force ); |