pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11/kdebase3 Fix paths to ProcessTable.sgrd in ksysgua...
details: https://anonhg.NetBSD.org/pkgsrc/rev/ec67a0cb5556
branches: trunk
changeset: 466760:ec67a0cb5556
user: jmmv <jmmv%pkgsrc.org@localhost>
date: Thu Jan 22 18:55:26 2004 +0000
description:
Fix paths to ProcessTable.sgrd in ksysguard. This lets "ksysguard
--showprocesses" work properly (as invoked by ctrl+esc).
Bump PKGREVISION to 1.
diffstat:
x11/kdebase3/Makefile | 3 ++-
x11/kdebase3/distinfo | 5 ++++-
x11/kdebase3/patches/patch-fe | 22 ++++++++++++++++++++++
x11/kdebase3/patches/patch-ff | 22 ++++++++++++++++++++++
x11/kdebase3/patches/patch-fg | 13 +++++++++++++
5 files changed, 63 insertions(+), 2 deletions(-)
diffs (97 lines):
diff -r f28ebc14abc0 -r ec67a0cb5556 x11/kdebase3/Makefile
--- a/x11/kdebase3/Makefile Thu Jan 22 18:20:47 2004 +0000
+++ b/x11/kdebase3/Makefile Thu Jan 22 18:55:26 2004 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.36 2004/01/15 12:22:10 markd Exp $
+# $NetBSD: Makefile,v 1.37 2004/01/22 18:55:26 jmmv Exp $
DISTNAME= kdebase-3.1.5
+PKGREVISION= 1
CATEGORIES= x11
COMMENT= Base modules for the KDE 3 integrated X11 desktop
diff -r f28ebc14abc0 -r ec67a0cb5556 x11/kdebase3/distinfo
--- a/x11/kdebase3/distinfo Thu Jan 22 18:20:47 2004 +0000
+++ b/x11/kdebase3/distinfo Thu Jan 22 18:55:26 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.39 2004/01/15 10:15:14 markd Exp $
+$NetBSD: distinfo,v 1.40 2004/01/22 18:55:26 jmmv Exp $
SHA1 (kdebase-3.1.5.tar.bz2) = 489f802e2558db2025ca59ca888286a026bf2552
Size (kdebase-3.1.5.tar.bz2) = 15163007 bytes
@@ -121,3 +121,6 @@
SHA1 (patch-fb) = 5f6895322c186813c43a3426dfe4d57a17090346
SHA1 (patch-fc) = 8bdc76aa9c34e270de2fba14213db0c179c5cd31
SHA1 (patch-fd) = 0005eaf7eaecb6377da5342c27effd798f425c95
+SHA1 (patch-fe) = eb98edce602c3f56e02b7fc1ae907582723787df
+SHA1 (patch-ff) = 4d324c4d346183020915815aa47c9bfb2b55a9ca
+SHA1 (patch-fg) = c8553eae605ec0ed3d6c7a6cdd84696ab37b8adc
diff -r f28ebc14abc0 -r ec67a0cb5556 x11/kdebase3/patches/patch-fe
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/kdebase3/patches/patch-fe Thu Jan 22 18:55:26 2004 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-fe,v 1.1 2004/01/22 18:55:26 jmmv Exp $
+
+--- ksysguard/gui/KSysGuardApplet.cc.orig 2003-07-13 21:24:24.000000000 +0200
++++ ksysguard/gui/KSysGuardApplet.cc
+@@ -359,7 +359,7 @@ bool
+ KSysGuardApplet::load()
+ {
+ KStandardDirs* kstd = KGlobal::dirs();
+- kstd->addResourceType("data", "share/apps/ksysguard");
++ kstd->addResourceType("data", "share/kde/apps/ksysguard");
+ QString fileName = kstd->findResource("data", "KSysGuardApplet.xml");
+
+ QFile file(fileName);
+@@ -516,7 +516,7 @@ KSysGuardApplet::save()
+ }
+
+ KStandardDirs* kstd = KGlobal::dirs();
+- kstd->addResourceType("data", "share/apps/ksysguard");
++ kstd->addResourceType("data", "share/kde/apps/ksysguard");
+ QString fileName = kstd->saveLocation("data", "ksysguard");
+ fileName += "/KSysGuardApplet.xml";
+
diff -r f28ebc14abc0 -r ec67a0cb5556 x11/kdebase3/patches/patch-ff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/kdebase3/patches/patch-ff Thu Jan 22 18:55:26 2004 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ff,v 1.1 2004/01/22 18:55:26 jmmv Exp $
+
+--- ksysguard/gui/Workspace.cc.orig 2003-07-13 21:24:24.000000000 +0200
++++ ksysguard/gui/Workspace.cc
+@@ -91,7 +91,7 @@ Workspace::readProperties(KConfig* cfg)
+ * probably the first time the user has started KSysGuard. We
+ * then "restore" a special default configuration. */
+ KStandardDirs* kstd = KGlobal::dirs();
+- kstd->addResourceType("data", "share/apps/ksysguard");
++ kstd->addResourceType("data", "share/kde/apps/ksysguard");
+
+ workDir = kstd->saveLocation("data", "ksysguard");
+
+@@ -470,7 +470,7 @@ void
+ Workspace::showProcesses()
+ {
+ KStandardDirs* kstd = KGlobal::dirs();
+- kstd->addResourceType("data", "share/apps/ksysguard");
++ kstd->addResourceType("data", "share/kde/apps/ksysguard");
+
+ QString f = kstd->findResource("data", "ProcessTable.sgrd");
+ if (!f.isEmpty())
diff -r f28ebc14abc0 -r ec67a0cb5556 x11/kdebase3/patches/patch-fg
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/kdebase3/patches/patch-fg Thu Jan 22 18:55:26 2004 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-fg,v 1.1 2004/01/22 18:55:26 jmmv Exp $
+
+--- ksysguard/gui/ksysguard.cc.orig 2003-05-07 13:44:16.000000000 +0200
++++ ksysguard/gui/ksysguard.cc
+@@ -156,7 +156,7 @@ void TopLevel::resetWorkSheets()
+ ws->removeAllWorkSheets();
+
+ KStandardDirs* kstd = KGlobal::dirs();
+- kstd->addResourceType("data", "share/apps/ksysguard");
++ kstd->addResourceType("data", "share/kde/apps/ksysguard");
+
+ QString workDir = kstd->saveLocation("data", "ksysguard");
+
Home |
Main Index |
Thread Index |
Old Index