pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

pkg/40020: Multiple problems in KDE control center



>Number:         40020
>Category:       pkg
>Synopsis:       Multiple problems in KDE control center
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    pkg-manager
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Mon Nov 24 22:35:00 +0000 2008
>Originator:     Sergey Svishchev
>Release:        4.0
>Organization:
>Environment:
KDE 3.5.10
>Description:
Out of curiosity, I've tried to use every offered kcontrol feature.  There are 
multiple problems:

Power Control > Laptop Battery
  Crashes: /usr/pkg/lib/kde3/kcm_laptop.so: Undefined PLT symbol 
"_ZN15laptop_portable20has_software_suspendEi" (symnum = 271):
  Unimplemented laptop_portable::has_software_suspend(int)
  [kdeutils/klaptopdaemon] 

System Administration > IBM Thinkpad Laptop
  Disabled -- Linux-only

System Administration > Image Index
  Requires 'gift' (GNU image finding tool, not in pkgsrc)

Peripherals > Digital Camera
  Needs write access to /dev/usb* /dev/ugen*

Peripherals > Remote Controls
  Linux-only, but not disabled

Internet ... > Local Network Browsing > LiSa Daemon > Suggest Setting
  Detects IP addresses with empty netmasks

Internet ... > Network Settings
  "Platform not supported"
  [kdeadmin/knetworkconf] 

Internet ... > Samba
  Does not autodetect smb.conf location

>How-To-Repeat:

>Fix:
Proposed fix for 'smb.conf' problem:

--- kio/kio/ksambashare.cpp.orig        2007-10-08 09:52:05.000000000 +0000
+++ kio/kio/ksambashare.cpp
@@ -85,6 +85,9 @@ bool KSambaSharePrivate::findSmbConf() {
   else
   if ( QFile::exists("/usr/local/lib/smb.conf") )
     smbConf = "/usr/local/lib/smb.conf";
+  else
+  if ( QFile::exists("/usr/pkg/etc/samba/smb.conf") )
+    smbConf = "/usr/pkg/etc/samba/smb.conf";
   else {
     kdDebug(7000) << "KSambaShare: Could not found smb.conf!" << endl;
     return false;



Home | Main Index | Thread Index | Old Index