Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Dmitry Kroupenier
Hi all and thank you for your great work, guys!
Just upgraded from 4.1.85 to 4.2.0 (OS version is FreeBSD 7.1-STABLE Tue Jan 20 
09:06:11 MSK 2009, i386 arch).
Almost everything works fine (in spite of last nasty xorg-server upgrade :-)).
But i'm faced some problems with fonts encoding in Knode - i use koi8-r 
cyrillic locale, and there was no problems with it under kde-3.5.10, but now 
i'm unable to see cyrillic symbols in message subjects (they are replaced with 
"?"). The only application with such a problem is Knode, as i can see. Is there 
a way to resolve this issue?

---
With the best regards,
Dmitry Kroupenier.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Max Brazhnikov
On Tue, 03 Feb 2009 11:45:12 +0300, Dmitry Kroupenier wrote:
> Hi all and thank you for your great work, guys!
> Just upgraded from 4.1.85 to 4.2.0 (OS version is FreeBSD 7.1-STABLE Tue
> Jan 20 09:06:11 MSK 2009, i386 arch). Almost everything works fine (in
> spite of last nasty xorg-server upgrade :-)). But i'm faced some problems
> with fonts encoding in Knode - i use koi8-r cyrillic locale, and there was
> no problems with it under kde-3.5.10, but now i'm unable to see cyrillic
> symbols in message subjects (they are replaced with "?"). The only
> application with such a problem is Knode, as i can see. Is there a way to
> resolve this issue?
Fill the bug for KDE at bugs.kde.org. It looks some kde developers think that 
there should not be other locales than UTF-8.

Max
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Dmitry Kroupenier
03.02.09, 15:43, "Max Brazhnikov" :

> > Just upgraded from 4.1.85 to 4.2.0 (OS version is FreeBSD 7.1-STABLE Tue
> > Jan 20 09:06:11 MSK 2009, i386 arch). Almost everything works fine (in
> > spite of last nasty xorg-server upgrade :-)). But i'm faced some problems
> > with fonts encoding in Knode - i use koi8-r cyrillic locale, and there was
> > no problems with it under kde-3.5.10, but now i'm unable to see cyrillic
> > symbols in message subjects (they are replaced with "?"). The only
> > application with such a problem is Knode, as i can see. Is there a way to
> > resolve this issue?
> Fill the bug for KDE at bugs.kde.org. It looks some kde developers think that 
> there should not be other locales than UTF-8.
> Max

OK - https://bugs.kde.org/show_bug.cgi?id=183001

---
With the best regards,
Dmitry Kroupenier.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread David Naylor
On Tuesday 03 February 2009 15:05:19 Max Brazhnikov wrote:
> On Tue, 3 Feb 2009 08:31:10 +0200, David Naylor wrote:
> > On Monday 02 February 2009 12:01:10 David Naylor wrote:
> >
> > Just finished compiling on FreeBSD 7.1 and have found the following
> > problems: 1. The fonts are not being anti-aliased?  (Using default fonts
> > and "Use anti-aliasing: Enabled {with sub-pixel rendering [RGB]}).
>
> man fonts-conf? Never had problems with fonts, can't help here :(

I suspect this has something to do with nvidia driver.  If one changes the 
fonts to bitstream then anti-aliasing does work (but not with the default 
fonts).  

> >  2. Network Settings doesn't detect anything to do with FreeBSD (it
> > probably still needs to be told about FreeBSD).
>
> This part surely requires someone who can add support for FreeBSD.
> Btw, k...@freebsd team are seeking for developers who would like to improve
> KDE4 support for FreeBSD.

Should I file a PR for this, considering there probably isn't enough man-power 
to actually resolve it?

> >  3. ksudo does not install?
>
> ${KDE$_PREFIX}/lib/kde4/libexec/kdesu
> Ask kde devs why kdesu is there.

Please ignore.  It appears ksudo or kdesudo is a Kubuntu specific program (why 
haven't they pushed the changes upstream?)

> >  4. Samba config module doesn't find smb.conf by default.  It should look
> > in multiple places?
>
> This could be fixed easily I believe.

One the correct place in  the code is found, yes it is. See attached.  Patch 
does compile cleanly and samba config module does not find smb.conf.  
Makefile should probably be extended to change the lookup patch if 
${LOCALBASE} isn't /usr/local?  If so just

# sed -e "s|/usr/local/etc/smb.conf|${LOCALBASE}/etc/smb.conf|' 
$WRKSRC/kio/kio/ksambashare.cpp

I have also filed a PR (bug #183006) with an improved patch.  

> >  5. When I was changing desktop effects X froze. It was a once off
> > thing...

If it reappears I will file a PR.

> I'll ping Alex about the status of mysql_embedded. Meantime you can try
> ports/128757 for mysql_embedded and ports/130634 for amarok port.

I already have :-).  I had a problem with downloading the patch... But once 
that was done amarok2 installed fine :-)

The only app now that is really missing is k3b.  Grrr... :-(

Regards,

David
--- ../kio/kio/ksambashare.cpp	2009-02-03 15:24:57.0 +0200
+++ ../kio/kio/ksambashare.cpp	2009-02-03 15:23:35.0 +0200
@@ -83,6 +83,9 @@
   if ( QFile::exists("/etc/smb.conf") )
 smbConf = "/etc/smb.conf";
   else
+  if ( QFile::exists("/usr/local/etc/smb.conf") )
+smbConf = "/usr/local/etc/smb.conf";
+  else
   if ( QFile::exists("/usr/local/samba/lib/smb.conf") )
 smbConf = "/usr/local/samba/lib/smb.conf";
   else


signature.asc
Description: This is a digitally signed message part.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Kris Moore
David Naylor wrote:
> On Tuesday 03 February 2009 15:05:19 Max Brazhnikov wrote:
>> On Tue, 3 Feb 2009 08:31:10 +0200, David Naylor wrote:
>>> On Monday 02 February 2009 12:01:10 David Naylor wrote:
>>>
>>> Just finished compiling on FreeBSD 7.1 and have found the following
>>> problems: 1. The fonts are not being anti-aliased?  (Using default fonts
>>> and "Use anti-aliasing: Enabled {with sub-pixel rendering [RGB]}).
>> man fonts-conf? Never had problems with fonts, can't help here :(
> 
> I suspect this has something to do with nvidia driver.  If one changes the 
> fonts to bitstream then anti-aliasing does work (but not with the default 
> fonts).  

Have any of you guys been able to get KDE 4.2 to work with the latest 
Xorg 7.4 in ports, and the nvidia driver? I'm playing with it here, and 
it always seems to crash X right after KDE finishes logging into my 
desktop. When I switch to "vesa" it works just fine.

Using nvidia 180.25, Xorg 7.4, KDE 4.2, etc.



-- 

Kris Moore
PC-BSD Software
http://www.pcbsd.com
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread David Naylor
On Tuesday 03 February 2009 18:44:55 Kris Moore wrote:
> David Naylor wrote:
> > On Tuesday 03 February 2009 15:05:19 Max Brazhnikov wrote:
> >> On Tue, 3 Feb 2009 08:31:10 +0200, David Naylor wrote:
> >>> On Monday 02 February 2009 12:01:10 David Naylor wrote:
> >>>
> >>> Just finished compiling on FreeBSD 7.1 and have found the following
> >>> problems: 1. The fonts are not being anti-aliased?  (Using default
> >>> fonts and "Use anti-aliasing: Enabled {with sub-pixel rendering
> >>> [RGB]}).
> >>
> >> man fonts-conf? Never had problems with fonts, can't help here :(
> >
> > I suspect this has something to do with nvidia driver.  If one changes
> > the fonts to bitstream then anti-aliasing does work (but not with the
> > default fonts).
>
> Have any of you guys been able to get KDE 4.2 to work with the latest
> Xorg 7.4 in ports, and the nvidia driver? I'm playing with it here, and
> it always seems to crash X right after KDE finishes logging into my
> desktop. When I switch to "vesa" it works just fine.
>
> Using nvidia 180.25, Xorg 7.4, KDE 4.2, etc.

I had some problems with Xorg and undefined symbols but that was just for 
probing.  Another problem I had was my previous xorg.conf didn't work, I 
needed to provide BusID in my Device section.  

Other then that now everything appears fine.  Desktop Effects are working 
without glitch.  I did have some problems logging in, X/KDE just freezes but 
Ctrl-Alt-Backspace and relogin works just fine?

I'm using nvidia-driver-177.80, xorg-7.4 on FreeBSD 7.1 (Nvidia 7600GT x2).

Does you xorg.log say anything useful, have you tried with a new config file 
(Xorg -configure, nvidia-settings)?


signature.asc
Description: This is a digitally signed message part.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [PATCH] Konq-plugings-kde4

2009-02-03 Thread David Naylor
Hi,

The distinfo for konq-plugins-kde4 are incorrect.  See attached for correct 
details.  

Regards,

David
Index: konq-plugins-kde4/distinfo
===
--- konq-plugins-kde4/distinfo	(revision 4531)
+++ konq-plugins-kde4/distinfo	(working copy)
@@ -1,3 +1,3 @@
-MD5 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 1ee6818891745af896d0d397292f759d
-SHA256 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = b72e57c7c74d60a974cc249505e3f8ab4aecd20c2f7a3841993763e44d0f6f14
-SIZE (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 430037
+MD5 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = fb288a6726e0aca208470c3aa4b7a603
+SHA256 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 594821cf252e86751fb918dd8759d95ff5ade54789f111ec71e020c58a297f56
+SIZE (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 992458


signature.asc
Description: This is a digitally signed message part.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Max Brazhnikov
On Tue, 3 Feb 2009 08:31:10 +0200, David Naylor wrote:
> On Monday 02 February 2009 12:01:10 David Naylor wrote:
> > On Sunday 01 February 2009 23:02:28 Martin Wilke wrote:
> > > Howdy Guys,
> > >
> > > The KDE FreeBSD team is happy to announce the first public
> > > Call for Testing for KDE 4.2. Over the past weeks we have
> > > focused on the complex and very time consuming task to get
> > > KDE 4.2 running.
> > >
> > > Please read UPDATING-area51 before you start your update.
> > >
> > > To get KDE 4.2:
> > >try
> > >   svn co https://kf.athame.co.uk/kde-freebsd/trunk/area51/
> > > /path/to/area51
> > >
> > > More info here:
> > >   https://kf.athame.co.uk/access.php
> > >
> > > - Martin (on behalf of the KDE FreeBSD team)
> >
> > Hi,
> >
> > I'll get started on testing today.  I however have this strange desire to
> > use USB2 (the new USB stack introduced to FreeBSD-Current).
>
> Just finished compiling on FreeBSD 7.1 and have found the following
> problems: 1. The fonts are not being anti-aliased?  (Using default fonts
> and "Use anti-aliasing: Enabled {with sub-pixel rendering [RGB]}).
man fonts-conf? Never had problems with fonts, can't help here :(

>  2. Network Settings doesn't detect anything to do with FreeBSD (it
> probably still needs to be told about FreeBSD).
This part surely requires someone who can add support for FreeBSD.
Btw, k...@freebsd team are seeking for developers who would like to improve 
KDE4 support for FreeBSD.

>  3. ksudo does not install?
${KDE$_PREFIX}/lib/kde4/libexec/kdesu
Ask kde devs why kdesu is there.

>  4. Samba config module doesn't find smb.conf by default.  It should look
> in multiple places?
This could be fixed easily I believe.

>  5. When I was changing desktop effects X froze. It was a once off thing...
>
> Items 1,2, 4, (5) probably qualify for a PR, can anyone confirm these?
>
> Item 3 probably has something to do with our ports.  I really prefer to use
> (k)sudo (since ksu doesn't like root without a password).  Item 4 should be
> fixed with a patch (until upstream comes with a proper solution).
>
> If you wait a few hours I'll see what I can do about providing patches for
> items 3, 4.
Welcome!

> > Is KDE4 happy with USB2 (or to be more precise, is hald happy with USB2
> > yet)?
>
> I'll try compile hald with USB2.  If that doesn't work (i.e. starts taking
> 100% CPU on a core) then I will not persue the issue.  I'm not sure ports
> has been converted to handle the base system's libusb20 in -current?
>
> Oh and I am still having problems with HTTPS and proxy.  I am going to try
> put up a Squid proxy and see if Squid behaves better then WinGate.  And I
> am hoping Qt 4.5 will fix this proxy/socks problem (if it will hurry up and
> get released :-)).
>
> Everything else is looking good :-) and working on the FreeBSD side.
>
> Thanks
>
> David
>
> P.S. Any hope in getting Amarok 2 into ports with KDE 4.2.  Last I saw it
> was pending on a PR to fix mysql_embedded?
I'll ping Alex about the status of mysql_embedded. Meantime you can try 
ports/128757 for mysql_embedded and ports/130634 for amarok port.

Max.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/misc/konq-plugins-kde4

2009-02-03 Thread Martin Wilke
SVN commit 4534 by miwi:

- Fix distinfo

Reported by:David Naylor



 M  +3 -3  distinfo  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] [PATCH] Konq-plugings-kde4

2009-02-03 Thread Martin Wilke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tue, Feb 03, 2009 at 07:14:05PM +0200, David Naylor wrote:
> Hi,
> 
> The distinfo for konq-plugins-kde4 are incorrect.  See attached for correct 
> details.  

Fixed thanks

> 
> Regards,
> 
> David

> Index: konq-plugins-kde4/distinfo
> ===
> --- konq-plugins-kde4/distinfo(revision 4531)
> +++ konq-plugins-kde4/distinfo(working copy)
> @@ -1,3 +1,3 @@
> -MD5 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 
> 1ee6818891745af896d0d397292f759d
> -SHA256 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 
> b72e57c7c74d60a974cc249505e3f8ab4aecd20c2f7a3841993763e44d0f6f14
> -SIZE (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 430037
> +MD5 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 
> fb288a6726e0aca208470c3aa4b7a603
> +SHA256 (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 
> 594821cf252e86751fb918dd8759d95ff5ade54789f111ec71e020c58a297f56
> +SIZE (KDE/extragear/konq-plugins-4.2.0.tar.bz2) = 992458




> ___
> kde-freebsd mailing list
> kde-freebsd@kde.org
> https://mail.kde.org/mailman/listinfo/kde-freebsd
> See also http://freebsd.kde.org/ for latest information


- -- 

+---+---+
|  PGP: 0x05682353  |  Jabber : miwi(at)BSDCrew.de  |
|  ICQ: 169139903   |  Mail   : miwi(at)FreeBSD.org |
+---+---+
|   Mess with the Best, Die like the Rest!  |
+---+---+
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (FreeBSD)

iEYEARECAAYFAkmIgpkACgkQFwpycAVoI1M9KgCfRjnj6lx+FVO17wwDfnTR81nP
7cwAn1OKMeOlnF6rK/V89Gad/zKY5gpP
=idzn
-END PGP SIGNATURE-
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Thomas Schlesinger

Dorian Büttner wrote:

> On Monday 02 February 2009 15:22:29 Thomas Schlesinger wrote:
> 
> > I've build some packages successfully over the last days with FreeBSD
> 7.1
> Shouldn't it read: since yesterday evening? 

No, it should read: over the last days.

> > on i386 (Upgrade from KDE 4.1.x):
> You should delete your ports and start over, as described in
> UPDATING-area51.

Well, I want to avoid this ;-)

> >
> You could also install bsdadminscripts from ports and run libchk -qo, this
> will give you an overwiew how messed your system is regarding library 
> versions. It's often mentioned in bsdforen.de.

That was a helpful hint. I've used the pkg_libchk -qo and I've rebuilt the 
shown ports. It didn't fix my problem with kdeedu4, but now firefox3 is able to 
start again ;-)

Thanks for this tip,
Thomas

-- 
Jetzt 1 Monat kostenlos! GMX FreeDSL - Telefonanschluss + DSL 
für nur 17,95 Euro/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K11308T4569a
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/Mk

2009-02-03 Thread Martin Wilke
SVN commit 4533 by miwi:

- Mark KDE 4.2 now Broken for 6.X.

  Sorry Guys!
   But we don't have the manpower to fix all the
   stuff for 6.4 in a short time. Most desktop users
   are already using FreeBSD 7.x. If somebody want
   to support KDE4 on 6.x you are welcome to our
   team! Try to compile KDE, make patches and
   push them upstream!



 M  +4 -0  bsd.kde4.mk  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Kris Moore
David Naylor wrote:
> On Tuesday 03 February 2009 18:44:55 Kris Moore wrote:
>> David Naylor wrote:
>>> On Tuesday 03 February 2009 15:05:19 Max Brazhnikov wrote:
 On Tue, 3 Feb 2009 08:31:10 +0200, David Naylor wrote:
> On Monday 02 February 2009 12:01:10 David Naylor wrote:
>
> Just finished compiling on FreeBSD 7.1 and have found the following
> problems: 1. The fonts are not being anti-aliased?  (Using default
> fonts and "Use anti-aliasing: Enabled {with sub-pixel rendering
> [RGB]}).
 man fonts-conf? Never had problems with fonts, can't help here :(
>>> I suspect this has something to do with nvidia driver.  If one changes
>>> the fonts to bitstream then anti-aliasing does work (but not with the
>>> default fonts).
>> Have any of you guys been able to get KDE 4.2 to work with the latest
>> Xorg 7.4 in ports, and the nvidia driver? I'm playing with it here, and
>> it always seems to crash X right after KDE finishes logging into my
>> desktop. When I switch to "vesa" it works just fine.
>>
>> Using nvidia 180.25, Xorg 7.4, KDE 4.2, etc.
> 
> I had some problems with Xorg and undefined symbols but that was just for 
> probing.  Another problem I had was my previous xorg.conf didn't work, I 
> needed to provide BusID in my Device section.  
> 
> Other then that now everything appears fine.  Desktop Effects are working 
> without glitch.  I did have some problems logging in, X/KDE just freezes but 
> Ctrl-Alt-Backspace and relogin works just fine?
> 
> I'm using nvidia-driver-177.80, xorg-7.4 on FreeBSD 7.1 (Nvidia 7600GT x2).
> 
> Does you xorg.log say anything useful, have you tried with a new config file 
> (Xorg -configure, nvidia-settings)?

No errors, just X crashing and restarting after KDE loads. However, i 
think I've figured it out now. We've been using these nvidia driver 
options by default to improve performance in kde4:

 Option "AllowGLXWithComposite" "true"
 Option "RenderAccel" "true"
 Option "AddARGBGLXVisuals" "true"
 Option "UseEvents" "false"
 Option "TripleBuffer" "1"
 Option "DamageEvents" "1"
 Option "BackingStore" "1"
 Option "PixmapCacheSize" "7"
 Option "OnDemandVBlankInterrupts" "true"
 Option "XAANoOffscreenPixmaps" "true"

I disabled all of them, and just used the nvidia defaults, and it works 
properly now. (Running with nvidia driver 180.25) Most likely one of 
those was causing the crash when KDE loaded up. Aside from that, it 
seems to be working great now!  KDE 4.2 is a huge step in the right 
direction :)

Any word on the kde4 printer app / python work? How about getting the 
improved kipi-plugins-kde4 thrown in with area51?



-- 

Kris Moore
PC-BSD Software
http://www.pcbsd.com
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread David Johnson
On Tuesday 03 February 2009 06:31:07 am David Naylor wrote:
> I suspect this has something to do with nvidia driver.  If one changes the
> fonts to bitstream then anti-aliasing does work (but not with the default
> fonts).

I think it's just a bad default. It's not nvidia, as I saw the same thing with 
a radeon driver. "Sans serif" is not a font, it's an alias for a font. On most 
Linux distros it's an alias for bitstream vera sans, but on FreeBSD I think 
it's an alias for helvetica.

-- 
David Johnson
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Dorian Büttner
Kris Moore schrieb:
> David Naylor wrote:
>   
>> On Tuesday 03 February 2009 15:05:19 Max Brazhnikov wrote:
>> 
>>> On Tue, 3 Feb 2009 08:31:10 +0200, David Naylor wrote:
>>>   
 On Monday 02 February 2009 12:01:10 David Naylor wrote:

 Just finished compiling on FreeBSD 7.1 and have found the following
 problems: 1. The fonts are not being anti-aliased?  (Using default fonts
 and "Use anti-aliasing: Enabled {with sub-pixel rendering [RGB]}).
 
>>> man fonts-conf? Never had problems with fonts, can't help here :(
>>>   
>> I suspect this has something to do with nvidia driver.  If one changes the 
>> fonts to bitstream then anti-aliasing does work (but not with the default 
>> fonts).  
>> 
>
> Have any of you guys been able to get KDE 4.2 to work with the latest 
> Xorg 7.4 in ports, and the nvidia driver? I'm playing with it here, and 
> it always seems to crash X right after KDE finishes logging into my 
> desktop. When I switch to "vesa" it works just fine.
>
> Using nvidia 180.25, Xorg 7.4, KDE 4.2, etc.
>
>
>
>   
Have you first installed Xorg and then nvidia-drivers or vice versa? 
They install files in the same place, libGLu or whatever...
It's 180.22 btw, I just start compiling on my i386 nvidia box and then 
I'll see if it reproduces, may last until tomorrow. Are you loggin in 
through kdm, or do you use startx?

Regards,
Dorian
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Matt
On Tue, Feb 3, 2009 at 12:02 PM, Kris Moore  wrote:
> David Naylor wrote:
>> On Tuesday 03 February 2009 18:44:55 Kris Moore wrote:
>>> David Naylor wrote:
 On Tuesday 03 February 2009 15:05:19 Max Brazhnikov wrote:
> On Tue, 3 Feb 2009 08:31:10 +0200, David Naylor wrote:
>> On Monday 02 February 2009 12:01:10 David Naylor wrote:
>>
>> Just finished compiling on FreeBSD 7.1 and have found the following
>> problems: 1. The fonts are not being anti-aliased?  (Using default
>> fonts and "Use anti-aliasing: Enabled {with sub-pixel rendering
>> [RGB]}).
> man fonts-conf? Never had problems with fonts, can't help here :(
 I suspect this has something to do with nvidia driver.  If one changes
 the fonts to bitstream then anti-aliasing does work (but not with the
 default fonts).
>>> Have any of you guys been able to get KDE 4.2 to work with the latest
>>> Xorg 7.4 in ports, and the nvidia driver? I'm playing with it here, and
>>> it always seems to crash X right after KDE finishes logging into my
>>> desktop. When I switch to "vesa" it works just fine.
>>>
>>> Using nvidia 180.25, Xorg 7.4, KDE 4.2, etc.
>>
>> I had some problems with Xorg and undefined symbols but that was just for
>> probing.  Another problem I had was my previous xorg.conf didn't work, I
>> needed to provide BusID in my Device section.
>>
>> Other then that now everything appears fine.  Desktop Effects are working
>> without glitch.  I did have some problems logging in, X/KDE just freezes but
>> Ctrl-Alt-Backspace and relogin works just fine?
>>
>> I'm using nvidia-driver-177.80, xorg-7.4 on FreeBSD 7.1 (Nvidia 7600GT x2).
>>
>> Does you xorg.log say anything useful, have you tried with a new config file
>> (Xorg -configure, nvidia-settings)?
>
> No errors, just X crashing and restarting after KDE loads. However, i
> think I've figured it out now. We've been using these nvidia driver
> options by default to improve performance in kde4:
>
> Option "AllowGLXWithComposite" "true"
> Option "RenderAccel" "true"
> Option "AddARGBGLXVisuals" "true"
> Option "UseEvents" "false"
> Option "TripleBuffer" "1"
> Option "DamageEvents" "1"
> Option "BackingStore" "1"
> Option "PixmapCacheSize" "7"
> Option "OnDemandVBlankInterrupts" "true"
> Option "XAANoOffscreenPixmaps" "true"
>
> I disabled all of them, and just used the nvidia defaults, and it works
> properly now. (Running with nvidia driver 180.25) Most likely one of
> those was causing the crash when KDE loaded up. Aside from that, it
> seems to be working great now!  KDE 4.2 is a huge step in the right
> direction :)

Finally had some time to install the updated Xorg and KDE 4.2 packages
and found similar results.  Xorg was regularly crashing with similar
nvidia settings that Kris mentions above.  Removing those stabilized
things - haven't done any troubleshooting to see which one(s) were the
actual problems.  Graphical performance remains very fast without the
options now, which is nice.  This is with nvidia driver 180.25.

Haven't noticed any other obvious problems.  I launch X with startx
and don't use kdm.

> Any word on the kde4 printer app / python work? How about getting the
> improved kipi-plugins-kde4 thrown in with area51?

The kipi-plugins-kde4 port (with the updates I posted to the list on
1/28) is working well for me on both i386 and amd64.  The digikam
(version 0.10.x branch for kde4) port I've been working on seems to
work as expected as well.  I'll see if I can get that posted for
review here in the near future.

Matt
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/x11/kdebase4-workspace/files

2009-02-03 Thread Markus Brueffer
SVN commit 4536 by markus:

- Add the new sensor cpu/system/TotalLoad. The sensor type is "float" instead
  of "integer". Apart from the legacy sensors, all cpu sensors should be
  converted to "float" eventually.
- Adjust the SystemLoad template to pick up all CPUs instead of just those on
  Linux SMP/Multicore systems. Note that this should also fix cases on Linux
  where only one CPU with one core is present.

This fixes the default system monitor and all widgets whose dataengine rely
on this sensor.


 A patch-ksysguard-gui-SystemLoad.sgrd  
 M  +21 -6 patch-ksysguard-ksysguardd-FreeBSD-CPU.c  
 M  +6 -4  patch-ksysguard-ksysguardd-FreeBSD-CPU.h  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] Call for Testing KDE 4.2 for FreeBSD

2009-02-03 Thread Max Brazhnikov
On Tue, 3 Feb 2009 10:20:09 -0800, David Johnson wrote:
> On Tuesday 03 February 2009 06:31:07 am David Naylor wrote:
> > I suspect this has something to do with nvidia driver.  If one changes
> > the fonts to bitstream then anti-aliasing does work (but not with the
> > default fonts).
>
> I think it's just a bad default. It's not nvidia, as I saw the same thing
> with a radeon driver. "Sans serif" is not a font, it's an alias for a font.
> On most Linux distros it's an alias for bitstream vera sans, but on FreeBSD
> I think it's an alias for helvetica.
Seems so. I always use non-default fonts cause default ones look terribly ugly 
for cyrillics.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] PulseAudio and KDEBase-Runtime

2009-02-03 Thread Max Brazhnikov
On Tue, 3 Feb 2009 22:34:53 +0200, David Naylor wrote:
> Hi,
>
> I've found a rather nasty, reproducible, bug.  When kdebase-runtime is
> compiled with pulseaudio support then KDE fails to login on the first
> attempt.  X/KDE appears to freeze, after a Ctrl-Alt-Backspace then logins
> work.
Do you have configured pulseaudio daemon?

> This may be relevent: I am running Desktop Effects on a nvidia driver?
>
> If anyone else can confirm this bug I suggest pulseaudio gets removed as an
> option.  (Oh, is this FreeBSD specific or a general problem)
Option is off by default. Non-pulseaudio users are not affected.

Max

___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/misc/konq-plugins-kde4

2009-02-03 Thread Max Brazhnikov
SVN commit 4535 by makc:

fix plist - no cookies for miwi

 M  +1189 -6   pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [PATCH] PolicyKit-kde

2009-02-03 Thread David Naylor
Hi,

I've ported PolicyKit-kde.  The pkg-desc is incomplete and I have a patch for 
the developers, except I cannot find them and bugzilla will not allow me to 
file a bug against it.  It would be very nice if it had a homepage (or any 
page for that matter).  

Anyway, see attached for the shar (and the patch intended for the developers).

Regards,

David
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#   PolicyKit-kde
#   PolicyKit-kde/distinfo
#   PolicyKit-kde/pkg-descr
#   PolicyKit-kde/files
#   PolicyKit-kde/files/patch-CMakeLists.txt
#   PolicyKit-kde/Makefile
#   PolicyKit-kde/pkg-plist
#
echo c - PolicyKit-kde
mkdir -p PolicyKit-kde > /dev/null 2>&1
echo x - PolicyKit-kde/distinfo
sed 's/^X//' >PolicyKit-kde/distinfo << '7b4a7ea0ba7243864b965a7492d1cffd'
XMD5 (KDE/extragear/PolicyKit-kde-4.2.0.tar.bz2) = 
e3bc0669e5a61549d12a66af31dd81b6
XSHA256 (KDE/extragear/PolicyKit-kde-4.2.0.tar.bz2) = 
ded03e4f353df95a1f28c21344f99674ed1853560d0f9113f0f3c0a7a7f5524f
XSIZE (KDE/extragear/PolicyKit-kde-4.2.0.tar.bz2) = 86743
7b4a7ea0ba7243864b965a7492d1cffd
echo x - PolicyKit-kde/pkg-descr
sed 's/^X//' >PolicyKit-kde/pkg-descr << '329484802c2738d739b9c732434aa776'
XTODO
X
XWWW:   http://www.kde.org/
329484802c2738d739b9c732434aa776
echo c - PolicyKit-kde/files
mkdir -p PolicyKit-kde/files > /dev/null 2>&1
echo x - PolicyKit-kde/files/patch-CMakeLists.txt
sed 's/^X//' >PolicyKit-kde/files/patch-CMakeLists.txt << 
'fa02796f6e8bf3c31e99808ad21c6f83'
X--- CMakeLists.txt~2009-02-03 19:54:33.0 +0200
X+++ CMakeLists.txt 2009-02-03 19:53:40.0 +0200
X@@ -19,6 +19,8 @@
X   polkit-qt/
X )
X 
X+  link_directories(${POLKIT_LIBRARY_DIR}  ${POLKITDBUS_LIBRARY_DIRS} 
${POLKITGRANT_LIBRARY_DIRS})
X+
X   add_subdirectory(manager)
X   add_subdirectory(services)
X   add_subdirectory(authorization)
fa02796f6e8bf3c31e99808ad21c6f83
echo x - PolicyKit-kde/Makefile
sed 's/^X//' >PolicyKit-kde/Makefile << '665f8513cb276da79f36a583913eda9c'
X# New ports collection makefile for:   PolicyKit-kde
X# Date created:2009-02-03
X# Whom:David Naylor 
X#
X# $FreeBSD$
X#
X
XPORTNAME=  PolicyKit-kde
XPORTVERSION=   ${EXTRA_VER}
XCATEGORIES=sysutils kde
XMASTER_SITES=  ${MASTER_SITE_KDE}
XMASTER_SITE_SUBDIR=stable/${EXTRA_VER}/src/extragear
XDIST_SUBDIR=   KDE/extragear
X
XMAINTAINER=k...@freebsd.org
XCOMMENT=   PolicyKit manager for KDE
X
XLIB_DEPENDS=   polkit.2:${PORTSDIR}/sysutils/policykit
X
XUSE_BZIP2= yes
XUSE_GETTEXT=   yes
XUSE_KDE4=  kdelibs kdeprefix automoc4
XUSE_LDCONFIG=  yes
XUSE_QT_VER=4
XQT_COMPONENTS= corelib dbus gui network svg xml  \
X   qmake_build moc_build rcc_build uic_build
XUSE_CMAKE= yes
X
XEXTRA_VER= 4.2.0
X
X.include 
665f8513cb276da79f36a583913eda9c
echo x - PolicyKit-kde/pkg-plist
sed 's/^X//' >PolicyKit-kde/pkg-plist << 'c53210bf5b3f4209a38be06b4eebe7b3'
Xbin/polkit-kde-authorization
Xlib/kde4/libexec/polkit-kde-manager
Xlib/kde4/kcm_pkk_authorization.so
Xlib/libpolkitkdeprivate.so.5.0.1
Xlib/libpolkitkdeprivate.so.5
Xlib/libpolkitkdeprivate.so
Xlib/libpolkit_qt.so.5.0.1
Xlib/libpolkit_qt.so.5
Xlib/libpolkit_qt.so
Xshare/locale/ar/LC_MESSAGES/policykit-kde.mo
Xshare/locale/ar/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/cs/LC_MESSAGES/policykit-kde.mo
Xshare/locale/cs/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/de/LC_MESSAGES/policykit-kde.mo
Xshare/locale/de/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/el/LC_MESSAGES/policykit-kde.mo
Xshare/locale/el/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/es/LC_MESSAGES/policykit-kde.mo
Xshare/locale/es/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/et/LC_MESSAGES/policykit-kde.mo
Xshare/locale/fr/LC_MESSAGES/policykit-kde.mo
Xshare/locale/fr/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/ga/LC_MESSAGES/policykit-kde.mo
Xshare/locale/ga/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/gl/LC_MESSAGES/policykit-kde.mo
Xshare/locale/gl/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/ja/LC_MESSAGES/policykit-kde.mo
Xshare/locale/ja/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/lt/LC_MESSAGES/policykit-kde.mo
Xshare/locale/lt/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/lv/LC_MESSAGES/policykit-kde.mo
Xshare/locale/lv/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/nb/LC_MESSAGES/policykit-kde.mo
Xshare/locale/nb/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/nl/LC_MESSAGES/policykit-kde.mo
Xshare/locale/nl/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/nn/LC_MESSAGES/policykit-kde.mo
Xshare/locale/nn/LC_MESSAGES/polkit-kde-authorization.mo
Xshare/locale/pa/LC_MESSAGES/policykit-kde.mo
Xshare/locale/pa/LC_MESSAGES/polki

[kde-freebsd] PulseAudio and KDEBase-Runtime

2009-02-03 Thread David Naylor
Hi,

I've found a rather nasty, reproducible, bug.  When kdebase-runtime is 
compiled with pulseaudio support then KDE fails to login on the first 
attempt.  X/KDE appears to freeze, after a Ctrl-Alt-Backspace then logins 
work.  

This may be relevent: I am running Desktop Effects on a nvidia driver?  

If anyone else can confirm this bug I suggest pulseaudio gets removed as an 
option.  (Oh, is this FreeBSD specific or a general problem)

Regards,

David


signature.asc
Description: This is a digitally signed message part.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] Port available for testing - graphics/digikam-kde4

2009-02-03 Thread Matt
Hello all.

Attached is a shell-archive of a new port for available testing -
Digikam for KDE4.  Currently at release candidate one
(http://www.digikam.org/drupal/node/422) this port seems to be in
decent shape.  It's been run-tested on amd64 and i386 and it builds
cleanly in tinderboxes on both platforms.  This port also takes
advantage of the kipi-plugins-kde4 port that Kris Moore has posted to
the list, which is nice.

Thanks to Kris for the CMake patches on the kipi-plugins-kde4 port, as
I've reused them in this port to get proper kexiv2, kipi and kdcraw
detection and library linking.

NOTE: This port required KDE 4.2 as the minimum version due to the
kexiv2, kipi and kdcraw minimum library version requirements.  I've
tested it with KDE42b2 and KDE42 from Area51 and they both work fine.

If testing goes well, I can submit a PR to get the port added.

Thanks,
Matt


digikam-kde4.shar
Description: Unix shell archive
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


Re: [kde-freebsd] PulseAudio and KDEBase-Runtime

2009-02-03 Thread David Naylor
On Tuesday 03 February 2009 23:28:29 Max Brazhnikov wrote:
> On Tue, 3 Feb 2009 22:34:53 +0200, David Naylor wrote:
> > Hi,
> >
> > I've found a rather nasty, reproducible, bug.  When kdebase-runtime is
> > compiled with pulseaudio support then KDE fails to login on the first
> > attempt.  X/KDE appears to freeze, after a Ctrl-Alt-Backspace then logins
> > work.
>
> Do you have configured pulseaudio daemon?

No, I didn't do anything besides setting the options on kdebase-runtime. 

> > This may be relevent: I am running Desktop Effects on a nvidia driver?
> >
> > If anyone else can confirm this bug I suggest pulseaudio gets removed as
> > an option.  (Oh, is this FreeBSD specific or a general problem)
>
> Option is off by default. Non-pulseaudio users are not affected.

True, very true.  ;-)





signature.asc
Description: This is a digitally signed message part.
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/x11/kdebase4-workspace/files

2009-02-03 Thread Max Brazhnikov
SVN commit 4537 by makc:

remove zero sized patch

 D patch-libs-ksysguard-processcore-processes_freebsd_p.cpp  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information


[kde-freebsd] [SVN Commit] area51/sysutils

2009-02-03 Thread Max Brazhnikov
SVN commit 4538 by makc:

Add sysutils/policykit-kde: PolicyKit manager for KDE

Submitted by David Naylor 

 A policykit-kde (directory)  
 A policykit-kde/Makefile  
 A policykit-kde/distinfo  
 A policykit-kde/files (directory)  
 A policykit-kde/files/patch-CMakeLists.txt  
 A policykit-kde/pkg-descr  
 A policykit-kde/pkg-plist  


___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd
See also http://freebsd.kde.org/ for latest information