diff options
author | hasso <hasso@pkgsrc.org> | 2009-06-06 04:59:50 +0000 |
---|---|---|
committer | hasso <hasso@pkgsrc.org> | 2009-06-06 04:59:50 +0000 |
commit | eb60236cecbf5cdeb992a290dccf93fc42058796 (patch) | |
tree | d34743e6a4bcbc7fd2f6bda19b79a52f7fabbb85 /x11/kdebase3 | |
parent | a44e39ecc1f25ab15ad9fa45fe7677653a842ea9 (diff) | |
download | pkgsrc-eb60236cecbf5cdeb992a290dccf93fc42058796.tar.gz |
Add post 3.5.10 patch from KDE subversion repo to make fish copy reliable.
Bump PKGREVISION.
Diffstat (limited to 'x11/kdebase3')
-rw-r--r-- | x11/kdebase3/Makefile | 4 | ||||
-rw-r--r-- | x11/kdebase3/distinfo | 3 | ||||
-rw-r--r-- | x11/kdebase3/patches/patch-ae | 15 |
3 files changed, 19 insertions, 3 deletions
diff --git a/x11/kdebase3/Makefile b/x11/kdebase3/Makefile index 6635cdc9aeb..a2b3cd5ff5c 100644 --- a/x11/kdebase3/Makefile +++ b/x11/kdebase3/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.148 2009/05/26 21:41:06 rillig Exp $ +# $NetBSD: Makefile,v 1.149 2009/06/06 04:59:50 hasso Exp $ DISTNAME= kdebase-${_KDE_VERSION} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= x11 COMMENT= Base modules for the KDE 3 integrated X11 desktop diff --git a/x11/kdebase3/distinfo b/x11/kdebase3/distinfo index fcfb87608cc..039161db888 100644 --- a/x11/kdebase3/distinfo +++ b/x11/kdebase3/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.108 2008/08/27 12:05:02 markd Exp $ +$NetBSD: distinfo,v 1.109 2009/06/06 04:59:50 hasso Exp $ SHA1 (Daemon.README) = eb1e6af52adc02ded77af17e8953134b7e60d23b RMD160 (Daemon.README) = 39edd92ed4314397080f32a8caff0ac3f716ecf4 @@ -16,6 +16,7 @@ SHA1 (patch-aa) = db07abc7751e0ebe9f96337310fd12976cec88cb SHA1 (patch-ab) = 353de4dfb9f465ad5c3349f65854726fdb52dbed SHA1 (patch-ac) = 8be0f15be839f4f01d3e079501b83e27f1fab2eb SHA1 (patch-ad) = 031e5622acb376ce1867d08b35c55bce101e8855 +SHA1 (patch-ae) = 6047be3b046e3ca9a847dac281f7b582cd54d074 SHA1 (patch-af) = bf23bacbca7e5e5e85c64ee89acfadddce473eb4 SHA1 (patch-ag) = c2d1318f7f0d539b976fa1c1e2b234ef45056cb3 SHA1 (patch-ah) = 828fd2c11b466b9fe3b09346dc713a969a5f280f diff --git a/x11/kdebase3/patches/patch-ae b/x11/kdebase3/patches/patch-ae new file mode 100644 index 00000000000..d052edc1449 --- /dev/null +++ b/x11/kdebase3/patches/patch-ae @@ -0,0 +1,15 @@ +$NetBSD: patch-ae,v 1.10 2009/06/06 04:59:50 hasso Exp $ + +http://websvn.kde.org/?view=rev&revision=911492 + +--- kioslave/fish/fish.cpp.orig 2009-01-16 11:09:18 +0200 ++++ kioslave/fish/fish.cpp 2009-01-16 11:10:38 +0200 +@@ -1430,7 +1430,7 @@ void fishProtocol::run() { + sent(); + } + } +- if (FD_ISSET(childFd,&rfds)) { ++ else if (FD_ISSET(childFd,&rfds)) { + rc = read(childFd,buf+offset,32768-offset); + //myDebug( << "read " << rc << " bytes" << endl); + if (rc > 0) { |