Re: [gentoo-user] qt4

2020-01-18 Thread karl
Andrew Udvare:
> > On 2020-01-18, at 03:17, k...@aspodata.se wrote:
...
> > This code requires qt4:
> > https://github.com/thliebig/openEMS-Project
> 
> Not from what I'm seeing. The README has an outdated line for Ubuntu but the 
> QCSXCAD GUI code references Qt5.
> 
> https://github.com/thliebig/QCSXCAD/blob/0dabbaf2bc1190adec300871cf309791af842c8e/CMakeLists.txt#L109

Ok, so there is hope.

I get (build_xxx.log):

CMake Warning at CMakeLists.txt:102 (find_package):
  Could not find a configuration file for package "VTK" that is compatible
  with requested version "6.1".

  The following configuration files were considered but not accepted:

/usr/lib/cmake/vtk-7.1/VTKConfig.cmake, version: 7.1.0



-- Found package VTK. Using version 7.1.0
CMake Error at /usr/share/cmake/Modules/FindQt4.cmake:1324 (message):
  Found unsuitable Qt version "5.13.2" from /usr/bin/qmake, this code
  requires Qt 4.x
Call Stack (most recent call first):
  CMakeLists.txt:124 (FIND_PACKAGE)


(That message is a little confusing, it finds a vtk which it doesn't 
accept, but it is using it ???)

Perhaps that triggers the else part in line 117-119.

Regards,
/Karl Hammar




Re: [gentoo-user] qt4

2020-01-18 Thread Andrew Udvare


> On 2020-01-18, at 03:17, k...@aspodata.se wrote:
> 
> Is there a way to install qt4 without resorting to make a new 
> installation ?
> 
> This code requires qt4:
> https://github.com/thliebig/openEMS-Project

Not from what I'm seeing. The README has an outdated line for Ubuntu but the 
QCSXCAD GUI code references Qt5.

https://github.com/thliebig/QCSXCAD/blob/0dabbaf2bc1190adec300871cf309791af842c8e/CMakeLists.txt#L109




[gentoo-user] qt4

2020-01-18 Thread karl
 Is there a way to install qt4 without resorting to make a new 
installation ?

 This code requires qt4:
https://github.com/thliebig/openEMS-Project

Regards,
/Karl Hammar





[gentoo-user] qt4 app's icons

2017-09-12 Thread Raymond Jennings
I noticed something strange.

When I downgraded VLC to use qt4 after a bug...the icon turned from the
familiar orange traffic cone ot an ugly B version.

That's when I realized the same thing had happned to classic skype.

Did someone apply code to deliberately grayscale the icons of qt4 apps?

No bugs that I know of...but it does seem like a pattern and I have a hunch
something fishy is going on.


Re: [gentoo-user] QT4 and QGLWidget

2011-05-06 Thread Lorenzo Marussi

Hello,

thank you for your reply,

I check that I didn't mixed QT version,
first I tried with 4.7.2, than I unmerged all qt packages  and I tried 
4.7.3 .

every time after emerging I checked system consistency with revdep-rebuild.

Now I unmerged all, emerged all QT packages (4.72) with debug use, but 
I haven't got any other message than:


qmlviewer[6399]: segfault at 1763 ip b6a73630 sp bfa0ee00 error 4 in
libQtGui.so.4.7.2[b6887000+a1e000]


May I have to export some variables to have more debug info?


Any other suggestion? Any hint I can try?
In qt-mailing list they said that is for sure something about gentoo..



Il 05/05/2011 21:55, Paul Hartman ha scritto:

On Thu, May 5, 2011 at 4:06 AM, Lorenzo Marussii...@lorenzomarussi.it  wrote:

Hello,

I use Gentoo/LInux OS, with lastest Qt4.7.2 ebuilds,
and a Nvidia card or intel graphics (and mesa)

when I run qmlviewer with opengl params,
or I use QGLwidget viewport in my app,
I get this error:

qmlviewer[6399]: segfault at 1763 ip b6a73630 sp bfa0ee00 error 4 in
libQtGui.so.4.7.4[b6887000+a1e000]

If you build Qt with debugging symbols enabled then maybe you can see
where exactly the fault is occurring here.

You said you're using 4.7.2 but this error says 4.7.4. Do you have
mixed Qt versions around in your system somewhere? Maybe it's pulling
in the wrong one.






Re: [gentoo-user] QT4 and QGLWidget

2011-05-06 Thread Paul Hartman
On Fri, May 6, 2011 at 10:28 AM, Lorenzo Marussi i...@lorenzomarussi.it wrote:
 Hello,

 thank you for your reply,

 I check that I didn't mixed QT version,
 first I tried with 4.7.2, than I unmerged all qt packages  and I tried 4.7.3
 .
 every time after emerging I checked system consistency with revdep-rebuild.

 Now I unmerged all, emerged all QT packages (4.72) with debug use, but I
 haven't got any other message than:

Hi,

The debug USE flag is for enabling debug features in a package, not
really the same thing I was talking about. In /etc/make.conf you need
to change your CFLAGS to include -ggdb and reduce optimization to -O1.
Then you need to add nostrip into your FEATURES, otherwise that
debugging data would get stripped as part of the install process of
emerge.

After you made those changes, emerge anything that you want to get a
backtrace from. Now you should be able to see better info when it
crashes, run it in gdb and see source code line numbers and all the
good stuff like that. :)

If the crashes get to a place where you don't have debug info, if it
is crashing in another dependency perhaps, you might need to emerge
other packages with the debugging info as well. Maybe glibc...

For more information please read this page:
http://www.gentoo.org/proj/en/qa/backtraces.xml

I hope that helped. Good luck!



[gentoo-user] QT4 and QGLWidget

2011-05-05 Thread Lorenzo Marussi

Hello,

I use Gentoo/LInux OS, with lastest Qt4.7.2 ebuilds,
and a Nvidia card or intel graphics (and mesa)

when I run qmlviewer with opengl params,
or I use QGLwidget viewport in my app,
I get this error:

qmlviewer[6399]: segfault at 1763 ip b6a73630 sp bfa0ee00 error 4 in
libQtGui.so.4.7.4[b6887000+a1e000]

I tried also to emerge last qt-*-4.7.999 builds, but no success.

glxgears works and glxinfo reports that I'm using direct rendering

no matter wich .QML I use.
also this one exists with error:

import QtQuick 1.0
Rectangle {
id: mainView
width: 1920
height: 1080
}


Ther's some missing use-flag maybe? Or is something broken on Gentoo

I think is something about gentoo, 'cause I tried to install last Ubuntu 
11.04 and there my apps works nice


Thanks,

Lorenzo



Re: [gentoo-user] QT4 and QGLWidget

2011-05-05 Thread Paul Hartman
On Thu, May 5, 2011 at 4:06 AM, Lorenzo Marussi i...@lorenzomarussi.it wrote:
 Hello,

 I use Gentoo/LInux OS, with lastest Qt4.7.2 ebuilds,
 and a Nvidia card or intel graphics (and mesa)

 when I run qmlviewer with opengl params,
 or I use QGLwidget viewport in my app,
 I get this error:

 qmlviewer[6399]: segfault at 1763 ip b6a73630 sp bfa0ee00 error 4 in
 libQtGui.so.4.7.4[b6887000+a1e000]

If you build Qt with debugging symbols enabled then maybe you can see
where exactly the fault is occurring here.

You said you're using 4.7.2 but this error says 4.7.4. Do you have
mixed Qt versions around in your system somewhere? Maybe it's pulling
in the wrong one.



[gentoo-user] QT4 Development

2009-09-24 Thread Marco
Hi all

I want to install QT4 for development. Since the QT4 meta ebuild is
masked, I am not sure what split packages are needed.
http://dev.gentoo.org/~yngwin/qt4-split-ebuilds.xml only tells me what
to install for applications depending on QT4.

Thanks for your help!

--
Regards,
 Marco



Re: [gentoo-user] QT4 Development

2009-09-24 Thread Volker Armin Hemmann
On Donnerstag 24 September 2009, Marco wrote:
 Hi all
 
 I want to install QT4 for development. Since the QT4 meta ebuild is
 masked, I am not sure what split packages are needed.
 http://dev.gentoo.org/~yngwin/qt4-split-ebuilds.xml only tells me what
 to install for applications depending on QT4.
 
 Thanks for your help!
 
 --
 Regards,
  Marco
 

just install the qt4 set. Meta packages are being phased out.

Or unmask the meta package. /etc/portage/package.unmask.



Re: [gentoo-user] QT4 Development

2009-09-24 Thread Marco
On Thu, Sep 24, 2009 at 12:08 PM, Volker Armin Hemmann
volkerar...@googlemail.com wrote:
 On Donnerstag 24 September 2009, Marco wrote:
[...]
 just install the qt4 set. Meta packages are being phased out.

Not sure if I understand what you mean. I thought sets only exist for
world and system?

 Or unmask the meta package. /etc/portage/package.unmask.

That's what I want to avoid since apparently this meta package gets
removed in the future.

--
Regards,
 Marco



Re: [gentoo-user] QT4 Development

2009-09-24 Thread Volker Armin Hemmann
On Donnerstag 24 September 2009, Marco wrote:
 On Thu, Sep 24, 2009 at 12:08 PM, Volker Armin Hemmann
 
 volkerar...@googlemail.com wrote:
  On Donnerstag 24 September 2009, Marco wrote:
 
 [...]
 
  just install the qt4 set. Meta packages are being phased out.
 
 Not sure if I understand what you mean. I thought sets only exist for
 world and system?
 
  Or unmask the meta package. /etc/portage/package.unmask.
 
 That's what I want to avoid since apparently this meta package gets
 removed in the future.
 
 --
 Regards,
  Marco
 

so what? it really does not matter if it is there or not. And no - with 2.2* 
portage there are many more sets than just world and system. You can even 
easily create your own.



Re: [gentoo-user] QT4 Development

2009-09-24 Thread Marco
On Thu, Sep 24, 2009 at 12:33 PM, Volker Armin Hemmann
volkerar...@googlemail.com wrote:
 On Donnerstag 24 September 2009, Marco wrote:
 On Thu, Sep 24, 2009 at 12:08 PM, Volker Armin Hemmann

 volkerar...@googlemail.com wrote:
  On Donnerstag 24 September 2009, Marco wrote:

 [...]

  just install the qt4 set. Meta packages are being phased out.

 Not sure if I understand what you mean. I thought sets only exist for
 world and system?

  Or unmask the meta package. /etc/portage/package.unmask.

 That's what I want to avoid since apparently this meta package gets
 removed in the future.

 --
 Regards,
  Marco


 so what? it really does not matter if it is there or not. And no - with 2.2*
 portage there are many more sets than just world and system. You can even
 easily create your own.

Well, I try to avoid installing such packages to not have migration
issues later.

And, yes, portage 2.2* apparently supports many more sets, but portage
2.2* is still masked and I don't know if there is a potental risk to
use it already.



Re: [gentoo-user] QT4 Development

2009-09-24 Thread Volker Armin Hemmann
On Donnerstag 24 September 2009, Marco wrote:
 On Thu, Sep 24, 2009 at 12:33 PM, Volker Armin Hemmann
 
 volkerar...@googlemail.com wrote:
  On Donnerstag 24 September 2009, Marco wrote:
  On Thu, Sep 24, 2009 at 12:08 PM, Volker Armin Hemmann
 
  volkerar...@googlemail.com wrote:
   On Donnerstag 24 September 2009, Marco wrote:
 
  [...]
 
   just install the qt4 set. Meta packages are being phased out.
 
  Not sure if I understand what you mean. I thought sets only exist for
  world and system?
 
   Or unmask the meta package. /etc/portage/package.unmask.
 
  That's what I want to avoid since apparently this meta package gets
  removed in the future.
 
  --
  Regards,
   Marco
 
  so what? it really does not matter if it is there or not. And no - with
  2.2* portage there are many more sets than just world and system. You can
  even easily create your own.
 
 Well, I try to avoid installing such packages to not have migration
 issues later.

you won't. The meta package is just a wrapper around splits. If it goes away - 
so what? the splits still remain and are still updated. Only depclean might 
screw you - in that case just install them via set.

 
 And, yes, portage 2.2* apparently supports many more sets, but portage
 2.2* is still masked and I don't know if there is a potental risk to
 use it already.
 

and as long as portage 2.2 is masked, metas will stay around ;)




Re: [gentoo-user] QT4 monolithic vs split ebuilds

2008-11-22 Thread Andrés Becerra Sandoval
On Fri, Nov 21, 2008 at 4:42 PM, Graham Murray [EMAIL PROTECTED] wrote:
 Andrés Becerra Sandoval [EMAIL PROTECTED] writes:

 I have the same problem, and I can't find the folder
 /usr/portage/profiles/default/linux/x86/2008.0. Maybe this is the
 cause of the problem, rsync deleted it, can you confirm?

 No. The directory is there, but the only files in it and the desktop
 sub-directory are 'parent'.



I synced today and the problem is gone!


-- 
  Andrés


[gentoo-user] QT4 monolithic vs split ebuilds

2008-11-21 Thread Graham Murray
I have had qt-4.4.2 split ebuilds (and kde4) installed since the
beginning of November. After syncing and running 'emerge -auDvN @world'
this evening, it is trying to pull in the monolithic qt-4.3.5 and
complaining about a slot conflict. I have tried adding the 't' flag to
see what is pulling in qt-4.3.5 and masked the package. But when
rerunning emerge, it showed an already installed package as pulling in
qt-4.3.5.

Have the qt-4.4.2 split ebuilds been depreciated? They have not been
masked (only the 4.4.0 packages are masked, not the 4.4.2 ones).



Re: [gentoo-user] QT4 monolithic vs split ebuilds

2008-11-21 Thread Andrés Becerra Sandoval
On Fri, Nov 21, 2008 at 2:31 PM, Graham Murray [EMAIL PROTECTED] wrote:
 I have had qt-4.4.2 split ebuilds (and kde4) installed since the
 beginning of November. After syncing and running 'emerge -auDvN @world'
 this evening, it is trying to pull in the monolithic qt-4.3.5 and
 complaining about a slot conflict. I have tried adding the 't' flag to
 see what is pulling in qt-4.3.5 and masked the package. But when
 rerunning emerge, it showed an already installed package as pulling in
 qt-4.3.5.

 Have the qt-4.4.2 split ebuilds been depreciated? They have not been
 masked (only the 4.4.0 packages are masked, not the 4.4.2 ones).



I have the same problem, and I can't find the folder
/usr/portage/profiles/default/linux/x86/2008.0. Maybe this is the
cause of the problem, rsync deleted it, can you confirm?

-- 
  Andrés


Re: [gentoo-user] QT4 monolithic vs split ebuilds

2008-11-21 Thread Graham Murray
Andrés Becerra Sandoval [EMAIL PROTECTED] writes:

 I have the same problem, and I can't find the folder
 /usr/portage/profiles/default/linux/x86/2008.0. Maybe this is the
 cause of the problem, rsync deleted it, can you confirm?

No. The directory is there, but the only files in it and the desktop
sub-directory are 'parent'.



Re: [gentoo-user] QT4's qtconfig

2007-01-09 Thread Mick
On Sunday 07 January 2007 16:12, Andrew Gaydenko wrote:
 As I have wrote, 'qtconfig' demands 'qt3support' flag.

 === On Sunday 07 January 2007 18:57, Graham Murray wrote: ===

 Andrew Gaydenko [EMAIL PROTECTED] writes:
  Probably somebody has (unstable) 4.2.2 installed... The thing is, v.4.2.2
  is the first Qt4 installation on this machine. If anybody has 4.2.2 -
  please, verify '/usr/bin/qtconfig' belongs to *this* version.

 On my ~x86 system I have qt-3.3.6-r5 and qt-4.2.2 installed and the
 only qtconfig I have is /usr/qt/3/bin/qtconfig. I do not have
 /usr/bin/qtconfig at all.

This is from a stable x86 box:

# equery belongs qtconfig
[ Searching for file(s) qtconfig in *... ]
x11-libs/qt-4.1.4-r2 (/usr/bin/qtconfig)
x11-libs/qt-3.3.6-r4 (/usr/qt/3/bin/qtconfig)

and 

# slocate qtconfig
/usr/qt/3/bin/qtconfig
/usr/bin/qtconfig
/usr/lib/python2.4/site-packages/pyqtconfig.py

Running qtconfig launches the /usr/bin/qtconfig of course, from qt-4.1.4-r2.

 x11-libs/qt-4.2.2 USE=cups dbus doc examples gif glib jpeg mng opengl
 png postgres sqlite zlib -accessibility -debug -firebird -mysql -nas
 -nis -odbc -pch -qt3support -sqlite3 -xinerama INPUT_DEVICES=-wacom

-- 
Regards,
Mick


pgp75hQYcRdZ8.pgp
Description: PGP signature


Re: [gentoo-user] QT4's qtconfig

2007-01-09 Thread Andrew Gaydenko
Mick,

You have missed resolution :-) Citing:

As I have wrote, 'qtconfig' demands 'qt3support' flag.

=== On Tuesday 09 January 2007 11:02, Mick wrote: ===
On Sunday 07 January 2007 16:12, Andrew Gaydenko wrote:
 As I have wrote, 'qtconfig' demands 'qt3support' flag.

 === On Sunday 07 January 2007 18:57, Graham Murray wrote: ===

 Andrew Gaydenko [EMAIL PROTECTED] writes:
  Probably somebody has (unstable) 4.2.2 installed... The thing is, v.4.2.2
  is the first Qt4 installation on this machine. If anybody has 4.2.2 -
  please, verify '/usr/bin/qtconfig' belongs to *this* version.

 On my ~x86 system I have qt-3.3.6-r5 and qt-4.2.2 installed and the
 only qtconfig I have is /usr/qt/3/bin/qtconfig. I do not have
 /usr/bin/qtconfig at all.

This is from a stable x86 box:

# equery belongs qtconfig
[ Searching for file(s) qtconfig in *... ]
x11-libs/qt-4.1.4-r2 (/usr/bin/qtconfig)
x11-libs/qt-3.3.6-r4 (/usr/qt/3/bin/qtconfig)

and 

# slocate qtconfig
/usr/qt/3/bin/qtconfig
/usr/bin/qtconfig
/usr/lib/python2.4/site-packages/pyqtconfig.py

Running qtconfig launches the /usr/bin/qtconfig of course, from qt-4.1.4-r2.

 x11-libs/qt-4.2.2 USE=cups dbus doc examples gif glib jpeg mng opengl
 png postgres sqlite zlib -accessibility -debug -firebird -mysql -nas
 -nis -odbc -pch -qt3support -sqlite3 -xinerama INPUT_DEVICES=-wacom

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-09 Thread Neil Bothwick
On Tue, 9 Jan 2007 14:26:56 +0300, Andrew Gaydenko wrote:

 You have missed resolution :-) Citing:

Probably because it was top-posted and people expect the find the answer
after the question.


-- 
Neil Bothwick

Last words of a Windows user: = Why does that work now?


signature.asc
Description: PGP signature


[gentoo-user] QT4's qtconfig

2007-01-07 Thread Andrew Gaydenko
Hi!

Funny situation. I have ~amd64 Gentoo machine, and two slotted Qt are installed:

eix -e qt
[I] x11-libs/qt
 Available versions:
(3) 3.3.4-r8 3.3.6-r4 (~)3.3.6-r5
(4) 4.1.4-r2 (~)4.2.1 (~)4.2.2
 Installed versions:  3.3.6-r5(3)(03:23:16 AM 12/24/2006)(cups debug doc 
examples -firebird gif -immqt -immqt-bc ipv6 mysql -nas -nis -odbc opengl 
-postgres sqlite -xinerama)
  4.2.2(4)(01:02:41 PM 01/07/2007)(accessibility cups 
-dbus debug doc examples -firebird gif -glib -input_devices_wacom jpeg -mng 
mysql -nas -nis -odbc opengl -pch png -postgres -qt3support sqlite -sqlite3 
-xinerama zlib)

My aim was to set default font for Qt4 applications. I have tried to find Qt4's
'qtconfig' and discovered: there is *the only* 'qtconfig' in my system. And it 
is
/usr/qt/3/bin/qtconfig, i.e. for Qt3 (I have scanned /usr recursively).

OK, I have reinstalled Qt4 - nothing changed.

Is it for me only?
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Petr Uzel
On Sunday 07 January 2007 12:29, Andrew Gaydenko wrote:
 Hi!

 Funny situation. I have ~amd64 Gentoo machine, and two slotted Qt are
 installed:

 eix -e qt
 [I] x11-libs/qt
  Available versions:
 (3) 3.3.4-r8 3.3.6-r4 (~)3.3.6-r5
 (4) 4.1.4-r2 (~)4.2.1 (~)4.2.2
  Installed versions:  3.3.6-r5(3)(03:23:16 AM 12/24/2006)(cups debug
 doc examples -firebird gif -immqt -immqt-bc ipv6 mysql -nas -nis -odbc
 opengl -postgres sqlite -xinerama) 4.2.2(4)(01:02:41 PM
 01/07/2007)(accessibility cups -dbus debug doc examples -firebird gif -glib
 -input_devices_wacom jpeg -mng mysql -nas -nis -odbc opengl -pch png
 -postgres -qt3support sqlite -sqlite3 -xinerama zlib)

 My aim was to set default font for Qt4 applications. I have tried to find
 Qt4's 'qtconfig' and discovered: there is *the only* 'qtconfig' in my
 system. And it is /usr/qt/3/bin/qtconfig, i.e. for Qt3 (I have scanned /usr
 recursively).

 OK, I have reinstalled Qt4 - nothing changed.

 Is it for me only?

Hello,
I have also slotted installation of qt (3.3.6-r4 and 4.1.4-r2) on ~x86. There 
are two versions of qtconfig on my system :
/usr/qt/3/bin/qtconfig
/usr/bin/qtconfig (this belongs to qt-4.x.x)

What about
equery f =x11-libs/qt-4.1.4-r2 | grep qtconfig
?

-- 
Petr Uzel
[EMAIL PROTECTED]
Jabber : [EMAIL PROTECTED]
ICQ : 101606095
Gentoo Linux
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Alex Schuster
Andrew writes:

 My aim was to set default font for Qt4 applications. I have tried to find
 Qt4's 'qtconfig' and discovered: there is *the only* 'qtconfig' in my
 system. And it is /usr/qt/3/bin/qtconfig, i.e. for Qt3 (I have scanned
 /usr recursively).

 OK, I have reinstalled Qt4 - nothing changed.

 Is it for me only?

Strange. I have /usr/bin/qtconfig, belonging to x11-libs/qt-4.1.4-r2.

Alex
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Andrew Gaydenko
Have tried also, there isn't:

equery f =x11-libs/qt-4.2.2 | grep qtconfig
/usr/share/doc/qt-4.2.2/html/images/qtconfig-appearance.png
/usr/share/doc/qt-4.2.2/html/qtconfig.html

There *is* a tool's help, the tool is absent only :-)

=== On Sunday 07 January 2007 14:43, Petr Uzel wrote: ===

Hello,
I have also slotted installation of qt (3.3.6-r4 and 4.1.4-r2) on ~x86. There 
are two versions of qtconfig on my system :
/usr/qt/3/bin/qtconfig
/usr/bin/qtconfig (this belongs to qt-4.x.x)

What about
equery f =x11-libs/qt-4.1.4-r2 | grep qtconfig
?

-- 
Petr Uzel
[EMAIL PROTECTED]
Jabber : [EMAIL PROTECTED]
ICQ : 101606095
Gentoo Linux
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Andrew Gaydenko
Probably somebody has (unstable) 4.2.2 installed... The thing is, v.4.2.2 is
the first Qt4 installation on this machine. If anybody has 4.2.2 - please, 
verify '/usr/bin/qtconfig' belongs to *this* version.

=== On Sunday 07 January 2007 14:52, Alex Schuster wrote: ===
Strange. I have /usr/bin/qtconfig, belonging to x11-libs/qt-4.1.4-r2.

Alex
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Martins
On Sunday 07 January 2007 14:03, Andrew Gaydenko wrote:
 Probably somebody has (unstable) 4.2.2 installed... The thing is, v.4.2.2
 is the first Qt4 installation on this machine. If anybody has 4.2.2 -
 please, verify '/usr/bin/qtconfig' belongs to *this* version.

 === On Sunday 07 January 2007 14:52, Alex Schuster wrote: ===
 Strange. I have /usr/bin/qtconfig, belonging to x11-libs/qt-4.1.4-r2.

   Alex

I still have qt-4.2.2 on my x86_64
equery f =x11-libs/qt-4.2.2 | grep qtconfig
/usr/bin/qtconfig

and it launches nice gui to tweak setings

martins
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Andrew Gaydenko
Will you please tell me used USE flags for qt-4.2.2?

=== On Sunday 07 January 2007 15:32, Martins wrote: ===
...
I still have qt-4.2.2 on my x86_64
equery f =x11-libs/qt-4.2.2 | grep qtconfig
/usr/bin/qtconfig

and it launches nice gui to tweak setings

martins
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Martins
On Sunday 07 January 2007 14:52, Andrew Gaydenko wrote:
 Will you please tell me used USE flags for qt-4.2.2?

 === On Sunday 07 January 2007 15:32, Martins wrote: ===
 ...
 I still have qt-4.2.2 on my x86_64
 equery f =x11-libs/qt-4.2.2 | grep qtconfig
 /usr/bin/qtconfig

 and it launches nice gui to tweak setings

 martins

from eix -s qt:

  4.2.2(4)(09:07:11 2006.12.09.)(-accessibility cups 
dbus -debug -doc -examples -firebird gif -glib -input_devices_wacom jpeg -mng 
mysql -nas -nis odbc opengl -pch png postgres qt3support 
sqlite -sqlite3 -xinerama zlib)




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Andrew Gaydenko
Martins,

Thanks! - will play.

=== On Sunday 07 January 2007 16:20, Martins wrote: ===
...

from eix -s qt:

  4.2.2(4)(09:07:11 2006.12.09.)(-accessibility cups 
dbus -debug -doc -examples -firebird gif -glib -input_devices_wacom jpeg -mng 
mysql -nas -nis odbc opengl -pch png postgres qt3support 
sqlite -sqlite3 -xinerama zlib)




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig - SOLVED

2007-01-07 Thread Andrew Gaydenko
To be built, 'qtconfig' needs 'qt3support' USE flag be turned on.


=== On Sunday 07 January 2007 16:20, Martins wrote: ===
...
from eix -s qt:

  4.2.2(4)(09:07:11 2006.12.09.)(-accessibility cups 
dbus -debug -doc -examples -firebird gif -glib -input_devices_wacom jpeg -mng 
mysql -nas -nis odbc opengl -pch png postgres qt3support 
sqlite -sqlite3 -xinerama zlib)




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Graham Murray
Andrew Gaydenko [EMAIL PROTECTED] writes:

 Probably somebody has (unstable) 4.2.2 installed... The thing is, v.4.2.2 is
 the first Qt4 installation on this machine. If anybody has 4.2.2 - please, 
 verify '/usr/bin/qtconfig' belongs to *this* version.

On my ~x86 system I have qt-3.3.6-r5 and qt-4.2.2 installed and the
only qtconfig I have is /usr/qt/3/bin/qtconfig. I do not have
/usr/bin/qtconfig at all.

x11-libs/qt-4.2.2 USE=cups dbus doc examples gif glib jpeg mng opengl
png postgres sqlite zlib -accessibility -debug -firebird -mysql -nas
-nis -odbc -pch -qt3support -sqlite3 -xinerama INPUT_DEVICES=-wacom
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] QT4's qtconfig

2007-01-07 Thread Andrew Gaydenko
As I have wrote, 'qtconfig' demands 'qt3support' flag.

=== On Sunday 07 January 2007 18:57, Graham Murray wrote: ===
Andrew Gaydenko [EMAIL PROTECTED] writes:

 Probably somebody has (unstable) 4.2.2 installed... The thing is, v.4.2.2 is
 the first Qt4 installation on this machine. If anybody has 4.2.2 - please, 
 verify '/usr/bin/qtconfig' belongs to *this* version.

On my ~x86 system I have qt-3.3.6-r5 and qt-4.2.2 installed and the
only qtconfig I have is /usr/qt/3/bin/qtconfig. I do not have
/usr/bin/qtconfig at all.

x11-libs/qt-4.2.2 USE=cups dbus doc examples gif glib jpeg mng opengl
png postgres sqlite zlib -accessibility -debug -firebird -mysql -nas
-nis -odbc -pch -qt3support -sqlite3 -xinerama INPUT_DEVICES=-wacom
-- 
gentoo-user@gentoo.org mailing list