trinity-devel@lists.pearsoncomputing.net

Message: previous - next
Month: December 2011

Re: [trinity-devel] Converting KDE3 Code to TDE

From: Werner Joss <werner@...>
Date: Sat, 3 Dec 2011 17:31:58 +0100
On Saturday 03 December 2011 16:29:58 Darrell Anderson wrote:
> I would be grateful if somebody would share any scripts to convert KDE3
> code to TDE. Basically something that quickly adds the tqt layer.

no script needed :)
here is what I did:
have the tqt headers installed in /usr/include/tqt (should be standard), plus 
*trinity-dev packages.
then, for autotools based kde3 programs (most are), add the following lines to 
configure.in.in:

CFLAGS=-I/usr/include/tqt
CXXFLAGS=-I/usr/include/tqt

make a symlink admin -> kde-common/admin in the project directory.
(kde-common is from trinity tarball)
then do
make -f Makefile.cvs in project dir, this step creates configure.
then configure&&make&&make install, as usual.
this is what works for me (usually).

werner