Could you please approve this simple patch: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274275

2023-10-05 Thread Yuri
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274275 is a workaround 
for one simple bug in cmake.



This blocks some other port updates.


Thanks,

Yuri




Re: Should x11/qimageblitz remain maintained by kde@ ?

2019-04-12 Thread Yuri

On 4/12/19 1:38 PM, Adriaan de Groot wrote:

The last released version was from 2010, and firmly Qt4-only. While there was
work done in SVN and it reached a point where it compiles (with warnings about
"register" keyword) .. I have to ask "why bother?" In any case, you might
avoid the PORTEPOCH by following the lead of some Linux distro's which have
arbitrarily called this 0.1.0.



Why bother? Because some other projects depend on it. It has been 
updated not long ago in the subversion repository that is listed there.


And it builds fine with Qt5.


Yuri



Should x11/qimageblitz remain maintained by kde@ ?

2019-04-12 Thread Yuri

Hello kde@,


I am going to re-add the recently removed x11/qimageblitz, attaching the 
approximate shar.


Should I keep MAINTAINER=k...@freebsd.org. or should I maintain it myself?


qimageblitz is a part of the "kdesupport" collection that isn't packaged 
anywhere, including FreeBSD.



See here: https://launchpad.net/kdesupport


Regards,

Yuri


Index: x11/qimageblitz/Makefile
===
--- x11/qimageblitz/Makefile	(revision 495966)
+++ x11/qimageblitz/Makefile	(working copy)
@@ -2,25 +2,36 @@
 # $FreeBSD$
 
 PORTNAME=	qimageblitz
-PORTVERSION=	0.0.6
-PORTREVISION=	3
+DISTVERSION=	${SVN_REVISION}
+PORTEPOCH=	1
 CATEGORIES=	x11
-MASTER_SITES=	KDE/stable/${PORTNAME}
 
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING
+
 MAINTAINER=	k...@freebsd.org
-COMMENT=	Graphical effects and filters library for KDE4
+COMMENT=	Graphical effects and filters library for Qt5
 
-DEPRECATED=		Qt4 has been EOL since december 2015
-EXPIRATION_DATE=	2019-03-15
+FETCH_DEPENDS=	svn:devel/subversion
 
 USE_LDCONFIG=	yes
-USE_QT=		corelib gui qmake_build moc_build uic_build rcc_build
-USES=		cmake qt:4 tar:bzip2
+USE_QT=		core gui widgets qmake_build buildtools_build
+USES=		cmake qt:5
 USE_CXXSTD=	gnu++98
 
-post-patch:
-	${REINPLACE_CMD} -e \
-		's,$${LIB_INSTALL_DIR}/pkgconfig,libdata/pkgconfig,' \
-		${WRKSRC}/blitz/CMakeLists.txt
+SVN_URL=	svn://anonsvn.kde.org/home/kde/trunk/kdesupport/qimageblitz
+SVN_REVISION=	1515099
 
+do-fetch:
+	@if [ "${FORCE_FETCH_ALL}" = "true" ] || ! [ -f "${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX}" ]; then \
+	  ${MKDIR} ${DISTDIR}/${DIST_SUBDIR} && \
+	  cd ${DISTDIR}/${DIST_SUBDIR} && \
+	svn co -r ${SVN_REVISION} ${SVN_URL} ${PORTNAME}-${DISTVERSIONFULL} && \
+	(cd ${PORTNAME}-${DISTVERSIONFULL} && ${RM} -r .svn) && \
+	${FIND} ${PORTNAME}-${DISTVERSIONFULL} -and -exec ${TOUCH} -h -d 1970-01-01T00:00:00Z {} \; && \
+	${FIND} ${PORTNAME}-${DISTVERSIONFULL} -print0 | LC_ALL=C ${SORT} -z | \
+	${TAR} czf ${PORTNAME}-${DISTVERSIONFULL}${EXTRACT_SUFX} --format=bsdtar --uid 0 --gid 0 --options gzip:!timestamp --no-recursion --null -T - && \
+	${RM} -r ${PORTNAME}-${DISTVERSIONFULL}; \
+	fi
+
 .include 
Index: x11/qimageblitz/distinfo
===
--- x11/qimageblitz/distinfo	(revision 495966)
+++ x11/qimageblitz/distinfo	(working copy)
@@ -1,2 +1,3 @@
-SHA256 (qimageblitz-0.0.6.tar.bz2) = 9f102269dec50641440e23a449df215a0db9efef9a3969939d618c5e78a5010f
-SIZE (qimageblitz-0.0.6.tar.bz2) = 57617
+TIMESTAMP = 1554962677
+SHA256 (qimageblitz-1515099.tar.gz) = e7aa2acf4d8c927128c53379cac64984ea1d6e3026e510d252a07eb16c885006
+SIZE (qimageblitz-1515099.tar.gz) = 58035
Index: x11/qimageblitz/pkg-descr
===
Index: x11/qimageblitz/pkg-plist
===
--- x11/qimageblitz/pkg-plist	(revision 495966)
+++ x11/qimageblitz/pkg-plist	(working copy)
@@ -3,6 +3,6 @@
 include/qimageblitz/qimageblitz.h
 include/qimageblitz/qimageblitz_export.h
 lib/libqimageblitz.so
-lib/libqimageblitz.so.4
-lib/libqimageblitz.so.4.0.0
+lib/libqimageblitz.so.5
+lib/libqimageblitz.so.5.0.0
 libdata/pkgconfig/qimageblitz.pc


Fwd: Why does 'import PyQt5.QtCore` require py-sip in runtime?

2018-01-09 Thread Yuri

Hi kde@,


This looks like a bug to me.

I posted it to the python@ ML, since this is found in Python.


Yuri



 Forwarded Message 
Subject:Why does 'import PyQt5.QtCore` require py-sip in runtime?
Date:   Mon, 8 Jan 2018 11:29:22 -0800
From:   Yuri <y...@rawbw.com>
To: freebsd-pyt...@freebsd.org



This import fails in python36 w/out py36-sip installed:

Traceback (most recent call last):
   File "x.py", line 5, in 
     import PyQt5.QtCore
ModuleNotFoundError: No module named 'sip'


py-sip description red like it should be required in the runtime.

But if it is always required for PyQt5.QtCore, why isn't it
automatically included then?


Yuri


___
freebsd-pyt...@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"



Please update cmake to 3.9.1

2017-08-26 Thread Yuri


Thanks!

Yuri



[kde-freebsd] [NEW PORTS] devel/qt4-private-* and devel/qt4-declarative-*

2014-01-12 Thread Yuri

I created ports for those: http://www.freebsd.org/cgi/query-pr.cgi?pr=185653
They are completely missing from Qt4 port tree, while they are part of 
Qt4 distribution.

Please check them in.

Thanks,
Yuri
___
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] Qt4 programs crash on user typing into the edit box

2013-12-07 Thread Yuri
After the recent ports update (from source), all qt programs started to 
crash when the user types:


Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 80c007400 (LWP 101791)]
0x00080375c05c in QApplication::x11ProcessEvent(_XEvent*) () from 
/usr/local/lib/qt4/libQtGui.so.4

(gdb)

As an experiment, I rebuilt x11-toolkits/qt4-gui with debug info, and 
with debug info crashes don't happen.

All dependencies of qt4 were rebuilt.
So now I had to install debug version of qt4-gui as a workaround.

Yuri
___
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] KMix doesn't offer to adjust volume for pulse audio clients

2013-12-07 Thread Yuri
It did create separate channel per pulse audio client, now after ports 
update not any more.


kmix-4.10.5
9.2-STABLE

Yuri
___
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] kde crashes when IBus is present

2013-08-24 Thread Yuri

This started few days ago (or somewhat earlier) with system update.
konsole crashes when I try to type something into it when IBus is 
engaged. kde panel also crashes when I try to launch some command from 
launcher.

Uninstalling ibus packages remedies the problem.

Yuri

kde-4.10.5
ibus-1.4.1
qt-4.8.4
___
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] kde4 desktop freezes when the button kill process is pressed when some window is frozen

2013-08-08 Thread Yuri

This happened many times.
When some X app freezes and its window stays defunct, pressing its 
Close button causes the popup saying KWin: application not responding 
... etc. When I press kill process, the whole desktop freezes and X 
server needs to be killed and restarted at this point.


On the side note, Ctrl-Alt-FN also doesn't work in such state. 
Ctrl-Alt-FN should always work, as this could provide a remedy for such 
freeze. Currently, I have to have another host to connect from to kill Xorg.


Yuri
___
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] Disconnecting or connecting AC to laptop causes sleep state activation

2013-07-19 Thread Yuri

kde4 settings call for sleep after 10 min on battery or 15 min on AC power.
However, merely connecting or disconnecting the power cord causes laptop 
to sleep.


Is this a know problem?

Yuri
___
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] Power button ignores kde4 setting and causes immediate shutdown

2013-07-19 Thread Yuri

On 07/16/2013 11:10, Alberto Villa wrote:
This is expected. There is a sysctl, whose name I don't remember right 
now (should be in the hw.acpi tree), to control power button behavior. 
Disable it if you want the button to work only under KDE.


You are probably talking about hw.acpi.power_button_state. It was S5 
(shutdown). However, when I set it to NONE, it does nothing now.

Isn't it supposed to default to KDE4 when set to NONE?

Yuri
___
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] Power button ignores kde4 setting and causes immediate shutdown

2013-07-15 Thread Yuri
KDE4 on my laptop has power settings by default, and When power button 
is pressed should cause Prompt log out dialog


Instead, the power button causes an immediate reboot. KDE4 shuts down 
disgracefully.


Is this a known issue? Likely FreeBSD-specific? Or should I create KDE4 PR?

Yuri
___
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] Sleep doesn't get initiated when the lid is closed

2013-07-14 Thread Yuri
I experience this issue: when kde4 (and laptop) have just been started, 
closing lid doesn't cause sleep, though kde settings ask for this.
But after I once cause sleep manually (acpiconf -s3 or pressing kde menu 
button), closing lid begins to work.


Is this am known issue?

Yuri
___
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] Process icons on the panel sometimes don't respond

2013-06-10 Thread Yuri

Every now and then I click on the process icon and nothing happens.
After a while and opening the K menu, process icons begin to work again.

Maybe something hangs for a while, or maybe clicks get ignored completely.

Do others experience such problem too?

kde-4.10.3, but this happened with the previous kde releases too, for at 
least few years.

9.1-amd64

Yuri
___
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] Need help on boost update to 1.52.0

2013-02-06 Thread Yuri

On 01/12/2013 05:23, Schaich Alonso wrote:

terminate called after throwing an instance of 'std::runtime_error'
*** [bindings/kolabformat.cxx] Signal 6


I have the same error (during rebuild for kde-4.9 on 9.1), but during 
deskutils/kdepim4 install:

===  Building for libkolabxml-0.8.1
[  4%] Built target xsdbin
[  8%] Generating XSD bindings
terminate called after throwing an instance of 'std::runtime_error'
Abort trap
*** [bindings/kolabformat.cxx] Error code 134
1 error

Do you know what would be the solution?

Yuri
___
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] digikam-2.6.0_1: [PATCH] addition of config option for ENABLE_THUMBS_DB, also thumbnails malfunction when option is set by default

2012-06-28 Thread Yuri

Hi,

This is an essential option in the cmake of digikam that isn't exposed 
in port config.

Default is on, see patch.

The reason why I look into this is that it seems like thumbnails are 
broken with both mysql and sqlite backends, see PR:

https://bugs.kde.org/show_bug.cgi?id=302663

This should be fixed, but in any case ENABLE_THUMBS_DB option is good to 
have (as a potential workaround and in general).


Thanks,
Yuri



=== begin patch ===
--- Makefile.orig   2012-06-28 12:15:51.0 -0700
+++ Makefile2012-06-28 12:24:43.0 -0700
@@ -27,11 +27,12 @@

 LATEST_LINK=   ${PORTNAME}-kde4

-OPTIONS_DEFINE=NLS GPHOTO2 PIMLIBS MYSQL
-OPTIONS_DEFAULT=   GPHOTO2 PIMLIBS
+OPTIONS_DEFINE=NLS GPHOTO2 PIMLIBS MYSQL THUMBSDB
+OPTIONS_DEFAULT=   GPHOTO2 PIMLIBS THUMBSDB

 GPHOTO2_DESC=  Enable gphoto2 camera support
 PIMLIBS_DESC=  Enable address book support
+THUMBSDB_DESC= Enable thumbs DB, high disk consumption and slow 
otherwise


 MAKE_JOBS_SAFE=yes
 USE_BZIP2= yes
@@ -68,6 +69,12 @@
 CMAKE_ARGS+=   -DWITH_KdepimLibs:BOOL=OFF
 .endif

+.if ${PORT_OPTIONS:MTHUMBSDB}
+CMAKE_ARGS+=   -DENABLE_THUMBS_DB=on
+.else
+CMAKE_ARGS+=   -DENABLE_THUMBS_DB=off
+.endif
+
 .if ${PORT_OPTIONS:MMYSQL}
 USE_MYSQL= server
 USE_QT4+=  sql-mysql_run
===end patch===
___
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] Some programs make xorg consume 100% CPU under kde4

2012-02-21 Thread Yuri
I have at least 2 programs: calibre (e-book manager) and qbittorrent, 
which make xorg consume 100% CPU and make system very sluggish when run 
under kde4 (with window effects on).

Problem disappears when the same programs are run under gnome or xfce2.

Anybody knows what may be causing the problem?

Yuri
___
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] After reinstall from scratch, kdm doesn't launch kde4

2012-01-26 Thread Yuri

In 8.2 I used kdm to launch kde4.

After upgrade to 9.0 I removed all packages and reinstalled like this: 
pkg_add -r kde4.
Now kdm is launched with different look for some reason: in launches 
with the Welcome to FreeBSD at xxx and clock below and list of users 
on the left.


kdm also prints to console:
kdm_greet[1518]: Cannot load 
/usr/local/kde4/share/apps/kdm/faces/.default.face: No such file or 
directory

Who is supposed to create this file?

I did this on 2 computers and have this problem on both of them.
kde-4.7.3

Yuri
___
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] FW: After reinstall from scratch, kdm doesn't launch kde4

2012-01-26 Thread Yuri

Here is what fixes the situation: genkdmconf
This is missing from after-install scripts in the package/port 
installing kdm binary. Should be automatic.


Yuri


On 01/26/2012 12:42, Yuri wrote:

In 8.2 I used kdm to launch kde4.

After upgrade to 9.0 I removed all packages and reinstalled like this: 
pkg_add -r kde4.
Now kdm is launched with different look for some reason: in launches 
with the Welcome to FreeBSD at xxx and clock below and list of users 
on the left.


kdm also prints to console:
kdm_greet[1518]: Cannot load 
/usr/local/kde4/share/apps/kdm/faces/.default.face: No such file or 
directory

Who is supposed to create this file?

I did this on 2 computers and have this problem on both of them.
kde-4.7.3

Yuri


___
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] kopete-1.1.3 (from kde-4.7.3) doesn't support webcam

2011-11-29 Thread Yuri

I have a webcam (/dev/video0) through webcamd.

But kopete doesn't see it: Configure-Video screen doesn't show the 
video device.


Yuri
___
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] kopete-1.1.3 (from kde-4.7.3) doesn't support webcam

2011-11-29 Thread Yuri

On 11/29/2011 03:44, Matthias Apitz wrote:

I run kopete 0.12.7 in KDE 3.5.10 (only for tests, normaly I use Pidgin)
and Settings--Configure--Devices brings up the picture from
/dev/video0 created by webcamd; note: the device is created as:

$ ls -l /dev/video0
crw-rw  1 webcamd  webcamd  0x7e Nov 29 12:33 /dev/video0

and you must be in the group 'webcamd' to open it for reading(...)


I am the member of webcamd group. And my video device looks similar:
crw-rw  1 webcamd  webcamd0, 131 Nov 29 03:18 /dev/video0

But it doesn't show up in kopete.

You use kde3, that's maybe the reason. I use kde4.

Yuri
___
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] kopete-1.1.3 (from kde-4.7.3) doesn't support webcam

2011-11-29 Thread Yuri

On 11/29/2011 10:02, Jan Henrik Sylvester wrote:

I can see my webcam in kopete 1.1.3 (KDE 4.7.3).

Did you start webcamd with the -H option to register the device via 
HAL? KDE4 depends on HAL for devices.


I had no -H.
Adding -H doesn't make it to show up in kopete.
But at the same time -H for some reason causes /dev/video0 to not show up.

Yuri
___
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] kopete-1.1.3 (from kde-4.7.3) doesn't support webcam

2011-11-29 Thread Yuri

On 11/29/2011 10:02, Jan Henrik Sylvester wrote:


I can see my webcam in kopete 1.1.3 (KDE 4.7.3).

Did you start webcamd with the -H option to register the device via 
HAL? KDE4 depends on HAL for devices.


Ok, I figured it out. I didn't have hald ruinning. With hald it all 
works fine.


Yuri
___
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] After update to kde-4.7.3 I observer kde4 crashes

2011-11-20 Thread Yuri

This started with some recent update.

The kde4 bar disappears after moving mouse or windows. Desktop also 
disappears.

Sometimes they are restarted by themselves, and sometimes not.

Yuri
___
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] Calendar displayed wrong after the latest update to kde4-4.7.2

2011-11-03 Thread Yuri

Please see the screenshot here: http://i.imgur.com/QvMlm.png

Two problems (obviously)
1. empty space on the right
2. texts are squeezed and overlap each other

Yuri
___
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] kde4 complains during startup: The Audio playback device default does not work, falling back to default

2011-10-28 Thread Yuri

Such message flows up every time after kde4 is started on my 8.2 STABLE.
Audio actually works fine after this.

Yuri
___
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] Delay in the end of the splash screen

2011-10-28 Thread Yuri
I am observing such delay. When the last button in the splash shows up 
it hangs this way for a long while (~2-3 mins) before kde4 work screen 
appears.
This started from some update in the last few months (most likely in 
Jul-Sep).


Yuri
___
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] FYI: kmixer got broken in 4.7.2

2011-10-26 Thread Yuri

I filed the PR: https://bugs.kde.org/show_bug.cgi?id=284945

Yuri
___
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] All yawp applets and the wallpaper disappeared from the desktop after kde4 update

2011-10-24 Thread Yuri
Wallpaper became kde4 standard one instead of selected by user, and 
applets are just gone.


Yuri
___
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] Why 'Regional Language' item in 'System Settings' is missing?

2011-01-13 Thread Yuri
This item is missing so I can't set up keyboard switch.
kdeaccessibility-4.5.5 is installed where I think it is supposed to be 
coming from.

How to troubleshoot?
Yuri
___
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 x11/kdebase4-runtime fails to compile

2010-11-19 Thread Yuri
I get this message:
-- The C compiler identification is GNU^M
-- The CXX compiler identification is GNU^M
-- Check for working C compiler: /usr/bin/cc^M
-- Check for working C compiler: /usr/bin/cc -- works^M
-- Detecting C compiler ABI info^M
-- Detecting C compiler ABI info - done^M
-- Check for working CXX compiler: /usr/bin/c++^M
-- Check for working CXX compiler: /usr/bin/c++ -- works^M
-- Detecting CXX compiler ABI info^M
-- Detecting CXX compiler ABI info - done^M
CMake Error at /usr/local/share/cmake/Modules/FindKDE4.cmake:98 (MESSAGE):^M
   ERROR: cmake/modules/FindKDE4Internal.cmake not found in^M
Call Stack (most recent call first):^M
   CMakeLists.txt:8 (find_package)^M
^M
^M
CMake Warning (dev) in CMakeLists.txt:^M
   No cmake_minimum_required command is present.  A line of code such as^M
^M
 cmake_minimum_required(VERSION 2.8)^M
^M
   should be added at the top of the file.  The version specified may be 
lower^M
   if you wish to support older CMake versions for this project.  For more^M
   information run cmake --help-policy CMP.^M
This warning is for project developers.  Use -Wno-dev to suppress it.^M
^M
-- Configuring incomplete, errors occurred!^M
*** Error code 1^M
^M
Stop in /usr/ports/x11/kdebase4-runtime.^M
*** Error code 1^M

8.1-STABLE

Yuri
___
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] Re: Port x11/kdebase4-runtime fails to compile

2010-11-19 Thread Yuri
On 11/19/2010 03:00, N V wrote:
 Hi, Yuri.

 I've got the same message some time ago on 8.1-STABLE-i368 too. This was 
 because I've installed kdelibs4 from package, not from port.
 For some reason, kdelibs4 package doesn't install some scripts 
 (FindKDE4Internal.cmake for example, as mentioned in your error log). Try 
 recompiling kdelibs4.
 Do u compile this port with default one (gcc 4.2.1), or with smth. else?


Thanks Vans,

I observe the same behavior. kdelibs4 package appears to be broken but 
installing from port works.
I use default version of gcc 4.2.1

Yuri

___
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] IBus icon size is often wrong in kde4

2010-10-31 Thread Yuri
I have current KDE4 + the ibus ports installed (see below).
Sporadically, after some system updates, I see that ibus icon in the 
tray is scaled to be much larger and only its lower left corner is 
displayed.
But after some other updates it becomes normal again. I see this 
independently on 2 desktop machines.

This is some bug with KDE or ibus ports.

Yuri

ibus-1.3.5  Intelligent Input Bus for Linux / Unix OS
ibus-m17n-1.3.0 The m17n IMEngine for IBus framework
ibus-qt-1.3.0   IBus input method module for Qt4
ibus-table-1.3.0.20100621 Table based input method framework for IBus
zh-ibus-chewing-1.3.5.20100706 Chewing engine for IBus
zh-ibus-pinyin-1.3.8 PinYin engine for IBus

___
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] kdehier4 fails to install

2010-09-30 Thread Yuri
Hello,

I am getting this error log:
===  Checking if misc/kdehier4 already installed^M
/bin/ln -sf /usr/local/libdata/ldconfig /usr/local/kde4/libdata/^M
/bin/ln -sf /usr/local/libdata/ldconfig32 /usr/local/kde4/libdata/^M
/bin/ln -sf /usr/local/libdata/pkgconfig /usr/local/kde4/libdata/^M
/bin/ln -sf /usr/local/share/PolicyKit/policy 
/usr/local/kde4/share/PolicyKit/^M
ln: /usr/local/kde4/share/PolicyKit//policy: Operation not permitted^M
*** Error code 1^M

Yuri
___
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] Why compositing gets disabled in KDE4?

2010-08-22 Thread Yuri
It worked before on the same system (~3 months ago). But after some 
updates of everything (kernel/nvidia driver/kde4) it gets disabled from 
kde4 startup. Pressing 'Resume Compositing' doesn't help.

Message pops up that some application disabled compositing, press 
Alt-Shift-F12. But this doesn't help either.

Any idea why this feature is broken?

FreeBSD-8.1-STABLE amd64
nvidia-driver-195.36.15
GeForce 9400GT
kde-4.4.5

Yuri
___
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] graphics/kuickshow-kde4: only shows black window

2010-08-19 Thread Yuri
On 08/18/2010 13:15, Max Brazhnikov wrote:
 Have you reported this upstream?


https://bugs.kde.org/show_bug.cgi?id=248431

Yuri
___
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] Fwd: [Bug 248431] kuickshow only shows black window

2010-08-19 Thread Yuri

Hi,

Please add this suggested patch to graphics/imlib.

Thank you,
Yuri

 Original Message 
Subject:[Bug 248431] kuickshow only shows black window
Date:   Thu, 19 Aug 2010 23:26:54 +0200 (CEST)
From:   Carsten Pfeiffer pfeif...@kde.org
Reply-To:   bug-cont...@bugs.kde.org
To: y...@tsoft.com



https://bugs.kde.org/show_bug.cgi?id=248431





--- Comment #1 from Carsten Pfeifferpfeiffer kde org   2010-08-19 23:26:53 ---
FreeBSD probably ships an unpatched version of Imlib1. See this discussion
https://bugs.launchpad.net/ubuntu/+source/imlib/+bug/70367
The patch to apply is this one:
http://launchpadlibrarian.net/4966410/imlib-max-24bpp.diff

--
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You reported the bug.

___
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] graphics/kuickshow-kde4: only shows black window

2010-08-16 Thread Yuri
When Dolphin in kde4 launches kuickshow it only shows black window when 
I am trying to see the photo. Same when I call it manually.
kuickshow-0.9.1.4.4.0_1
8.1-STABLE amd64

Yuri
___
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] kdeutils4 are broken on 8.1-STABLE-amd64?

2010-08-15 Thread Yuri
When I try doing 'make' in misc/kdeutils4 I get this message:
===  kdeutils-4.4.5 is marked as broken: does not build on 6.x. See 
http://miwi.bsdcrew.de/2009/01/30/status-report-kde-42-and-freebsd-64-support/.

It doesn't make sense: I am not on 6.x, but on 8.1.

Yuri
___
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] kdeutils4 are broken on 8.1-STABLE-amd64?

2010-08-15 Thread Yuri

 Hmm, I can't reproduce:

 [tethys]:/usr/ports/misc/kdeutils4  sudo make
 ===   Vulnerability check disabled, database not found
 ===   License check disabled, port has not defined LICENSE
 ===   Found saved configuration for kdeutils-4.4.3
 ===   Extracting for kdeutils-4.4.5
 =  MD5 Checksum OK for KDE/kdeutils-4.4.5.tar.bz2.
 =  SHA256 Checksum OK for KDE/kdeutils-4.4.5.tar.bz2.
 /bin/mkdir -p /usr/ports/misc/kdeutils4/work/kdeutils-4.4.5/build
 ===   Patching for kdeutils-4.4.5
 ...

 [tethys]:/usr/ports/misc/kdeutils4  uname -a
 FreeBSD tethys.ringofsaturn.com 8.1-STABLE FreeBSD 8.1-STABLE #1: Mon
 Jul 26 14:08:07 CDT 2010
 r...@tethys.ringofsaturn.com:/usr/obj/usr/src/sys/SATURN  amd64
 [tethys]:/usr/ports/misc/kdeutils4

 Are you using the Area51 ports or the normal ports tree?

 Rusty Nejdl
 http://networking.ringofsaturn.com


I found the reason: I had /usr/include missing. This caused such error 
for some reason. I think it is a bug in ports makefiles that produces 
the wrong error message.

Yuri

___
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] [kde4][soundmixer] Why 'Capture' check boxes are read-only in kmix dialog box ?

2010-07-18 Thread Yuri
Here is the original PR.
https://bugs.kde.org/show_bug.cgi?id=223460
Is is known why Capture check boxed aren't working?

kdemultimedia-4.4.5
FreeBSD-8.1


Yuri
___
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] How to kill process if X is frozen during fancy KDE4 windows effects?

2010-07-12 Thread Yuri
I run KDE4 with nvidia card. KDE4 desktop effects are on, so when window 
comes back from the icon it goes through some motion slowly blowing out 
from the icon.

Very rarely, but screen freezes during such motion. Mouse still moves, 
window that was blowing out of the icon stays in the shape of curved 
triangle. Keyboard is frozen, Ctrl-Alt-FN doesn't switch to black 
terminal. I can only connect to the host from outside and kill the 
unfortunate X-client that caused the hang. After this it works just fine 
again.

My question is: what to do if there is no other host on the net? How to 
kill the process?

Yuri
___
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] How to kill process if X is frozen during fancy KDE4 windows effects?

2010-07-12 Thread Yuri
On 07/12/2010 18:25, Mina R Waheeb wrote:
 This sounds like new HD vega cards, I think you need to track the 
 logs. or provide any information that maybe could help to identify the 
 problem. I had almost the same problem with my ATI HD card, with the 
 latest update of XORG and -CURRENT it just working fine (with visual 
 effects enabled). In most of the cases happended to me the vega card 
 totally hang the mouse still move but it not responding to repaint 
 anything so you can't event switch to terminal. So if you have some 
 luck hit the power button and wait the machine to shutdown or just 
 disable the visual effects :)
 Regards,
 Mina R Waheeb

It's not Vega card, it's 9400GT card.

I had this happen to me at least 3 times over the last 6 months. But 
killing the process always helps. Luckily I have another hosts on my net.

Yuri
___
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] After upgrading to kde-4.4.3 screen goes black after the kde4 splash screen

2010-05-24 Thread Yuri
I found that renaming ~/.kde4 makes things better and kde4 boots like 
for the first time. But how do I get my previous settings back?
Still even with the fresh ~/.kde4 screen looks funny: Desktop Folder 
doesn't have any color so only text is visible, same with the task panel.
After I added yaWP weather plasmoid desktop turned black.

Do you have kde-4.4.3 working?

Yuri
___
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] kdebase4-runtime doesn't pull in libssh if compat7x is installed

2010-05-23 Thread Yuri Pankov
Hi,

x11/kdebase4-runtime doesn't in pull security/libssh as dependency if we
have misc/compat7x installed (installs libssh.so.4 as well, in different
location). Detection of security/libssh could be changed to
${LOCALBASE}/include/libssh/libssh.h. Patch attached.


Thanks,
Yuri
Index: Makefile
===
RCS file: /home/ncvs/ports/x11/kdebase4-runtime/Makefile,v
retrieving revision 1.235
diff -u -r1.235 Makefile
--- Makefile21 May 2010 16:22:40 -  1.235
+++ Makefile24 May 2010 02:27:58 -
@@ -8,7 +8,7 @@
 
 PORTNAME=  kdebase-runtime
 PORTVERSION=   ${KDE4_VERSION}
-PORTREVISION=  0
+PORTREVISION=  1
 CATEGORIES=x11 kde
 MASTER_SITES=  ${MASTER_SITE_KDE}
 MASTER_SITE_SUBDIR=${KDE4_BRANCH}/${PORTVERSION}/src
@@ -17,10 +17,11 @@
 MAINTAINER=k...@freebsd.org
 COMMENT=   Basic applications for the KDE system
 
+BUILD_DEPENDS= ${LOCALBASE}/include/libssh/libssh.h
 LIB_DEPENDS=   xine.1:${PORTSDIR}/multimedia/libxine \
slp.1:${PORTSDIR}/net/openslp \
-   attica.0:${PORTSDIR}/x11-toolkits/attica \
-   ssh.4:${PORTSDIR}/security/libssh
+   attica.0:${PORTSDIR}/x11-toolkits/attica
+RUN_DEPENDS=   ${LOCALBASE}/include/libssh/libssh.h
 
 USE_KDE4=  kdelibs kdeprefix kdehier automoc4 #pimlibs
 KDE4_BUILDENV= yes
___
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] Why kde4.4 isn't available yet?

2010-03-26 Thread Yuri
4.4 was released in the early February. And now 4.4.1 is available.
When they will be in the ports?

Yuri
___
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] Why I can't enable compositing option in KDE4?

2010-02-17 Thread Yuri
I have the latest NVidia driver and the card is 9400GT.

In Configure Window Behavior screen I first check Enable desktop 
effects.
Then it says that Compositing is temporarily disabled. When I click 
Resume Compositing sometimes nothing happens at all. But sometimes 
after few clicks it says that it's now enabled. But after that when I 
open this screen again it says it is temporarily disabled again. No 
explanation is given.

xorg.conf has this section:
Section Extensions
  Option Composite Enable
  Option MIT-SHM Enable
EndSection

And Xorg.log acknowledges this:
(**) Extension Composite is enabled
(**) Extension MIT-SHM is enabled

What's wrong?
Compositing and effects used to work almost fine before. Except for the 
black windows problem.

Yuri
___
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] 'Battery monitor' desktop widget in kde4 doesn't show battery status

2009-12-11 Thread Yuri
On my laptop it shows a battery with a red cross.
While apm(8) shows battery status successfully.

kde-4.3.4
8.0-STABLE

Yuri
___
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] KDE4: All settings lost after kde upgrade with portupgrade

2009-11-30 Thread Yuri
I had many things, like widgets on the desktop, set up in kde4 2 months ago.
Now I did portupgrade and kde4 starts like it's the first time, with 
only default Desktop Folder widget on the desktop.

Why desktop setup information gets lost?

Yuri

___
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] KDE4: All settings lost after kde upgrade with portupgrade

2009-11-30 Thread Yuri
Rusty Nejdl wrote:
 Yuri,

 Portupgrade wouldn't change any of your settings since those are stored in
 your home directory.   The only 2 ideas I have at present is that you
 somehow lost your .kde4 directory or you logged in as a different user.  I
 upgraded 2 PC's without issue over the weekend, one 32 bit and one 64 bit.

 Sincerely,
 Rusty Nejdl
 http://networking.ringofsaturn.com
   


No, user is the same, also the same is the boot procedure.
My guesses:
1. kde4 code has changed and maybe is incompatible with the old structure.
2. kde4 was upgraded on the system that was running kde4 at the time of 
upgrade, and there are some incompatibilities of interfaces of old/new 
utilities caused some mixup.

Yuri

___
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 kdelibs4 fails to compile on 72-STABLE

2009-10-01 Thread Yuri
I kep getting this error:

 failure log 
[  6%] Building CXX object solid/solid/CMakeFiles/solid.dir/device.o^M
Scanning dependencies of target kdecore^M
Generating toolbutton.moc^M
[  6%] Building CXX object 
solid/solid/CMakeFiles/solid_static.dir/device.o^M
[  6%] Building CXX object 
kdecore/CMakeFiles/kdecore.dir/kdecore_automoc.o^M
[  6%] Building CXX object 
kdecore/CMakeFiles/kdecore.dir/compression/kgzipfilter.o^M
Generating webview.moc^M
In file included from 
/mnt/external/ports/x11/kdelibs4/work/kdelibs-4.3.1/kdecore/compression/kgzipfilter.cpp:24:^M
/usr/local/include/kdebug.h:183: error: declaration of 'operator' as 
non-function^M
/usr/local/include/kdebug.h:183: error: expected ';' before '(' token^M
/usr/local/include/kdebug.h:193: error: expected `;' before 'kdbgstream'^M
/usr/local/include/kdebug.h:193: error: declaration of 'operator' as 
non-function^M
/usr/local/include/kdebug.h:193: error: expected ';' before '(' token^M
/usr/local/include/kdebug.h:202: error: expected `;' before 'void'^M
/usr/local/include/kdebug.h:240: error: expected ',' or '...' before '' 
token^M
/usr/local/include/kdebug.h:240: error: ISO C++ forbids declaration of 
'QCString' with no type^M
/usr/local/include/kdebug.h:240: error: 'kdbgstream 
kdbgstream::operator(int)' cannot be overloaded^M

___
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] Missing dependency: deskutils/kdeplasma-addons - facile

2009-08-17 Thread Yuri
While recompiling kdeplasma-addons I am getting themessage:

[ 92%] Built target kalzium_automoc
make: don't know how to make /usr/local/lib/ocaml/facile/facile.cmxa. Stop
*** Error code 2

Installing facile fixes the problem.

Yuri

___
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] Some windows in kde4 sometimes become black after resize/maximize

2009-06-11 Thread Yuri
David Naylor wrote:
 Have you tried:
  - The latest nvidia-driver?
   
Yes, still a problem.
  - Toggling Enable direct rendering?
   
This fixes it, but w/out direct rendering performance suffers a lot.
  - Toggling Use VSync?
  - Changing the OpenGL mode?
  - Changing the Texture filter?
   
Will try
 Disabling direct rendering fixed some rendering glitches for me (on a 
 7600GT).  
 Now it runs without flaw.  
   

Yes, but again performance is very poor without direct rendering.

Yuri

___
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] Some windows in kde4 sometimes become black after resize/maximize

2009-06-06 Thread Yuri
I use current kde4 on 7.2-PRERELEASE with NVidia 9400GT card, nvidia 
driver and with compositing type=OpenGL.
Sometimes after window is maximized or resized it becomes black.

Changing compositing type to XRender and back fixes the problem for a while.
And then it happens again.

Yuri

___
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] kdebase-workspace-4.2.2_1 build (under portupgrade) hangs

2009-06-05 Thread Yuri
I tried several times, and build hangs with this log:

[ 99%] Built target kdeinit_kmenuedit
Scanning dependencies of target kmenuedit
[ 99%] Building CXX object 
kmenuedit/CMakeFiles/kmenuedit.dir/kmenuedit_dummy.o
Linking CXX executable kmenuedit
[ 99%] Built target kmenuedit

Here is the relevant part of pstree output:
 |-+= 01253 root login [pam] (login)
 | \-+= 01284 root -bash (bash)
 |   \-+= 26166 root /bin/sh /home/yuri/bin/my-portupgrade
 | |-+- 26167 root ruby18: portupgrade: [1/15] 
kdebase-workspace-4.2.2_1 (ruby18)
 | | \-+- 46768 root /usr/bin/script -qa 
/tmp/portupgrade20090605-26167-1q0ngi4-0 env UPGRADE_TOOL=portupgrade 
UPGRADE_PORT=kdebase-workspace-4.2.2_1 UPGRADE_PORT_VER=4.2.2_1 make 
FETCH_BEFORE_ARGS=-q
 | |   \-+= 46770 root make FETCH_BEFORE_ARGS=-q
 | | \-+- 48464 root [sh]
 | |   \-+- 48465 root [sh]
 | | \-+- 48467 root make -f Makefile -j8 all
 | |   \-+- 48470 root sh -e
 | | \-+- 48472 root make -f CMakeFiles/Makefile2 all
 | |   \-+- 49746 root sh -e
 | | \-+- 49764 root make -f 
libs/ksysguard/lsofui/CMakeFiles/lsofui_automoc.dir/build.make 
libs/ksysguard/lsofui/CMakeFiles/lsofui_automoc.dir/build
 | |   \-+- 49770 root sh -e
 | | \-+- 49772 root [automoc4]
 | |   \--- 49781 root [automoc4]
 | \--- 26168 root tee portupgrade.log

pid49781 is in IN+ state.
pid49772 is in SN+ state.

Yuri

___
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] kdebase-workspace-4.2.2_1 build (under portupgrade) hangs

2009-06-05 Thread Yuri
Martin Wilke wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 RELENG_7_2 ?
   

yes. 7.2-PRERELEASE

Yuri
___
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] kdebase-workspace-4.2.2_1 build (under portupgrade) hangs

2009-06-05 Thread Yuri
Martin Wilke wrote:
 now issus please upgrade to RELENG_7. that's solved the problem
   

Actually my cvsup file has RELENG_7, last updated May 8, but after 
compile it shows as 7.2-PRERELEASE.
This one has this problem.
Did you mean just more recently updated RELENG_7?

Yuri
___
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] kde4.2.0 and older soprano aren't compatible

2009-03-01 Thread Yuri
I have latest kde-4.2.0 and it doesn't start properly, I get errors like 
these:
QStringList 
Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const 
Solid::DeviceInterface::Type)  error:  
org.freedesktop.DBus.Error.ServiceUnknown
/usr/local/kde4/bin/krunner(17149) Error in thread 735056128 : 
org.freedesktop.DBus.Error.ServiceUnknown - The name 
org.kde.nepomuk.services.nepomukstorage was not provided by any .service 
files
/usr/local/kde4/bin/krunner(17149) Error in thread 735056128 : 
QLocalSocket::connectToServer: Invalid name
QStringList 
Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const 
Solid::DeviceInterface::Type)  error:  
org.freedesktop.DBus.Error.ServiceUnknown
QStringList 
Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const 
Solid::DeviceInterface::Type)  error:  
org.freedesktop.DBus.Error.ServiceUnknown
QStringList 
Solid::Backends::Hal::HalManager::findDeviceByDeviceInterface(const 
Solid::DeviceInterface::Type)  error:  
org.freedesktop.DBus.Error.ServiceUnknown

This thread http://forum.kde.org/nepomuk-on-kde-4-2-rc-t-26334.html 
suggests that it's very likely that updating soprano helps.
Currently ports have soprano-2.1.67 and the latest is soprano-2.2.2.

Yuri.

___
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] 4.2.0: many things are broken

2009-02-14 Thread Yuri
I built 4.2.0 (because there are no binary packages on FTP) and I have 
multiple problems:
* Desktop Folder shows nothing.
* Applets showing other folders do not have a scrollbar.
* bottom panel is supposed to be gray but is colorless.
* plasma workspace keeps crashing when adding Folder Applet

What is likely to be broken?
Why there are no binaries for kde-4.1.0 and kde-4.2.0?


Yuri
___
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] 20090209: entry in /usr/ports/UPDATING causes kde4 to be unusable for a long while

2009-02-13 Thread Yuri
This destroys kde4 and then takes forever to rebuild it on the client 
machine.
This makes machine unusable for a long while for users who use kde4.

You should instead recommend:
# pkg_add -r kde-4.2.0

Currently there are no binary kde-4.2.0 packages:
Error: FTP Unable to get 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/Latest/kde-4.2.0.tbz:
 
File unavailable (e.g., file not found, no access)
None for 8.X either.

So you should first make sure there are binary packages on FTP and
after this check ports tree in and post UPDATING entry.

This would have caused only minimal disruption for many users.

Yuri


--

20090209:
  AFFECTS: users of multimedia/phonon, x11/kdelibs4, x11/kdebase4*,
  deskutils/kdepimlib4, deskutils/kdepim4, devel/automoc4
  AUTHOR: k...@freebsd.org

  KDE4 has been updated from 4.1.4 to 4.2.0. A number of applications
  have been moved between packages. The easiest way to avoid various
  problems during update is to delete all KDE-4.1.4 ports and install
  KDE-4.2.0.

 # pkg_delete -f kde\*4.1.4\* automoc4-\*
 # portmaster -a (or portupgrade -a)
 # cd ${PORTSDIR}/x11/kde4  make config  make install clean

___
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] Error building devel/kdesdk3

2008-06-09 Thread Yuri
See the log blow. I am running 70-STABLE.

Yuri

...
Making all in libgettext
gmake[4]: Entering directory 
`/usr/ports/devel/kdesdk3/work/kdesdk-3.5.8/kbabel/common/libgettext'
flex -+ -opofiles.cc ./pofiles.ll
/bin/sh /usr/local/bin/libtool --silent --tag=CXX   --mode=compile c++ 
-DHAVE_CONFIG_H -I. -I../../..   -D_THREAD_SAFE -pthread 
-DQT_THREAD_SUPPORT   -I/usr/local/include -I/usr/local/include  
-I/usr/local/include -D_GETOPT_H -D_THREAD_SAFE   -Wno-long-long -Wundef 
-Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -O2 
-fno-strict-aliasing -pipe -Wno-non-virtual-dtor -fno-exceptions 
-fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST 
-DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION  -MT pofiles.lo -MD -MP 
-MF .deps/pofiles.Tpo -c -o pofiles.lo pofiles.cc
pofiles.cc:315: error: no 'int GettextBaseFlexLexer::yywrap()' member 
function declared in class 'GettextBaseFlexLexer'
pofiles.cc: In member function 'virtual int GettextBaseFlexLexer::yylex()':
pofiles.cc:619: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:619: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc:620: error: 'yyensure_buffer_stack' was not declared in this 
scope
pofiles.cc:777: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:777: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc:800: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:800: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In constructor 
'GettextBaseFlexLexer::GettextBaseFlexLexer(std::istream*, std::ostream*)':
pofiles.cc:919: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:920: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc:921: error: 'yy_buffer_stack_max' was not declared in this scope
pofiles.cc: In destructor 'virtual 
GettextBaseFlexLexer::~GettextBaseFlexLexer()':
pofiles.cc:933: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:933: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'virtual void 
GettextBaseFlexLexer::switch_streams(std::istream*, std::ostream*)':
pofiles.cc:943: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:943: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'int 
GettextBaseFlexLexer::yy_get_next_buffer()':
pofiles.cc:995: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:995: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'void GettextBaseFlexLexer::yyunput(int, 
char*)':
pofiles.cc:1191: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1191: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'int GettextBaseFlexLexer::yyinput()':
pofiles.cc:1231: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1231: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'virtual void 
GettextBaseFlexLexer::yyrestart(std::istream*)':
pofiles.cc:1294: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1294: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc:1295: error: 'yyensure_buffer_stack' was not declared in this 
scope
pofiles.cc:1300: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1300: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'virtual void 
GettextBaseFlexLexer::yy_switch_to_buffer(yy_buffer_state*)':
pofiles.cc:1316: error: 'yyensure_buffer_stack' was not declared in this 
scope
pofiles.cc:1317: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1317: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc:1320: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1320: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc:1328: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1328: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'void 
GettextBaseFlexLexer::yy_load_buffer_state()':
pofiles.cc:1341: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1341: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'virtual void 
GettextBaseFlexLexer::yy_delete_buffer(yy_buffer_state*)':
pofiles.cc:1387: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1387: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'void 
GettextBaseFlexLexer::yy_init_buffer(yy_buffer_state*, std::istream*)':
pofiles.cc:1416: error: 'yy_buffer_stack' was not declared in this scope
pofiles.cc:1416: error: 'yy_buffer_stack_top' was not declared in this scope
pofiles.cc: In member function 'void 
GettextBaseFlexLexer::yy_flush_buffer(yy_buffer_state*)':
pofiles.cc:1448: error

Re: [kde-freebsd] Kbtv2 beta2 uploaded

2008-02-25 Thread Yuri Pankov
On Wed, Feb 20, 2008 at 10:04:42PM +0100, Danny Pansters wrote:
 The second beta, v1.92 is available for testing.
 
 http://freebsd.ricin.com/kbtv2
 
 In v1.92 several first-run bugs are fixed, a few other known bugs are gone, 
 and saa tuning works again (freebsd6.3), including after a cold boot (at the 
 small expense of having to use a rc script to ensure tuner init which 
 apparently needs to be s l o w). Also found some bugs in the saa backend 
 tuning code.
 
 And it now appears that switching from pwc backend back to TV backend (saa, 
 cxm) that the ability to tune does *not* get lost anymore. I like that, a bug 
 that just disappears :) Accidentally fixed I reckon.
 
 I may also have fixed the crashing pwc backend when the framesize is changed, 
 but I haven't tested that yet. 
 
 For beta3 I'm going to do some work on pwc (I'm also eyeing the luigi 
 framework so that all the usb webcam support we have can be used but I think 
 this will be after v2.0). Beta4 should bring in FreeBSD7 support, and after 
 that -- and a beta5 if needed -- one or two RC's to test/fix amd64.
 
 Cheers,
 
 Dan

Hi Dan.

I'm now trying to build kbtv2 v1.92 on -CURRENT/amd64 with SAA kmod.
Along with `incorrect number of args to bus_setup_intr' fix (I guess
that's FreeBSD 7 support coming in beta4 :-)), could you please define
NO_WERROR in kmod/saa/kmod/Makefile to allow it to build on -CURRENT
with -Werror enabled? 

Following messages are displayed during boot (saa_tuner=YES in
/etc/rc.conf):
iicbus0: START: bus error (status 0x9 loop:12)
WARNING pid 734 (initial thread): ioctl sign-extension ioctl
c0044d00

Channel tuning works fine, though there's no colour and sound. I've
tried selecting different TV standards in Hardware-Configure (tuner
type is `Philips MK3'), with no success. Any hints?

saa0:
0x1131  Philips Semiconductors
0x7133  Philips SAA7133 AV broadcast decoder
0x1461  AverMedia Technologies Inc
0x9715  AVerTV Studio 307

[EMAIL PROTECTED]:1:7:0:class=0x048000 card=0x97151461 chip=0x71331131
rev=0xd1 hdr=0x00
vendor = 'Philips Semiconductors'
device = 'Philips SAA7135hl ENLTV TV/Radio Tuner'
class  = multimedia

Thank you for nice program :-)


WBR,
Yuri
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd


Re: [kde-freebsd] Kbtv2 beta2 uploaded

2008-02-25 Thread Yuri Pankov
On Mon, Feb 25, 2008 at 11:42:29PM +0300, Yuri Pankov wrote:
 On Wed, Feb 20, 2008 at 10:04:42PM +0100, Danny Pansters wrote:
  The second beta, v1.92 is available for testing.
  
  http://freebsd.ricin.com/kbtv2
  
  In v1.92 several first-run bugs are fixed, a few other known bugs are gone, 
  and saa tuning works again (freebsd6.3), including after a cold boot (at 
  the 
  small expense of having to use a rc script to ensure tuner init which 
  apparently needs to be s l o w). Also found some bugs in the saa backend 
  tuning code.
  
  And it now appears that switching from pwc backend back to TV backend (saa, 
  cxm) that the ability to tune does *not* get lost anymore. I like that, a 
  bug 
  that just disappears :) Accidentally fixed I reckon.
  
  I may also have fixed the crashing pwc backend when the framesize is 
  changed, 
  but I haven't tested that yet. 
  
  For beta3 I'm going to do some work on pwc (I'm also eyeing the luigi 
  framework so that all the usb webcam support we have can be used but I 
  think 
  this will be after v2.0). Beta4 should bring in FreeBSD7 support, and after 
  that -- and a beta5 if needed -- one or two RC's to test/fix amd64.
  
  Cheers,
  
  Dan
 
 Hi Dan.
 
 I'm now trying to build kbtv2 v1.92 on -CURRENT/amd64 with SAA kmod.
 Along with `incorrect number of args to bus_setup_intr' fix (I guess
 that's FreeBSD 7 support coming in beta4 :-)), could you please define
 NO_WERROR in kmod/saa/kmod/Makefile to allow it to build on -CURRENT
 with -Werror enabled? 
 
 Following messages are displayed during boot (saa_tuner=YES in
 /etc/rc.conf):
 iicbus0: START: bus error (status 0x9 loop:12)
 WARNING pid 734 (initial thread): ioctl sign-extension ioctl
 c0044d00
 
 Channel tuning works fine, though there's no colour and sound. I've
 tried selecting different TV standards in Hardware-Configure (tuner
 type is `Philips MK3'), with no success. Any hints?

PEBKAC. SECAM works fine. Though still no sound (I just hope I've
checked EVERYTHING this time).

 
 saa0:
 0x1131Philips Semiconductors
 0x7133Philips SAA7133 AV broadcast decoder
 0x1461AverMedia Technologies Inc
 0x9715AVerTV Studio 307
 
 [EMAIL PROTECTED]:1:7:0:class=0x048000 card=0x97151461 chip=0x71331131
 rev=0xd1 hdr=0x00
 vendor = 'Philips Semiconductors'
 device = 'Philips SAA7135hl ENLTV TV/Radio Tuner'
 class  = multimedia
 
 Thank you for nice program :-)
 
 
 WBR,
 Yuri

TIA,
Yuri
___
kde-freebsd mailing list
kde-freebsd@kde.org
https://mail.kde.org/mailman/listinfo/kde-freebsd