-rw-r--r-- | Makefile | 507 | ||||
-rw-r--r-- | bin/kdepim/WhatsNew.txt | 12 | ||||
-rw-r--r-- | kmicrokdelibs.control | 2 |
3 files changed, 350 insertions, 171 deletions
@@ -1,171 +1,338 @@ | |||
1 | ############################################################################# | 1 | export KDEPIMDIR = $(shell pwd) |
2 | # Makefile for building: kdepim-desktop | 2 | |
3 | # Generated by qmake (1.07a) (Qt 3.3.3) on: Sun Oct 17 11:53:22 2004 | 3 | export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version) |
4 | # Project: kdepim-desktop.pro | 4 | |
5 | # Template: subdirs | 5 | ifeq ($(PLATFORM) , zaurus) |
6 | # Command: $(QMAKE) "CONFIG+=thread" "CONFIG+=debug" -o Makefile kdepim-desktop.pro | 6 | BUILD_NO_LDAP_PLUGIN=1 |
7 | ############################################################################# | 7 | endif |
8 | 8 | ||
9 | MAKEFILE =Makefile | 9 | ifneq ($(PLATFORM) , zaurus) |
10 | QMAKE =qmake | 10 | BUILD_NO_SHARP_PLUGIN=1 |
11 | DEL_FILE = rm -f | 11 | endif |
12 | CHK_DIR_EXISTS= test -d | 12 | |
13 | MKDIR = mkdir -p | 13 | SUBDIRS_MICROKDE = \ |
14 | INSTALL_FILE= | 14 | libical/src/libical \ |
15 | INSTALL_DIR = | 15 | libical/src/libicalss \ |
16 | SUBTARGETS = \ | 16 | qtcompat \ |
17 | sub-gammu-emb-common \ | 17 | microkde \ |
18 | sub-gammu-emb-gammu \ | 18 | libkcal \ |
19 | sub-libical \ | 19 | libkdepim \ |
20 | sub-libkcal \ | 20 | kabc \ |
21 | sub-microkde \ | 21 | kabc/formats/binary \ |
22 | sub-libkdepim \ | 22 | kabc/plugins/file \ |
23 | sub-kabc \ | 23 | kabc/plugins/dir \ |
24 | sub-korganizer \ | 24 | korganizer \ |
25 | sub-kaddressbook \ | 25 | kalarmd \ |
26 | sub-kabc-plugins-file \ | 26 | kaddressbook |
27 | sub-kabc-plugins-dir | 27 | |
28 | 28 | SUBDIRS_QTOPIA_PLUGIN = \ | |
29 | first: all | 29 | kabc/plugins/qtopia |
30 | 30 | ||
31 | all: Makefile $(SUBTARGETS) | 31 | SUBDIRS_OPIE_PLUGIN = \ |
32 | 32 | kabc/plugins/opie | |
33 | gammu/emb/common/$(MAKEFILE): | 33 | |
34 | @$(CHK_DIR_EXISTS) "gammu/emb/common" || $(MKDIR) "gammu/emb/common" | 34 | SUBDIRS_SHARP_PLUGIN = \ |
35 | cd gammu/emb/common && $(QMAKE) common.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 35 | kabc/plugins/sharpdtm |
36 | sub-gammu-emb-common: gammu/emb/common/$(MAKEFILE) FORCE | 36 | |
37 | cd gammu/emb/common && $(MAKE) -f $(MAKEFILE) | 37 | SUBDIRS_LDAP_PLUGIN = \ |
38 | 38 | kabc/plugins/ldap | |
39 | gammu/emb/gammu/$(MAKEFILE): | 39 | |
40 | @$(CHK_DIR_EXISTS) "gammu/emb/gammu" || $(MKDIR) "gammu/emb/gammu" | 40 | SUBDIRS_MICROMAIL = \ |
41 | cd gammu/emb/gammu && $(QMAKE) gammu.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 41 | kmicromail/libetpan \ |
42 | sub-gammu-emb-gammu: gammu/emb/gammu/$(MAKEFILE) FORCE | 42 | kmicromail/libmailwrapper \ |
43 | cd gammu/emb/gammu && $(MAKE) -f $(MAKEFILE) | 43 | kmicromail |
44 | 44 | ||
45 | libical/$(MAKEFILE): | 45 | SUBDIRS_GAMMU = \ |
46 | @$(CHK_DIR_EXISTS) "libical" || $(MKDIR) "libical" | 46 | gammu/emb/common \ |
47 | cd libical && $(QMAKE) libical.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 47 | gammu/emb/gammu |
48 | sub-libical: libical/$(MAKEFILE) FORCE | 48 | |
49 | cd libical && $(MAKE) -f $(MAKEFILE) | 49 | SUBDIRS_PWMANAGER = \ |
50 | 50 | pwmanager/pwmanager | |
51 | libkcal/$(MAKEFILE): | 51 | |
52 | @$(CHK_DIR_EXISTS) "libkcal" || $(MKDIR) "libkcal" | 52 | SUBDIRS = \ |
53 | cd libkcal && $(QMAKE) libkcal.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 53 | $(SUBDIRS_MICROKDE) \ |
54 | sub-libkcal: libkcal/$(MAKEFILE) FORCE | 54 | $(SUBDIRS_QTOPIA_PLUGIN) \ |
55 | cd libkcal && $(MAKE) -f $(MAKEFILE) | 55 | $(SUBDIRS_OPIE_PLUGIN) \ |
56 | 56 | $(SUBDIRS_SHARP_PLUGIN) \ | |
57 | microkde/$(MAKEFILE): | 57 | $(SUBDIRS_LDAP_PLUGIN) \ |
58 | @$(CHK_DIR_EXISTS) "microkde" || $(MKDIR) "microkde" | 58 | $(SUBDIRS_MICROMAIL) \ |
59 | cd microkde && $(QMAKE) microkde.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 59 | $(SUBDIRS_GAMMU) \ |
60 | sub-microkde: microkde/$(MAKEFILE) FORCE | 60 | $(SUBDIRS_PWMANAGER) |
61 | cd microkde && $(MAKE) -f $(MAKEFILE) | 61 | |
62 | 62 | ||
63 | libkdepim/$(MAKEFILE): | 63 | all: build_microkde \ |
64 | @$(CHK_DIR_EXISTS) "libkdepim" || $(MKDIR) "libkdepim" | 64 | build_qtopia_plugin \ |
65 | cd libkdepim && $(QMAKE) libkdepim.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 65 | build_opie_plugin \ |
66 | sub-libkdepim: libkdepim/$(MAKEFILE) FORCE | 66 | build_sharp_plugin \ |
67 | cd libkdepim && $(MAKE) -f $(MAKEFILE) | 67 | build_ldap_plugin \ |
68 | 68 | build_micromail \ | |
69 | kabc/$(MAKEFILE): | 69 | build_gammu \ |
70 | @$(CHK_DIR_EXISTS) "kabc" || $(MKDIR) "kabc" | 70 | build_pwmanager |
71 | cd kabc && $(QMAKE) kabc.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 71 | |
72 | sub-kabc: kabc/$(MAKEFILE) FORCE | 72 | |
73 | cd kabc && $(MAKE) -f $(MAKEFILE) | 73 | build_microkde: variable_test tmake |
74 | 74 | for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ | |
75 | korganizer/$(MAKEFILE): | 75 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
76 | @$(CHK_DIR_EXISTS) "korganizer" || $(MKDIR) "korganizer" | 76 | done |
77 | cd korganizer && $(QMAKE) korganizer.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 77 | |
78 | sub-korganizer: korganizer/$(MAKEFILE) FORCE | 78 | build_qtopia_plugin: build_microkde |
79 | cd korganizer && $(MAKE) -f $(MAKEFILE) | 79 | ifdef BUILD_NO_QTOPIA_PLUGIN |
80 | 80 | @echo == qtopia plugin not build. | |
81 | kaddressbook/$(MAKEFILE): | 81 | else |
82 | @$(CHK_DIR_EXISTS) "kaddressbook" || $(MKDIR) "kaddressbook" | 82 | for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \ |
83 | cd kaddressbook && $(QMAKE) kaddressbook.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 83 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
84 | sub-kaddressbook: kaddressbook/$(MAKEFILE) FORCE | 84 | done |
85 | cd kaddressbook && $(MAKE) -f $(MAKEFILE) | 85 | endif |
86 | 86 | ||
87 | kabc/plugins/file/$(MAKEFILE): | 87 | build_opie_plugin: build_microkde |
88 | @$(CHK_DIR_EXISTS) "kabc/plugins/file" || $(MKDIR) "kabc/plugins/file" | 88 | ifdef BUILD_NO_OPIE_PLUGIN |
89 | cd kabc/plugins/file && $(QMAKE) file.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 89 | @echo == opie plugin not build. |
90 | sub-kabc-plugins-file: kabc/plugins/file/$(MAKEFILE) FORCE | 90 | else |
91 | cd kabc/plugins/file && $(MAKE) -f $(MAKEFILE) | 91 | for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \ |
92 | 92 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | |
93 | kabc/plugins/dir/$(MAKEFILE): | 93 | done |
94 | @$(CHK_DIR_EXISTS) "kabc/plugins/dir" || $(MKDIR) "kabc/plugins/dir" | 94 | endif |
95 | cd kabc/plugins/dir && $(QMAKE) dir.pro "CONFIG+=thread" "CONFIG+=debug" -o $(MAKEFILE) | 95 | |
96 | sub-kabc-plugins-dir: kabc/plugins/dir/$(MAKEFILE) FORCE | 96 | build_sharp_plugin: build_microkde |
97 | cd kabc/plugins/dir && $(MAKE) -f $(MAKEFILE) | 97 | ifdef BUILD_NO_SHARP_PLUGIN |
98 | 98 | @echo == ldap plugin not build. | |
99 | Makefile: kdepim-desktop.pro /usr/local/qtgcc/mkspecs/default/qmake.conf | 99 | else |
100 | $(QMAKE) "CONFIG+=thread" "CONFIG+=debug" -o Makefile kdepim-desktop.pro | 100 | for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \ |
101 | qmake: qmake_all | 101 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
102 | @$(QMAKE) "CONFIG+=thread" "CONFIG+=debug" -o Makefile kdepim-desktop.pro | 102 | done |
103 | 103 | endif | |
104 | all: $(SUBTARGETS) | 104 | |
105 | qmake_all: gammu/emb/common/$(MAKEFILE) gammu/emb/gammu/$(MAKEFILE) libical/$(MAKEFILE) libkcal/$(MAKEFILE) microkde/$(MAKEFILE) libkdepim/$(MAKEFILE) kabc/$(MAKEFILE) korganizer/$(MAKEFILE) kaddressbook/$(MAKEFILE) kabc/plugins/file/$(MAKEFILE) kabc/plugins/dir/$(MAKEFILE) | 105 | build_ldap_plugin: build_microkde |
106 | ( [ -d gammu/emb/common ] && cd gammu/emb/common ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 106 | ifdef BUILD_NO_LDAP_PLUGIN |
107 | ( [ -d gammu/emb/gammu ] && cd gammu/emb/gammu ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 107 | @echo == ldap plugin not build. |
108 | ( [ -d libical ] && cd libical ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 108 | else |
109 | ( [ -d libkcal ] && cd libkcal ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 109 | for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \ |
110 | ( [ -d microkde ] && cd microkde ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 110 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
111 | ( [ -d libkdepim ] && cd libkdepim ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 111 | done |
112 | ( [ -d kabc ] && cd kabc ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 112 | endif |
113 | ( [ -d korganizer ] && cd korganizer ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 113 | |
114 | ( [ -d kaddressbook ] && cd kaddressbook ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 114 | |
115 | ( [ -d kabc/plugins/file ] && cd kabc/plugins/file ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 115 | build_micromail: build_microkde |
116 | ( [ -d kabc/plugins/dir ] && cd kabc/plugins/dir ; grep "^qmake_all:" $(MAKEFILE) && $(MAKE) -f $(MAKEFILE) qmake_all; ) || true | 116 | ifdef BUILD_NO_MICROMAIL |
117 | clean uicables mocables uiclean mocclean lexclean yaccclean : qmake_all FORCE | 117 | @echo == kmicromail not build. |
118 | ( [ -d gammu/emb/common ] && cd gammu/emb/common ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 118 | else |
119 | ( [ -d gammu/emb/gammu ] && cd gammu/emb/gammu ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 119 | for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \ |
120 | ( [ -d libical ] && cd libical ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 120 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
121 | ( [ -d libkcal ] && cd libkcal ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 121 | done |
122 | ( [ -d microkde ] && cd microkde ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 122 | endif |
123 | ( [ -d libkdepim ] && cd libkdepim ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 123 | |
124 | ( [ -d kabc ] && cd kabc ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 124 | build_gammu: variable_test tmake |
125 | ( [ -d korganizer ] && cd korganizer ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 125 | ifdef BUILD_NO_GAMMU |
126 | ( [ -d kaddressbook ] && cd kaddressbook ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 126 | @echo == gammu not build. |
127 | ( [ -d kabc/plugins/file ] && cd kabc/plugins/file ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 127 | else |
128 | ( [ -d kabc/plugins/dir ] && cd kabc/plugins/dir ; $(MAKE) -f $(MAKEFILE) $@; ) || true | 128 | for i in $(SUBDIRS_GAMMU); do pushd $$i; \ |
129 | uninstall_subdirs: qmake_all FORCE | 129 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
130 | ( [ -d gammu/emb/common ] && cd gammu/emb/common ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 130 | done |
131 | ( [ -d gammu/emb/gammu ] && cd gammu/emb/gammu ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 131 | endif |
132 | ( [ -d libical ] && cd libical ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 132 | |
133 | ( [ -d libkcal ] && cd libkcal ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 133 | build_pwmanager: build_microkde |
134 | ( [ -d microkde ] && cd microkde ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 134 | ifdef BUILD_NO_PWMANAGER |
135 | ( [ -d libkdepim ] && cd libkdepim ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 135 | @echo == pwmanager not build. |
136 | ( [ -d kabc ] && cd kabc ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 136 | else |
137 | ( [ -d korganizer ] && cd korganizer ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 137 | for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \ |
138 | ( [ -d kaddressbook ] && cd kaddressbook ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 138 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
139 | ( [ -d kabc/plugins/file ] && cd kabc/plugins/file ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 139 | done |
140 | ( [ -d kabc/plugins/dir ] && cd kabc/plugins/dir ; $(MAKE) -f $(MAKEFILE) uninstall; ) || true | 140 | endif |
141 | install_subdirs: qmake_all FORCE | 141 | |
142 | ( [ -d gammu/emb/common ] && cd gammu/emb/common ; $(MAKE) -f $(MAKEFILE) install; ) || true | 142 | |
143 | ( [ -d gammu/emb/gammu ] && cd gammu/emb/gammu ; $(MAKE) -f $(MAKEFILE) install; ) || true | 143 | variable_info: |
144 | ( [ -d libical ] && cd libical ; $(MAKE) -f $(MAKEFILE) install; ) || true | 144 | @echo -------------------------------------- |
145 | ( [ -d libkcal ] && cd libkcal ; $(MAKE) -f $(MAKEFILE) install; ) || true | 145 | @echo KDEPIM buildsystem, variableinfo... |
146 | ( [ -d microkde ] && cd microkde ; $(MAKE) -f $(MAKEFILE) install; ) || true | 146 | @echo KDEPIMDIR=$(KDEPIMDIR) |
147 | ( [ -d libkdepim ] && cd libkdepim ; $(MAKE) -f $(MAKEFILE) install; ) || true | 147 | @echo QTDIR=$(QTDIR) |
148 | ( [ -d kabc ] && cd kabc ; $(MAKE) -f $(MAKEFILE) install; ) || true | 148 | @echo QPEDIR=$(QPEDIR) |
149 | ( [ -d korganizer ] && cd korganizer ; $(MAKE) -f $(MAKEFILE) install; ) || true | 149 | @echo OPIEDIR=$(OPIEDIR) |
150 | ( [ -d kaddressbook ] && cd kaddressbook ; $(MAKE) -f $(MAKEFILE) install; ) || true | 150 | @echo PLATFORM=$(PLATFORM) |
151 | ( [ -d kabc/plugins/file ] && cd kabc/plugins/file ; $(MAKE) -f $(MAKEFILE) install; ) || true | 151 | @echo RELEASE_DEBUG=$(RELEASE_DEBUG) |
152 | ( [ -d kabc/plugins/dir ] && cd kabc/plugins/dir ; $(MAKE) -f $(MAKEFILE) install; ) || true | 152 | @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL) |
153 | distclean: qmake_all FORCE | 153 | @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN) |
154 | ( [ -d gammu/emb/common ] && cd gammu/emb/common ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 154 | @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN) |
155 | ( [ -d gammu/emb/gammu ] && cd gammu/emb/gammu ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 155 | @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN) |
156 | ( [ -d libical ] && cd libical ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 156 | @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) |
157 | ( [ -d libkcal ] && cd libkcal ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 157 | ifndef BUILD_NO_SHARP_PLUGIN |
158 | ( [ -d microkde ] && cd microkde ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 158 | @echo SHARPDTMSDK=$(SHARPDTMSDK) |
159 | ( [ -d libkdepim ] && cd libkdepim ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 159 | endif |
160 | ( [ -d kabc ] && cd kabc ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 160 | @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) |
161 | ( [ -d korganizer ] && cd korganizer ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 161 | @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER) |
162 | ( [ -d kaddressbook ] && cd kaddressbook ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 162 | @echo -------------------------------------- |
163 | ( [ -d kabc/plugins/file ] && cd kabc/plugins/file ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 163 | |
164 | ( [ -d kabc/plugins/dir ] && cd kabc/plugins/dir ; $(MAKE) -f $(MAKEFILE) $@; $(DEL_FILE) $(MAKEFILE); ) || true | 164 | variable_test: variable_info |
165 | 165 | @echo KDEPIM buildsystem, variablecheck... | |
166 | install: install_subdirs | 166 | ifndef KDEPIMDIR |
167 | 167 | @echo KDEPIMDIR is not defined. | |
168 | uninstall: uninstall_subdirs | 168 | $(error KDEPIMDIR is not defined) |
169 | 169 | endif | |
170 | FORCE: | 170 | ifndef PLATFORM |
171 | @echo PLATFORM is not defined. | ||
172 | $(error PLATFORM is not defined) | ||
173 | endif | ||
174 | ifdef BUILD_NO_LDAP_PLUGIN | ||
175 | @echo LDAP PLUGIN will not be build, because BUILD_NO_LDAP_PLUGIN is set to $(BUILD_NO_LDAP_PLUGIN) | ||
176 | endif | ||
177 | ifdef BUILD_NO_OPIE_PLUGIN | ||
178 | @echo OPIE PLUGIN will not be build, because BUILD_NO_OPIE_PLUGIN is set to $(BUILD_NO_OPIE_PLUGIN) | ||
179 | endif | ||
180 | ifdef BUILD_NO_QTOPIA_PLUGIN | ||
181 | @echo QTOPIA PLUGIN will not be build, because BUILD_NO__QTOPIA_PLUGIN is set to $(BUILD_NO__QTOPIA_PLUGIN) | ||
182 | endif | ||
183 | ifdef BUILD_NO_MICROMAIL | ||
184 | @echo MICROMAIL will not be build, because BUILD_NO_MICROMAIL is set to $(BUILD_NO_MICROMAIL) | ||
185 | endif | ||
186 | ifdef BUILD_NO_SHARP_PLUGIN | ||
187 | @echo SHARP PLUGIN will not be build, because BUILD_NO_SHARP_PLUGIN is set to $(BUILD_NO_SHARP_PLUGIN) | ||
188 | else | ||
189 | ifndef SHARPDTMSDK | ||
190 | @echo SHARP PLUGIN can not be build, because SHARPDTMSDK is set to $(SHARPDTMSDK) | ||
191 | $(error SHARPDTMSDK is not defined) | ||
192 | endif | ||
193 | endif | ||
194 | ifdef BUILD_NO_GAMMU | ||
195 | @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU) | ||
196 | endif | ||
197 | ifdef BUILD_NO_PWMANAGER | ||
198 | @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER) | ||
199 | endif | ||
200 | @echo -------------------------------------- | ||
201 | |||
202 | |||
203 | objects: | ||
204 | for i in $(SUBDIRS); do mkdir -p $$i/obj/$(PLATFORM); done | ||
205 | for i in $(SUBDIRS); do mkdir -p $$i/moc/$(PLATFORM); done | ||
206 | mkdir -p libical/lib/$(PLATFORM) | ||
207 | |||
208 | clean: | ||
209 | rm -rf libical/lib/$(PLATFORM)/*; | ||
210 | for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\ | ||
211 | rm -f obj/$(PLATFORM)/*; rm -f moc/$(PLATFORM)/*; rm Makefile$(PLATFORM); popd; \ | ||
212 | done | ||
213 | |||
214 | install: | ||
215 | |||
216 | cd bin/kdepim; make install | ||
217 | cp -r Pim $(QPEDIR)/apps | ||
218 | cp db2file/db2file $(QPEDIR)/bin/db2file | ||
219 | cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop | ||
220 | cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop | ||
221 | cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop | ||
222 | cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop | ||
223 | |||
224 | dist: | ||
225 | @echo Dont forget to do "make install" before "make dist" | ||
226 | rm -f *arm.ipk | ||
227 | rm -f *~ | ||
228 | cd ..; tar czf kdepim.src.tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim | ||
229 | ./mkipks kmicrokdelibs.control | ||
230 | ./mkipks korganizer.control | ||
231 | ./mkipks kaddressbook.control | ||
232 | ifndef BUILD_NO_MICROMAIL | ||
233 | ./mkipks kopiemail.control | ||
234 | endif | ||
235 | ./mkipks korganizer-alarm.control | ||
236 | ifndef BUILD_NO_GAMMU | ||
237 | ./mkipks phoneaccess.control | ||
238 | endif | ||
239 | ifndef BUILD_NO_PWMANAGER | ||
240 | ./mkipks pwmanager.control | ||
241 | endif | ||
242 | ./mkipks pim_TAB_icon.control | ||
243 | |||
244 | tmake: objects \ | ||
245 | qtcompat/Makefile$(PLATFORM) \ | ||
246 | microkde/Makefile$(PLATFORM) \ | ||
247 | libkcal/Makefile$(PLATFORM) \ | ||
248 | libkdepim/Makefile$(PLATFORM) \ | ||
249 | korganizer/Makefile$(PLATFORM) \ | ||
250 | kalarmd/Makefile$(PLATFORM) \ | ||
251 | libical/src/libical/Makefile$(PLATFORM) \ | ||
252 | libical/src/libicalss/Makefile$(PLATFORM) \ | ||
253 | kabc/Makefile$(PLATFORM) \ | ||
254 | kabc/formats/binary/Makefile$(PLATFORM) \ | ||
255 | kabc/plugins/file/Makefile$(PLATFORM) \ | ||
256 | kabc/plugins/dir/Makefile$(PLATFORM) \ | ||
257 | kabc/plugins/ldap/Makefile$(PLATFORM) \ | ||
258 | kabc/plugins/opie/Makefile$(PLATFORM) \ | ||
259 | kabc/plugins/qtopia/Makefile$(PLATFORM) \ | ||
260 | kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ | ||
261 | kaddressbook/Makefile$(PLATFORM) \ | ||
262 | kmicromail/Makefile$(PLATFORM) \ | ||
263 | kmicromail/libetpan/Makefile$(PLATFORM) \ | ||
264 | kmicromail/libmailwrapper/Makefile$(PLATFORM) \ | ||
265 | gammu/emb/common/Makefile$(PLATFORM) \ | ||
266 | gammu/emb/gammu/Makefile$(PLATFORM) \ | ||
267 | pwmanager/pwmanager/Makefile$(PLATFORM) \ | ||
268 | |||
269 | qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro | ||
270 | cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM) | ||
271 | |||
272 | microkde/Makefile$(PLATFORM): microkde/microkdeE.pro | ||
273 | cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM) | ||
274 | |||
275 | libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro | ||
276 | cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM) | ||
277 | |||
278 | |||
279 | libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro | ||
280 | cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM) | ||
281 | |||
282 | kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro | ||
283 | cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM) | ||
284 | |||
285 | korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro | ||
286 | cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM) | ||
287 | |||
288 | libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro | ||
289 | cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM) | ||
290 | |||
291 | libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro | ||
292 | cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM) | ||
293 | |||
294 | kabc/Makefile$(PLATFORM): kabc/kabcE.pro | ||
295 | cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM) | ||
296 | |||
297 | kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro | ||
298 | cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) | ||
299 | |||
300 | kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro | ||
301 | cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM) | ||
302 | |||
303 | kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro | ||
304 | cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM) | ||
305 | |||
306 | kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro | ||
307 | cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM) | ||
308 | |||
309 | kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro | ||
310 | cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM) | ||
311 | |||
312 | kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro | ||
313 | cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM) | ||
314 | |||
315 | kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro | ||
316 | cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM) | ||
317 | |||
318 | kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro | ||
319 | cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM) | ||
320 | |||
321 | kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro | ||
322 | cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM) | ||
323 | |||
324 | kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro | ||
325 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM) | ||
326 | |||
327 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro | ||
328 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM) | ||
329 | |||
330 | gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro | ||
331 | cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM) | ||
332 | |||
333 | gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro | ||
334 | cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM) | ||
335 | |||
336 | pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro | ||
337 | cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" pwmanagerE.pro -o Makefile$(PLATFORM) | ||
171 | 338 | ||
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index e17297a..2f88091 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -1,202 +1,214 @@ | |||
1 | Info about the changes in new versions of KDE-Pim/Pi | 1 | Info about the changes in new versions of KDE-Pim/Pi |
2 | 2 | ||
3 | ********** VERSION 1.9.8 ************ | 3 | ********** VERSION 1.9.8 ************ |
4 | 4 | ||
5 | Fixed character decoding in OM/Pi. | 5 | Fixed character decoding in OM/Pi. |
6 | (e.g. German "Umlaute" were not displayed properly.) | 6 | (e.g. German "Umlaute" were not displayed properly.) |
7 | 7 | ||
8 | Made is possible to reparent todos in KO/Pi. | 8 | Made is possible to reparent todos in KO/Pi. |
9 | Use contextmenu or keys (look at Help-Keys + Colors) for that. | 9 | Use contextmenu or keys (look at Help-Keys + Colors) for that. |
10 | 10 | ||
11 | Added the missing Sync-Howto and WhatsNew to the packages. | ||
12 | |||
13 | KO/Pi on Linux desktop can now sync with KDE desktop. | ||
14 | That means: When using KO/Pi on Linux desktop for syncing with | ||
15 | KDE desktop and the Zaurus, the Zaurus can be synced now | ||
16 | with all KDE-Calendar resources, not only with one local file. | ||
17 | (That makes it possible to sync the Zaurus with the | ||
18 | calendar data on a Kolab server) | ||
19 | |||
20 | KA/Pi syncing with KDE desktop will be available in the next version. | ||
21 | |||
22 | |||
11 | ********** VERSION 1.9.7 ************ | 23 | ********** VERSION 1.9.7 ************ |
12 | 24 | ||
13 | KO/Pi - KA/Pi on Windows: | 25 | KO/Pi - KA/Pi on Windows: |
14 | Now a directory can be defined by the user, where the | 26 | Now a directory can be defined by the user, where the |
15 | application/config data should be saved. | 27 | application/config data should be saved. |
16 | Define your desired path in the evironment variable | 28 | Define your desired path in the evironment variable |
17 | MICROKDEHOME | 29 | MICROKDEHOME |
18 | before starting KO/Pi or KA/Pi. | 30 | before starting KO/Pi or KA/Pi. |
19 | 31 | ||
20 | An easy Kx/Pi to Kx/Pi syncing is now possible | 32 | An easy Kx/Pi to Kx/Pi syncing is now possible |
21 | (it is called Pi-Sync) via network. | 33 | (it is called Pi-Sync) via network. |
22 | Please look at the Sync Howto. | 34 | Please look at the Sync Howto. |
23 | 35 | ||
24 | Exporting of calendar data and contacts to mobile phones is now possible. | 36 | Exporting of calendar data and contacts to mobile phones is now possible. |
25 | The SyncHowto is updated with information howto | 37 | The SyncHowto is updated with information howto |
26 | access/sync mobile phones. | 38 | access/sync mobile phones. |
27 | Please look at the Sync Howto. | 39 | Please look at the Sync Howto. |
28 | 40 | ||
29 | Now KO/Pi and KA/Pi on the Zaurus can receive data via infrared directly. | 41 | Now KO/Pi and KA/Pi on the Zaurus can receive data via infrared directly. |
30 | Please disable Fastload for the original contact/calendar applications | 42 | Please disable Fastload for the original contact/calendar applications |
31 | and close them. | 43 | and close them. |
32 | KO/Pi and KA/Pi must be running in order to receive the data. | 44 | KO/Pi and KA/Pi must be running in order to receive the data. |
33 | (KO/Pi and KA/Pi are always running if Fastload for them is enabled!) | 45 | (KO/Pi and KA/Pi are always running if Fastload for them is enabled!) |
34 | 46 | ||
35 | In the KA/Pi details view are now the preferred tel. numbers displayed on top | 47 | In the KA/Pi details view are now the preferred tel. numbers displayed on top |
36 | of the other data ( emails/tel.numbers/addresses) | 48 | of the other data ( emails/tel.numbers/addresses) |
37 | 49 | ||
38 | Fixed some syncing problems in KA/Pi. | 50 | Fixed some syncing problems in KA/Pi. |
39 | 51 | ||
40 | Added font settings for the KA/Pi details view. | 52 | Added font settings for the KA/Pi details view. |
41 | Added fields "children's name" and "gender" to KA/Pi. | 53 | Added fields "children's name" and "gender" to KA/Pi. |
42 | 54 | ||
43 | Made searching in KA/Pi better: | 55 | Made searching in KA/Pi better: |
44 | Now the first item in a view is selected after a search automatically and | 56 | Now the first item in a view is selected after a search automatically and |
45 | the views can be scrolled up/down when the search input field has the keyboard focus. | 57 | the views can be scrolled up/down when the search input field has the keyboard focus. |
46 | 58 | ||
47 | And, of course, fixed a bunch of reported bugs in KO/Pi and KA/Pi. | 59 | And, of course, fixed a bunch of reported bugs in KO/Pi and KA/Pi. |
48 | 60 | ||
49 | 61 | ||
50 | ********** VERSION 1.9.6 ************ | 62 | ********** VERSION 1.9.6 ************ |
51 | 63 | ||
52 | Changes in the external application communication on the Zaurus | 64 | Changes in the external application communication on the Zaurus |
53 | in order to use less RAM when the apps are running. | 65 | in order to use less RAM when the apps are running. |
54 | First syncing of addressbooks (KA/Pi) is possible. | 66 | First syncing of addressbooks (KA/Pi) is possible. |
55 | 67 | ||
56 | 68 | ||
57 | ********** VERSION 1.9.5a ************ | 69 | ********** VERSION 1.9.5a ************ |
58 | 70 | ||
59 | Fixed a bug in KO/Pi in the SharpDTM sync of version 1.9.5. | 71 | Fixed a bug in KO/Pi in the SharpDTM sync of version 1.9.5. |
60 | Fixed some small bugs. | 72 | Fixed some small bugs. |
61 | KA/Pi shows now the birthday in summary view. | 73 | KA/Pi shows now the birthday in summary view. |
62 | Now OM/Pi and KA/Pi are using the date format defined in KO/Pi | 74 | Now OM/Pi and KA/Pi are using the date format defined in KO/Pi |
63 | for displaying dates. | 75 | for displaying dates. |
64 | 76 | ||
65 | 77 | ||
66 | ********** VERSION 1.9.5 ************ | 78 | ********** VERSION 1.9.5 ************ |
67 | 79 | ||
68 | There is still no Addressbook syncing! | 80 | There is still no Addressbook syncing! |
69 | 81 | ||
70 | New in 1.9.5: | 82 | New in 1.9.5: |
71 | 83 | ||
72 | Many bugfixes. | 84 | Many bugfixes. |
73 | Better searching in KA/Pi. | 85 | Better searching in KA/Pi. |
74 | You can configure in KA/Pi if you want to search only after | 86 | You can configure in KA/Pi if you want to search only after |
75 | <return> key pressed. | 87 | <return> key pressed. |
76 | 88 | ||
77 | Better mail downloading in OM/Pi. | 89 | Better mail downloading in OM/Pi. |
78 | 90 | ||
79 | First experimental alpha version of sync of KO/Pi with mobile phones. | 91 | First experimental alpha version of sync of KO/Pi with mobile phones. |
80 | See gammu documentation for supported phones. | 92 | See gammu documentation for supported phones. |
81 | You need to install the package kammu_1.9.5_arm.ipk for sync of KO/Pi with mobile phones. kammu_1.9.5_arm.ipk needs libbluetooth and libsdp. | 93 | You need to install the package kammu_1.9.5_arm.ipk for sync of KO/Pi with mobile phones. kammu_1.9.5_arm.ipk needs libbluetooth and libsdp. |
82 | Quick hint how to use: | 94 | Quick hint how to use: |
83 | NOTE: MOBILE PHONE SYNC IS EXPERIMENTAL! | 95 | NOTE: MOBILE PHONE SYNC IS EXPERIMENTAL! |
84 | Install kammu_1.9.5_arm.ipk , libbluetooth and libsdp. | 96 | Install kammu_1.9.5_arm.ipk , libbluetooth and libsdp. |
85 | Create syncprofile - mobile device | 97 | Create syncprofile - mobile device |
86 | Remove entry for model. (Leave empty ). | 98 | Remove entry for model. (Leave empty ). |
87 | Enable infrared on Zaurus and your Phone. | 99 | Enable infrared on Zaurus and your Phone. |
88 | Sync. | 100 | Sync. |
89 | To get a more detailed log, start kopi from konsole. | 101 | To get a more detailed log, start kopi from konsole. |
90 | 102 | ||
91 | ********** VERSION 1.9.4 ************ | 103 | ********** VERSION 1.9.4 ************ |
92 | 104 | ||
93 | This is the version 1.9.4 of KDE-Pim/Pi for the Zaurus. | 105 | This is the version 1.9.4 of KDE-Pim/Pi for the Zaurus. |
94 | 106 | ||
95 | WARNING: | 107 | WARNING: |
96 | PLEASE BACKUP ALL YOUR DATA! | 108 | PLEASE BACKUP ALL YOUR DATA! |
97 | We have changed a lot and maybe there are some unknown problems. | 109 | We have changed a lot and maybe there are some unknown problems. |
98 | 110 | ||
99 | SYNC HANDLING HAS CHANGED! | 111 | SYNC HANDLING HAS CHANGED! |
100 | Such that, if you sync now with an already synded device, you will duplicated entries after the first sync. | 112 | Such that, if you sync now with an already synded device, you will duplicated entries after the first sync. |
101 | (This change was introduced to make it possible to sync with mobile phones, which will be available later (maybe in 4 weeks). | 113 | (This change was introduced to make it possible to sync with mobile phones, which will be available later (maybe in 4 weeks). |
102 | 114 | ||
103 | You need the kmicrokdelibs_1.9.4_arm.ipk as a base for the other programs. | 115 | You need the kmicrokdelibs_1.9.4_arm.ipk as a base for the other programs. |
104 | If you get the error: "Install only possible in main memory", just try it again to install it on SD card. That worked for me. And it was reported that rebooting Qtopia did help in this case as well. | 116 | If you get the error: "Install only possible in main memory", just try it again to install it on SD card. That worked for me. And it was reported that rebooting Qtopia did help in this case as well. |
105 | 117 | ||
106 | As programs are available: | 118 | As programs are available: |
107 | KO/Pi (korganizer ipk) - a calendar program. | 119 | KO/Pi (korganizer ipk) - a calendar program. |
108 | KA/Pi (kaddressbook ipk ) - an addressbook | 120 | KA/Pi (kaddressbook ipk ) - an addressbook |
109 | OM/Pi (kopiemail ipk ) an email program with pop/smtp and IMAP support. | 121 | OM/Pi (kopiemail ipk ) an email program with pop/smtp and IMAP support. |
110 | 122 | ||
111 | An alarm notification program ( korganizer-alarm ipk ) for KO/Pi that notifies you about alarms, even if the Zaurus is in suspend mode. | 123 | An alarm notification program ( korganizer-alarm ipk ) for KO/Pi that notifies you about alarms, even if the Zaurus is in suspend mode. |
112 | (If you do not see an icon in the taskbar after installing korganizer-alarm, please restart Qtopia) | 124 | (If you do not see an icon in the taskbar after installing korganizer-alarm, please restart Qtopia) |
113 | 125 | ||
114 | All the applications are installed in a "Pim" TAB. | 126 | All the applications are installed in a "Pim" TAB. |
115 | If this TAB is new on your system, you can get an icon in this TAB by installing pim_TAB_icon_1.9.4_arm.ipk | 127 | If this TAB is new on your system, you can get an icon in this TAB by installing pim_TAB_icon_1.9.4_arm.ipk |
116 | 128 | ||
117 | All the application are integrated. | 129 | All the application are integrated. |
118 | Such that you can choose in KO/Pi the attendees of a meeting from the addresses in KA/Pi. When you click in KA/Pi on the email address, OM/Pi is started to write the mail. | 130 | Such that you can choose in KO/Pi the attendees of a meeting from the addresses in KA/Pi. When you click in KA/Pi on the email address, OM/Pi is started to write the mail. |
119 | 131 | ||
120 | HINT: | 132 | HINT: |
121 | If you install KPhone/Pi 0.9.7, it will be called, if you click in KA/Pi on a phone number. | 133 | If you install KPhone/Pi 0.9.7, it will be called, if you click in KA/Pi on a phone number. |
122 | 134 | ||
123 | What's new? | 135 | What's new? |
124 | 136 | ||
125 | SYNC HANDLING HAS CHANGED! | 137 | SYNC HANDLING HAS CHANGED! |
126 | Such that, if you sync now with an already synded device, you will duplicated entries after the first sync. | 138 | Such that, if you sync now with an already synded device, you will duplicated entries after the first sync. |
127 | (This change was introduced to make it possible to sync with mobile phones, which will be available later (maybe in 4 weeks). | 139 | (This change was introduced to make it possible to sync with mobile phones, which will be available later (maybe in 4 weeks). |
128 | 140 | ||
129 | New in OM/Pi: | 141 | New in OM/Pi: |
130 | When copying(i.e. downloading mails) , you can specify, that only mails of a given size should be downloaded. Added mail copy possibility for selected mails. | 142 | When copying(i.e. downloading mails) , you can specify, that only mails of a given size should be downloaded. Added mail copy possibility for selected mails. |
131 | 143 | ||
132 | New in KO/Pi: | 144 | New in KO/Pi: |
133 | French is now available for KO/Pi. | 145 | French is now available for KO/Pi. |
134 | Choose menu:Actions - Configure:TAB locale | 146 | Choose menu:Actions - Configure:TAB locale |
135 | Syncing has changed. | 147 | Syncing has changed. |
136 | Phone sync available soon. | 148 | Phone sync available soon. |
137 | Not much changes, I cannot remember them ... | 149 | Not much changes, I cannot remember them ... |
138 | 150 | ||
139 | New in KA/Pi: | 151 | New in KA/Pi: |
140 | Beaming possible. | 152 | Beaming possible. |
141 | Sharp DTM readonly access possible( create a new DTM resource ); | 153 | Sharp DTM readonly access possible( create a new DTM resource ); |
142 | Better searching possible. | 154 | Better searching possible. |
143 | Search is performed only after pressing the return key. | 155 | Search is performed only after pressing the return key. |
144 | Use wildcard * to specify parts of a name. | 156 | Use wildcard * to specify parts of a name. |
145 | 157 | ||
146 | Better name/email selection dialog (called from KO/Pi or OM/Pi). In this dialog, now searching is possible. Like in KA/Pi, use return key and wildcard * . | 158 | Better name/email selection dialog (called from KO/Pi or OM/Pi). In this dialog, now searching is possible. Like in KA/Pi, use return key and wildcard * . |
147 | 159 | ||
148 | A big improvement is the new management of the contact access. | 160 | A big improvement is the new management of the contact access. |
149 | In version 1.9.3, every application was using their own addressbook access data. | 161 | In version 1.9.3, every application was using their own addressbook access data. |
150 | That means, the addressbook was loaded up to three times in the memory, when accessed by KA/Pi, KO/Pi and OM/Pi. | 162 | That means, the addressbook was loaded up to three times in the memory, when accessed by KA/Pi, KO/Pi and OM/Pi. |
151 | That was wasting of memory, if you had several hundreds of contacts. | 163 | That was wasting of memory, if you had several hundreds of contacts. |
152 | 164 | ||
153 | Now only KA/Pi accesses the addressbook. | 165 | Now only KA/Pi accesses the addressbook. |
154 | If KO/Pi or OM/Pi want to get some name/email data, they request KA/Pi to open the name/email selection dialog and send it back to them. | 166 | If KO/Pi or OM/Pi want to get some name/email data, they request KA/Pi to open the name/email selection dialog and send it back to them. |
155 | If you click on an attendee in a meeting, its contact data is displayed in KA/Pi directly. | 167 | If you click on an attendee in a meeting, its contact data is displayed in KA/Pi directly. |
156 | That means, if KO/Pi or OM/Pi want to access contact data, KA/Pi is started first. | 168 | That means, if KO/Pi or OM/Pi want to access contact data, KA/Pi is started first. |
157 | 169 | ||
158 | New in the KO/Pi alarm applet: | 170 | New in the KO/Pi alarm applet: |
159 | Configure your own timer popup menu! | 171 | Configure your own timer popup menu! |
160 | (Text and minutes for timer countdown) | 172 | (Text and minutes for timer countdown) |
161 | Just edit the file | 173 | Just edit the file |
162 | (yourhomedir)/.kopialarmtimerrc | 174 | (yourhomedir)/.kopialarmtimerrc |
163 | and start/stop a timer to get a new menu with the data of this file. | 175 | and start/stop a timer to get a new menu with the data of this file. |
164 | 176 | ||
165 | ********** VERSION 1.9.3 ************ | 177 | ********** VERSION 1.9.3 ************ |
166 | 1) | 178 | 1) |
167 | Now KO/Pi on Windows imports directly the calendar data of | 179 | Now KO/Pi on Windows imports directly the calendar data of |
168 | an installed Outlook. Should work with OL version >= 2000. | 180 | an installed Outlook. Should work with OL version >= 2000. |
169 | 181 | ||
170 | ********** VERSION 1.9.2 ************ | 182 | ********** VERSION 1.9.2 ************ |
171 | 1) | 183 | 1) |
172 | KDE-Pim/Pi has got a new member: | 184 | KDE-Pim/Pi has got a new member: |
173 | KmicroMail (KM/Pi) is a mail program, | 185 | KmicroMail (KM/Pi) is a mail program, |
174 | which can handle IMAP and POP mail access. | 186 | which can handle IMAP and POP mail access. |
175 | It is based on Opie-Mail v3. | 187 | It is based on Opie-Mail v3. |
176 | All dependencies to the Opie libraries ar removed, | 188 | All dependencies to the Opie libraries ar removed, |
177 | such that no additional Opie lib is needed. | 189 | such that no additional Opie lib is needed. |
178 | It is already integrated in KO/Pi and KA/Pi. | 190 | It is already integrated in KO/Pi and KA/Pi. |
179 | It it now available for the Zaurus,probably it | 191 | It it now available for the Zaurus,probably it |
180 | will be available for other platforms later. | 192 | will be available for other platforms later. |
181 | Hint: | 193 | Hint: |
182 | Create your own contact (name + email) | 194 | Create your own contact (name + email) |
183 | in KA/Pi, select this contact and choose menu: | 195 | in KA/Pi, select this contact and choose menu: |
184 | Settings - Set Who Am I. | 196 | Settings - Set Who Am I. |
185 | Now the settings of this contact are used as | 197 | Now the settings of this contact are used as |
186 | the sender data in KM/Pi. | 198 | the sender data in KM/Pi. |
187 | 2) | 199 | 2) |
188 | KDE-Pim/Pi is split up in five different | 200 | KDE-Pim/Pi is split up in five different |
189 | packages now precompiled for Sharp Zaurus: | 201 | packages now precompiled for Sharp Zaurus: |
190 | --kmicrokdelibs_1.9.2_arm.ipk | 202 | --kmicrokdelibs_1.9.2_arm.ipk |
191 | The libs are needed for any | 203 | The libs are needed for any |
192 | of the following programs: | 204 | of the following programs: |
193 | --kaddressbook_1.9.2_arm.ipk | 205 | --kaddressbook_1.9.2_arm.ipk |
194 | --kmicromail_1.9.2_arm.ipk | 206 | --kmicromail_1.9.2_arm.ipk |
195 | --korganizer_1.9.2_arm.ipk | 207 | --korganizer_1.9.2_arm.ipk |
196 | Independ from that, there is the alarm applet | 208 | Independ from that, there is the alarm applet |
197 | available for KO/Pi, which also offers | 209 | available for KO/Pi, which also offers |
198 | quick access for a new mail or | 210 | quick access for a new mail or |
199 | showing the addressbook.: | 211 | showing the addressbook.: |
200 | --korganizer-alarm_1.9.2_arm.ipk | 212 | --korganizer-alarm_1.9.2_arm.ipk |
201 | Independend means, that the alarm applet | 213 | Independend means, that the alarm applet |
202 | does not need any of the libs or programs above to run. | 214 | does not need any of the libs or programs above to run. |
diff --git a/kmicrokdelibs.control b/kmicrokdelibs.control index ef541a5..a91d3ad 100644 --- a/kmicrokdelibs.control +++ b/kmicrokdelibs.control | |||
@@ -1,14 +1,14 @@ | |||
1 | Files: bin/db2file lib/libmicro* pics/kdepim/LICENCE.TXT | 1 | Files: bin/db2file lib/libmicro* pics/kdepim/LICENCE.TXT pics/kdepim/SyncHowto.txt pics/kdepim/WhatsNew.txt |
2 | 2 | ||
3 | Priority: optional | 3 | Priority: optional |
4 | Section: qpe/pim | 4 | Section: qpe/pim |
5 | Maintainer: Lutz Rogowski <lutz@pi-sync.net> | 5 | Maintainer: Lutz Rogowski <lutz@pi-sync.net> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Version: $KDEPIM_VERSION | 7 | Version: $KDEPIM_VERSION |
8 | License: GPL | 8 | License: GPL |
9 | Depends: | 9 | Depends: |
10 | Description: KOrganizer/Pi and Kaddressbook/Pi | 10 | Description: KOrganizer/Pi and Kaddressbook/Pi |
11 | The embedded version of KOrganizer/Platform-independend, | 11 | The embedded version of KOrganizer/Platform-independend, |
12 | the KDE calendar and scheduling program | 12 | the KDE calendar and scheduling program |
13 | optimized for 640x480 and 320x240 resolution | 13 | optimized for 640x480 and 320x240 resolution |
14 | on Zaurus PDA | 14 | on Zaurus PDA |