You are using autotools, etc.. for the remainder that
don't
have CMake files -- and it's working???
Yes, as of last week. :) I haven't performed a full run in the past many days because
I am testing several patches affecting XDG support (part of resolving bug report 892).
Otherwise, for a long while I have been building everything on my list except the
tdebindings support packages and avahi--tqt.
With the automake packages, sometimes I'll use the not-well-known DO_NOT_COMPILE
environment variable that is native to KDE/TDE compiling. I will pass that variable at the
command line or temporarily in the affected build script to bypass that particular
component of the package. For example, in my current tdeadmin build script, I have the
following because I can't build tdeadmin against TQt3 (bug report 871):
if [ -r ${PREFIX}/lib/pkgconfig/tqt-mt.pc ] || [ -r /usr/lib/pkgconfig/tqt-mt.pc ]; then
export DO_NOT_COMPILE="knetworkconf"
fi
With cmake, study each CMakeLists.txt to discover the various component build options. For
example, right now, I can't build tdesdk unless I use -DBUILD_KUIVIEWER=OFF (bug
report 872).
I hope to run a full build pass soon and will be able to report more about tdegraphics
then.
Darrell