Found, built, and installed libical 0.46.
kdepim ftbfs. Log attached.
If the error is caused by not having libcaldav and libcarddav installed, I need some kind of build script template. I have the sources.
(Would help if I attached the log, huh? :)
FTBFS. Build log attached.
First noticeable error messages:
icalformatimpl.cpp:34:28: error: libical/ical.h: No such file or directory
icalformatimpl.cpp:35:34: error: libical/icalparser.h: No such file or directory
icalformatimpl.cpp:36:39: error: libical/icalrestriction.h: No such file or directory
From icalformatimpl.cpp:
extern "C" {
#include <libical/ical.h>
#include <libical/icalparser.h>
#include <libical/icalrestriction.h>
}
I can't find any such directory or files on my build system. I just updated svn. All packages that have been built are installed.
Darrell
Darrell
I certainly am getting an education with building files from source.
Eager to see additional results, next I tried building kdebindings.
Slackware 12.2 has python 2.5.2 installed.
Problem with the build is after configure runs. My build script is modeled after the original 12.2 build script, but due to differences in trinity, might need some new tweaks.
If the build log errors about mono are warnings only then fine. If mono is a requirement then like many distros, many Slackers will not bother with trinity if mono is a requirement. :)
Here we go again!
Attached:
Build log
Build script
Darrell
> it again with revision 1173648 or above.
FTBFS. Log attached. But wait --- I got the package to build!
I tried following your directions about fixing the problem. I could not find a solution as you described. I don't pretend to understand classes, but am reading on the web to try to grasp the concept.
Please correct me where I went wrong trying to use your search method. The build failed with the following error:
kdmpixmap.cpp: In constructor 'KdmPixmap::KdmPixmap(KdmItem*, const QDomNode&, const char*)':
kdmpixmap.cpp:70: error: 'QFile' has not been declared
I opened kdmpixmap.cpp and selected line 70:
KSimpleConfig *config = new KSimpleConfig( TQFile::decodeName( _backgroundCfg ) );
I then searched the entire local trinity svn source tree:
grep -r 'TQFile::TQFile' ./
The search found nothing.
I again searched the entire local trinity svn source tree:
grep -r 'QFile::QFile' ./
Nothing.
Thus, I'm unsure exactly what I should have searched.
On a whim, I opened tqfile.h and saw another include define for qfile.h. That kind of made sense with respect to the build error regarding QFile.
So I added #include <tqfile.h> to kdmpixmap.cpp and rebuilt.
Successfully.
So kdmpixmap.cpp needs to be patched with #include <tqfile.h>.
I'm happy the package finally built. Yet perhaps you could provide me a concrete example by copying and pasting your search commands for this particular failure. Thanks. :)
Okay, kdebindings is next!
> Looks like you are getting much closer! Try it again
> with revision
> 1173590 or above.
FTBFS.
In kdmpixmap.cpp I tried adding tqfile.h.
WAS:
#include <tqimage.h>
CHANGED TO:
#include <tqimage.h>
#include <tqfile.h>
My meager effort failed. No joy in Mudville. :(
Log attached!