QUOTE
QUOTE
OK, now I have a better picture. Say, I'd use Ko/Pi on the Zaurus, then I'd need an application on my desktop that is capable of syncing to/from .ics files. What applications are there that support this feature?
KO/Pi itself does the actual syncing with the other ics file.
You need an application, that stores its data in an ics file.
You can compile KO/Pi for your Linux desktop.
It does not need anything from KDE.
It just needs the Qt-lib.
And it has more features, less bugs and better usebility than the KDE Desktop KO.
z.
I tried, but could not compile it. I downloaded korganizerPi.150.source.tar.gz from
http://korganizer.kde.org/korganizer/download.html , unpacked it. Unfortunately there is no configure script, nor an INSTALL file in the tarball. I saw a Makefile, which references tmake. So I installed tmake as well, but it just doesn't work:
CODE
$ cd korgenizerPi.150
$ tmake
Usage:
tmake [options] project-files
Options:
-e expr Evaluate expression, ignore template file
-nodepend Don't generate dependency information
-o file Write output to file
-t file Specify a template file
-unix Create output for Unix (auto detects)
-v Verbose/debug mode
-win32 Create output for Win32 (auto detects)
$ make
for i in libical/src/libical libical/src/libicalss qtcompat microkde libkcal libkdepim korganizer kalarmd; do mkdir -p $i/obj/; done
cd qtcompat; tmake qtcompat.pro -o Makefile
tmake error: Template file tmake.conf not found
make: *** [qtcompat/Makefile] Error 1
I also tried replacing references to tmake in Makefile with make. But that fails as well, as it ties to do a make in libical/src/libical, but there's no Makefile in that directory:
CODE
$ make
for i in libical/src/libical libical/src/libicalss qtcompat microkde libkcal libkdepim korganizer kalarmd; do mkdir -p $i/obj/; done
cd qtcompat; make qtcompat.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/qtcompat'
make[1]: Nothing to be done for `qtcompat.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/qtcompat'
cd microkde; make microkdeE.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/microkde'
make[1]: Nothing to be done for `microkdeE.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/microkde'
cd libkcal; make libkcalE.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libkcal'
make[1]: Nothing to be done for `libkcalE.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libkcal'
cd libkdepim; make libkdepimE.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libkdepim'
make[1]: Nothing to be done for `libkdepimE.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libkdepim'
cd korganizer; make korganizerE.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/korganizer'
make[1]: Nothing to be done for `korganizerE.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/korganizer'
cd kalarmd; make kalarmdE.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/kalarmd'
make[1]: Nothing to be done for `kalarmdE.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/kalarmd'
cd libical/src/libical; make libicalE.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libical/src/libical'
make[1]: Nothing to be done for `libicalE.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libical/src/libical'
cd libical/src/libicalss; make libicalssE.pro -o Makefile
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libical/src/libicalss'
make[1]: Nothing to be done for `libicalssE.pro'.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libical/src/libicalss'
for i in libical/src/libical libical/src/libicalss qtcompat microkde libkcal libkdepim korganizer kalarmd; do pushd $i;
make -f Makefile || exit 1; popd;
done
/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libical/src/libical /usr/local/src/zaurus/pim/KoPi/korgenizerPi.150
make[1]: Entering directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libical/src/libical'
make[1]: Makefile: No such file or directory
make[1]: *** No rule to make target `Makefile'. Stop.
make[1]: Leaving directory `/usr/local/src/zaurus/pim/KoPi/korgenizerPi.150/libical/src/libical'
make: *** [all] Error 1
what am I doing wrong?