[kde-freebsd] CURRENT && Konqueror 3.5.10: not using Flash9 in all sites

2009-05-22 Thread Matthias Apitz

Hello,

I've a relatively actual CURRENT on my laptop and configured Flash 9 for
firefox3 as described in

http://freebsd.kde.org/howtos/konqueror-flash.php
http://crnl.org/blog/2008/11/01/flash-9-for-freebsd-71

Firefox3 plays nicely the flash9 stream from (for example):

http://www.telesurtv.net/noticias/canal/senalenvivo.php

Konqueror is showing the plugin in 
~/.mozilla/plugins/npwrapper.libflashplayer.so
as explained in http://freebsd.kde.org/img/pics/flash2.png and also a
'about:plugins' shows support for Flash9, but with the shared object
libkmplayerpart.so; it even plays nicely the movies from YouTube, but
can't play the above TeleSur channel (in which I'm more interested in
than in YouTube :-)). In www.telesurtv.net it always ask me the install
Flash9 from Adobe. Any ideas what could be the reason for this?

I can live with Firefox3, but would prefer Konqueror for this.

Thx in advance

matthias

-- 
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e  - w http://www.unixarea.de/
People who hate Microsoft Windows use Linux but people who love UNIX use 
FreeBSD.
___
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] ports/134863: [PATCH] math/eigen: use malloc instead of posix_memalign, fix on 6.x

2009-05-22 Thread edwin
Synopsis: [PATCH] math/eigen: use malloc instead of posix_memalign, fix on 6.x

Responsible-Changed-From-To: freebsd-ports-bugs->kde
Responsible-Changed-By: edwin
Responsible-Changed-When: Fri May 22 15:30:15 UTC 2009
Responsible-Changed-Why: 
Over to maintainer (via the GNATS Auto Assign Tool)

http://www.freebsd.org/cgi/query-pr.cgi?pr=134863
___
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] math/eigen: use malloc instead of posix_memalign, fix on 6.x

2009-05-22 Thread Dmitry Marakasov

>Submitter-Id:  current-users
>Originator:Dmitry Marakasov
>Organization:  
>Confidential:  no 
>Synopsis:  [PATCH] math/eigen: use malloc instead of posix_memalign, fix 
>on 6.x
>Severity:  non-critical
>Priority:  low
>Category:  ports 
>Class: sw-bug
>Release:   FreeBSD 8.0-CURRENT i386
>Environment:
System: FreeBSD hades.panopticon 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Thu Apr 30 
06:41:20 MSD 2009
>Description:
eigen2 uses aligned malloc routine (ei_aligned_malloc), which currently relies 
on posix_memalign. The latter is not available on 6.x, so dependent ports may 
fail to build (example is upcoming science/avogadro, ports/134710).

FreeBSD malloc, however, is guaranteed to return 16-byte aligned pointers, so 
it may safely br used instead of posix_memalign, on 6.x as well.

The patch mekes EIGEN_MALLOC_ALREADY_ALIGNED defined on FreeBSD, so malloc is 
used.

Added file(s):
- files/patch-Eigen-src-Core-util-Memory.h

Port maintainer (k...@freebsd.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- eigen-2.0.0_3.patch begins here ---
Index: Makefile
===
RCS file: /home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/math/eigen2/Makefile,v
retrieving revision 1.7
diff -u -u -r1.7 Makefile
--- Makefile20 May 2009 23:09:32 -  1.7
+++ Makefile22 May 2009 14:23:17 -
@@ -6,7 +6,7 @@
 
 PORTNAME=  eigen
 DISTVERSION=   2.0.0
-PORTREVISION=  2
+PORTREVISION=  3
 CATEGORIES=math
 MASTER_SITES=  http://download.tuxfamily.org/eigen/
 
Index: files/patch-Eigen-src-Core-util-Memory.h
===
RCS file: files/patch-Eigen-src-Core-util-Memory.h
diff -N files/patch-Eigen-src-Core-util-Memory.h
--- /dev/null   1 Jan 1970 00:00:00 -
+++ files/patch-Eigen-src-Core-util-Memory.h22 May 2009 15:12:28 -
@@ -0,0 +1,11 @@
+--- Eigen/src/Core/util/Memory.h.orig  2009-02-02 16:24:17.0 +0300
 Eigen/src/Core/util/Memory.h   2009-05-22 18:19:51.0 +0400
+@@ -27,7 +27,7 @@
+ #ifndef EIGEN_MEMORY_H
+ #define EIGEN_MEMORY_H
+ 
+-#if defined(__APPLE__) || defined(_WIN64)
++#if defined(__APPLE__) || defined(_WIN64) || defined (__FreeBSD__)
+   #define EIGEN_MALLOC_ALREADY_ALIGNED 1
+ #else
+   #define EIGEN_MALLOC_ALREADY_ALIGNED 0
--- eigen-2.0.0_3.patch ends here ---

___
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] ports/134863: [PATCH] math/eigen: use malloc instead of posix_memalign, fix on 6.x

2009-05-22 Thread makc
Synopsis: [PATCH] math/eigen: use malloc instead of posix_memalign, fix on 6.x

State-Changed-From-To: open->closed
State-Changed-By: makc
State-Changed-When: Fri May 22 19:54:40 UTC 2009
State-Changed-Why: 
Committed. Thanks!

http://www.freebsd.org/cgi/query-pr.cgi?pr=134863
___
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] ports/134863: commit references a PR

2009-05-22 Thread dfilter service
The following reply was made to PR ports/134863; it has been noted by GNATS.

From: dfil...@freebsd.org (dfilter service)
To: bug-follo...@freebsd.org
Cc:  
Subject: Re: ports/134863: commit references a PR
Date: Fri, 22 May 2009 19:54:20 + (UTC)

 makc2009-05-22 19:54:09 UTC
 
   FreeBSD ports repository
 
   Modified files:
 math/eigen2  Makefile distinfo pkg-plist 
   Added files:
 math/eigen2/filespatch-Eigen__src__Core__util__Memory.h 
   Log:
   1) Update to 2.0.2
   2) Fix dependent ports on 6.x by using malloc instead of posix_memalign
   
   PR: ports/134863 (2)
   Submitted by:   amdmi3
   
   Revision  ChangesPath
   1.8   +1 -2  ports/math/eigen2/Makefile
   1.5   +3 -3  ports/math/eigen2/distinfo
   1.1   +11 -0 
ports/math/eigen2/files/patch-Eigen__src__Core__util__Memory.h (new)
   1.5   +0 -3  ports/math/eigen2/pkg-plist
 ___
 cvs-...@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscr...@freebsd.org"
 
___
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] Problem compiling qt4-webkit from area51

2009-05-22 Thread Raphael Kubo da Costa
Hi there,

I'm trying to portupgrade qt4-webkit, but compilation is failing.

In file included from platform/graphics/MediaPlayer.cpp:44:
platform/graphics/qt/MediaPlayerPrivatePhonon.h:122: error:
'Phonon::State' has not been declared
platform/graphics/qt/MediaPlayerPrivatePhonon.h:122: error:
'Phonon::State' has not been declared
*** Error code 1
1 error
*** Error code 1

Stop in /usr/ports/www/qt4-webkit.
** Command failed [exit code 1]: /usr/bin/script -qa
/tmp/portupgrade20090523-5013-suplky-0 env UPGRADE_TOOL=portupgrade
UPGRADE_PORT=qt4-webkit-4.4.3 UPGRADE_PORT_VER=4.4.3 make
** Fix the problem and try again.
** Listing the failed packages (-:ignored / *:skipped / !:failed)
! www/qt4-webkit (qt4-webkit-4.4.3) (missing header)

Thanks,
Raphael
___
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