QT interface is not compiled on debian. It needs some
prior fixing.
To fix some case sensitiveness on files:
mv src/qttestrunner/testbrowserdlg.ui
src/qttestrunner/TestBrowserDlg.ui
for aMatch in `grep -rl testbrowserdlg *`; do
if [ "$aMatch" = "process" ]; then continue; fi
echo Fixing $aMatch
sed 's/testbrowserdlg/TestBrowserDlg/g' ${aMatch} >
${aMatch}.new
mv ${aMatch}.new ${aMatch}
done;
mv src/qttestrunner/testrunnerdlg.ui
src/qttestrunner/TestRunnerDlg.ui
for aMatch in `grep -rl testrunnerdlg *`; do
if [ "$aMatch" = "process" ]; then continue; fi
echo Fixing $aMatch
sed 's/testrunnerdlg/TestRunnerDlg/g' ${aMatch} >
${aMatch}.new
mv ${aMatch}.new ${aMatch}
done;
In order to compile with qt3, substitute the deprecated QList
by QPtrList (Also add #include <qptrlist.h>)
I am working on debian/woody and I managed to get the qt
interface compiled with the debian packaging tools by using
a wrapper Makefile as is said on
http://lists.trolltech.com/qt-interest/2001-01/thread00527-0.html
but as I am a newbie with those packaging tools i could not
get it installed by the makefile. The libraries remained on lib/
(there is some library move after building and normal library
installation doesnt work).
Anyway i attach the debian diff that contains all i have done
until now. I hope Steve M. Robbins or anybody interested
could bring this further.
Don't hesesitat fixing any kludge i made, including
unapropiate debian changelog comments and versioning.
Contact me for any question.
David Garcia Garzon
Universitat Pompeu Fabra
dgarcia at iua dot upf anotherdot es
Debian patch file