[CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread tech user
Hi all

Thanks in advance

1) We are trying to install cmake-gui for RHEL5 and we couldn't find any rpm
available ? (* we used yum and we have a proper license)

2) what is the url for cmake-gui source code ? (svn, cvs)

Many Thanks
TechSgin
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread Eric Noulard
2009/11/2 tech user :
> Hi all
>
> Thanks in advance
>
> 1) We are trying to install cmake-gui for RHEL5 and we couldn't find any rpm
> available ? (* we used yum and we have a proper license)
>
> 2) what is the url for cmake-gui source code ? (svn, cvs)

cmake-gui is part of the CMake source.
Source are available as tarball/zip or from CVS:
http://www.cmake.org/cmake/resources/software.html

You should be able to build your own RPM from source using CPack RPM generator.

After you have properly configured your build tree (including the
build of CMake GUI)

cd /to/your/buildtree
make
cpack -G RPM


-- 
Erk
Membre de l'April - « promouvoir et défendre le logiciel libre » -
http://www.april.org
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread tech user
Hi Eric

Still no cmake-gui :-(

p.s
 cpack worked great and generated the basic cmake rpm, thanks.

thanks
techsgin

On Mon, Nov 2, 2009 at 8:36 PM, Eric Noulard  wrote:

> 2009/11/2 tech user :
>  > Hi all
> >
> > Thanks in advance
> >
> > 1) We are trying to install cmake-gui for RHEL5 and we couldn't find any
> rpm
> > available ? (* we used yum and we have a proper license)
> >
> > 2) what is the url for cmake-gui source code ? (svn, cvs)
>
> cmake-gui is part of the CMake source.
> Source are available as tarball/zip or from CVS:
> http://www.cmake.org/cmake/resources/software.html
>
> You should be able to build your own RPM from source using CPack RPM
> generator.
>
> After you have properly configured your build tree (including the
> build of CMake GUI)
>
> cd /to/your/buildtree
> make
> cpack -G RPM
>
>
> --
> Erk
> Membre de l'April - « promouvoir et défendre le logiciel libre » -
> http://www.april.org
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread John Drescher
> Still no cmake-gui :-(
>

I have no experience with RHEL but I believe cmake-gui requires Qt 4.4
or greater. What version of Qt do you have installed?

John
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread tech user
Hi Eric

I have found what i was missing.

--qt-gui

./configure --qt-gui

:-)

Thanks

On Mon, Nov 2, 2009 at 9:19 PM, tech user  wrote:

>  Hi Eric
>
> Still no cmake-gui :-(
>
> p.s
>  cpack worked great and generated the basic cmake rpm, thanks.
>
> thanks
> techsgin
>
>   On Mon, Nov 2, 2009 at 8:36 PM, Eric Noulard wrote:
>
>> 2009/11/2 tech user :
>>  > Hi all
>> >
>> > Thanks in advance
>> >
>> > 1) We are trying to install cmake-gui for RHEL5 and we couldn't find any
>> rpm
>> > available ? (* we used yum and we have a proper license)
>> >
>> > 2) what is the url for cmake-gui source code ? (svn, cvs)
>>
>> cmake-gui is part of the CMake source.
>> Source are available as tarball/zip or from CVS:
>> http://www.cmake.org/cmake/resources/software.html
>>
>> You should be able to build your own RPM from source using CPack RPM
>> generator.
>>
>> After you have properly configured your build tree (including the
>> build of CMake GUI)
>>
>> cd /to/your/buildtree
>> make
>> cpack -G RPM
>>
>>
>> --
>> Erk
>> Membre de l'April - « promouvoir et défendre le logiciel libre » -
>> http://www.april.org
>>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread Eric Noulard
2009/11/2 tech user :
> Hi Eric
>
> I have found what i was missing.
>
> --qt-gui
>
> ./configure --qt-gui

Ok I see you were not only compiling CMake but **bootstraping** it.

Note that if you have a previous CMake version installed you
may perfectly build CMake using cmake.

Since cmake is usually shipped with ccmake (the curse UI)
you should be able to customize your build of CMake easilly.
Could be done on the command line too.

-- 
Erk
Membre de l'April - « promouvoir et défendre le logiciel libre » -
http://www.april.org
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread tech user
Hi John

sadly RHEL5 comes with qt 3.3 installed. :-(
qt-3.3.6-23.el5

We did got errors while runing ./configure --qt-gui

cmSystemTools.o: In function
`cmSystemTools::RemoveRPath(std::basic_string wrote:

> > Still no cmake-gui :-(
> >
>
> I have no experience with RHEL but I believe cmake-gui requires Qt 4.4
> or greater. What version of Qt do you have installed?
>
> John
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread Bill Hoffman

tech user wrote:

Hi John
 
sadly RHEL5 comes with qt 3.3 installed. :-(

qt-3.3.6-23.el5
 
We did got errors while runing ./configure --qt-gui
 


Remove your build/source tree, and reconfigure with an out of source 
build, and it should be fine.   CMake has an issue where you can not 
bootstrap twice on the same tree.


-Bill

cmSystemTools.o: In function 
`cmSystemTools::RemoveRPath(std::basic_stringcmSystemTools.cxx:(.text+0x3b1): undefined reference to 
`cmELF::cmELF(char const*)'

cmSystemTools.cxx:(.text+0x3da): undefined reference to `cmELF::GetRPath()'
cmSystemTools.cxx:(.text+0x402): undefined reference to 
`cmELF::GetRunPath()'
cmSystemTools.cxx:(.text+0x480): undefined reference to 
`cmELF::GetDynamicEntryCount() const'
cmSystemTools.cxx:(.text+0x561): undefined reference to 
`cmELF::GetDynamicEntryPosition(int) const'
cmSystemTools.cxx:(.text+0x599): undefined reference to 
`cmELF::GetDynamicEntryPosition(int) const'
cmSystemTools.cxx:(.text+0x5d0): undefined reference to 
`cmELF::GetDynamicEntryPosition(int) const'
cmSystemTools.cxx:(.text+0x684): undefined reference to 
`cmELF::ReadBytes(unsigned long, unsigned lon

cmSystemTools.cxx:(.text+0x714): undefined reference to `cmELF::~cmELF()'
cmSystemTools.cxx:(.text+0x72d): undefined reference to `cmELF::~cmELF()'
thanks
TechSgin


 
On Mon, Nov 2, 2009 at 9:24 PM, John Drescher > wrote:


 > Still no cmake-gui :-(
 >

I have no experience with RHEL but I believe cmake-gui requires Qt 4.4
or greater. What version of Qt do you have installed?

John





___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake


Re: [CMake] Where can i get cmake-gui rpm for RHEL5 (Redhat 5) (download the source code is even better) ?

2009-11-02 Thread tech user
Hi all

And many thanks.

case solved. :-)

qt-qui require qt > 4.3 (even that the bootstarp say 4.2)

so we have downloaded qt 4.5 opensource sdk.

then we got a link error with:

/opt/qtsdk-2009.01/qt/lib/libQtGui.so: undefined reference to
`FcFreeTypeQueryFace'
so ..

we had to download http://fontconfig.org/release/fontconfig-2.4.2.tar.gz
and build and install fontconfig.
*the version installed by default is *fontconfig-2.4.1 *

the fontconfig case is described in details here :
http://theitdepartment.wordpress.com/2009/03/15/centos-qt-fcfreetypequeryface/

many thanks everyone


On Tue, Nov 3, 2009 at 1:27 AM, Bill Hoffman wrote:

> tech user wrote:
>
>> Hi John
>>  sadly RHEL5 comes with qt 3.3 installed. :-(
>> qt-3.3.6-23.el5
>>  We did got errors while runing ./configure --qt-gui
>>
>>
>
> Remove your build/source tree, and reconfigure with an out of source build,
> and it should be fine.   CMake has an issue where you can not bootstrap
> twice on the same tree.
>
> -Bill
>
>  cmSystemTools.o: In function
>> `cmSystemTools::RemoveRPath(std::basic_string> cmSystemTools.cxx:(.text+0x3b1): undefined reference to `cmELF::cmELF(char
>> const*)'
>> cmSystemTools.cxx:(.text+0x3da): undefined reference to
>> `cmELF::GetRPath()'
>> cmSystemTools.cxx:(.text+0x402): undefined reference to
>> `cmELF::GetRunPath()'
>> cmSystemTools.cxx:(.text+0x480): undefined reference to
>> `cmELF::GetDynamicEntryCount() const'
>> cmSystemTools.cxx:(.text+0x561): undefined reference to
>> `cmELF::GetDynamicEntryPosition(int) const'
>> cmSystemTools.cxx:(.text+0x599): undefined reference to
>> `cmELF::GetDynamicEntryPosition(int) const'
>> cmSystemTools.cxx:(.text+0x5d0): undefined reference to
>> `cmELF::GetDynamicEntryPosition(int) const'
>> cmSystemTools.cxx:(.text+0x684): undefined reference to
>> `cmELF::ReadBytes(unsigned long, unsigned lon
>> cmSystemTools.cxx:(.text+0x714): undefined reference to `cmELF::~cmELF()'
>> cmSystemTools.cxx:(.text+0x72d): undefined reference to `cmELF::~cmELF()'
>> thanks
>> TechSgin
>>
>>
>>  On Mon, Nov 2, 2009 at 9:24 PM, John Drescher > dresche...@gmail.com>> wrote:
>>
>> > Still no cmake-gui :-(
>> >
>>
>>I have no experience with RHEL but I believe cmake-gui requires Qt 4.4
>>or greater. What version of Qt do you have installed?
>>
>>John
>>
>>
>>
>> 
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the CMake FAQ at:
>> http://www.cmake.org/Wiki/CMake_FAQ
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.cmake.org/mailman/listinfo/cmake
>>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake