summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile7
-rw-r--r--Makefile.Embedded7
-rw-r--r--kabc/kabcE.pro2
-rw-r--r--kaddressbook.control5
-rw-r--r--kmicromail/libetpan/libetpanE.pro2
-rw-r--r--kmicromail/libmailwrapper/libmailwrapperE.pro2
-rw-r--r--kopiemail.control6
-rw-r--r--ksharpPIM-DTMaccess.control (renamed from ksharpPIM_DTMaccess.control)0
8 files changed, 18 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index b677087..467710f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,365 +1,368 @@
1export KDEPIMDIR = $(shell pwd) 1export KDEPIMDIR = $(shell pwd)
2 2
3export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version) 3export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version)
4 4
5ifeq ($(PLATFORM) , zaurus) 5ifeq ($(PLATFORM) , zaurus)
6 BUILD_NO_LDAP_PLUGIN=1 6 BUILD_NO_LDAP_PLUGIN=1
7endif 7endif
8 8
9ifneq ($(PLATFORM) , zaurus) 9ifneq ($(PLATFORM) , zaurus)
10 BUILD_NO_SHARP_PLUGIN=1 10 BUILD_NO_SHARP_PLUGIN=1
11endif 11endif
12 12
13#opie plugin is deprecated. The qtopia plugin handles the task from now on. 13#opie plugin is deprecated. The qtopia plugin handles the task from now on.
14BUILD_NO_OPIE_PLUGIN=1 14BUILD_NO_OPIE_PLUGIN=1
15 15
16SUBDIRS_MICROKDE = \ 16SUBDIRS_MICROKDE = \
17 libical/src/libical \ 17 libical/src/libical \
18 libical/src/libicalss \ 18 libical/src/libicalss \
19 qtcompat \ 19 qtcompat \
20 microkde \ 20 microkde \
21 libkcal \ 21 libkcal \
22 libkdepim \ 22 libkdepim \
23 kabc \ 23 kabc \
24 kabc/formats/binary \ 24 kabc/formats/binary \
25 kabc/plugins/file \ 25 kabc/plugins/file \
26 kabc/plugins/dir \ 26 kabc/plugins/dir \
27 korganizer \ 27 korganizer \
28 kalarmd \ 28 kalarmd \
29 kaddressbook 29 kaddressbook
30 30
31SUBDIRS_QTOPIA_PLUGIN = \ 31SUBDIRS_QTOPIA_PLUGIN = \
32 kabc/plugins/qtopia 32 kabc/plugins/qtopia
33 33
34SUBDIRS_OPIE_PLUGIN = \ 34SUBDIRS_OPIE_PLUGIN = \
35 kabc/plugins/opie 35 kabc/plugins/opie
36 36
37SUBDIRS_SHARP_PLUGIN = \ 37SUBDIRS_SHARP_PLUGIN = \
38 kabc/plugins/sharpdtm 38 kabc/plugins/sharpdtm
39 39
40SUBDIRS_LDAP_PLUGIN = \ 40SUBDIRS_LDAP_PLUGIN = \
41 kabc/plugins/ldap 41 kabc/plugins/ldap
42 42
43SUBDIRS_MICROMAIL = \ 43SUBDIRS_MICROMAIL = \
44 kmicromail/libetpan \ 44 kmicromail/libetpan \
45 kmicromail/libmailwrapper \ 45 kmicromail/libmailwrapper \
46 kmicromail 46 kmicromail
47 47
48SUBDIRS_GAMMU = \ 48SUBDIRS_GAMMU = \
49 gammu/emb/common \ 49 gammu/emb/common \
50 gammu/emb/gammu 50 gammu/emb/gammu
51 51
52SUBDIRS_PWMANAGER = \ 52SUBDIRS_PWMANAGER = \
53 pwmanager/libcrypt/mpi \ 53 pwmanager/libcrypt/mpi \
54 pwmanager/libcrypt/error \ 54 pwmanager/libcrypt/error \
55 pwmanager/libcrypt/cipher \ 55 pwmanager/libcrypt/cipher \
56 pwmanager/libcrypt/zlib \ 56 pwmanager/libcrypt/zlib \
57 pwmanager/pwmanager 57 pwmanager/pwmanager
58 58
59SUBDIRS = \ 59SUBDIRS = \
60 $(SUBDIRS_MICROKDE) \ 60 $(SUBDIRS_MICROKDE) \
61 $(SUBDIRS_QTOPIA_PLUGIN) \ 61 $(SUBDIRS_QTOPIA_PLUGIN) \
62 $(SUBDIRS_OPIE_PLUGIN) \ 62 $(SUBDIRS_OPIE_PLUGIN) \
63 $(SUBDIRS_SHARP_PLUGIN) \ 63 $(SUBDIRS_SHARP_PLUGIN) \
64 $(SUBDIRS_LDAP_PLUGIN) \ 64 $(SUBDIRS_LDAP_PLUGIN) \
65 $(SUBDIRS_MICROMAIL) \ 65 $(SUBDIRS_MICROMAIL) \
66 $(SUBDIRS_GAMMU) \ 66 $(SUBDIRS_GAMMU) \
67 $(SUBDIRS_PWMANAGER) 67 $(SUBDIRS_PWMANAGER)
68 68
69 69
70all: build_microkde \ 70all: build_microkde \
71 build_qtopia_plugin \ 71 build_qtopia_plugin \
72 build_opie_plugin \ 72 build_opie_plugin \
73 build_sharp_plugin \ 73 build_sharp_plugin \
74 build_ldap_plugin \ 74 build_ldap_plugin \
75 build_micromail \ 75 build_micromail \
76 build_gammu \ 76 build_gammu \
77 build_pwmanager 77 build_pwmanager
78 78
79 79
80build_microkde: variable_test tmake 80build_microkde: variable_test tmake
81 for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ 81 for i in $(SUBDIRS_MICROKDE); do pushd $$i; \
82 make -f Makefile$(PLATFORM) || exit 1; popd; \ 82 make -f Makefile$(PLATFORM) || exit 1; popd; \
83 done 83 done
84 84
85build_qtopia_plugin: build_microkde 85build_qtopia_plugin: build_microkde
86 ifdef BUILD_NO_QTOPIA_PLUGIN 86 ifdef BUILD_NO_QTOPIA_PLUGIN
87 @echo == qtopia plugin not build. 87 @echo == qtopia plugin not build.
88 else 88 else
89 for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \ 89 for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \
90 make -f Makefile$(PLATFORM) || exit 1; popd; \ 90 make -f Makefile$(PLATFORM) || exit 1; popd; \
91 done 91 done
92 endif 92 endif
93 93
94build_opie_plugin: build_microkde 94build_opie_plugin: build_microkde
95 ifdef BUILD_NO_OPIE_PLUGIN 95 ifdef BUILD_NO_OPIE_PLUGIN
96 @echo == opie plugin not build. 96 @echo == opie plugin not build.
97 else 97 else
98 for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \ 98 for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \
99 make -f Makefile$(PLATFORM) || exit 1; popd; \ 99 make -f Makefile$(PLATFORM) || exit 1; popd; \
100 done 100 done
101 endif 101 endif
102 102
103build_sharp_plugin: build_microkde 103build_sharp_plugin: build_microkde
104 ifdef BUILD_NO_SHARP_PLUGIN 104 ifdef BUILD_NO_SHARP_PLUGIN
105 @echo == ldap plugin not build. 105 @echo == ldap plugin not build.
106 else 106 else
107 for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \ 107 for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \
108 make -f Makefile$(PLATFORM) || exit 1; popd; \ 108 make -f Makefile$(PLATFORM) || exit 1; popd; \
109 done 109 done
110 endif 110 endif
111 111
112build_ldap_plugin: build_microkde 112build_ldap_plugin: build_microkde
113 ifdef BUILD_NO_LDAP_PLUGIN 113 ifdef BUILD_NO_LDAP_PLUGIN
114 @echo == ldap plugin not build. 114 @echo == ldap plugin not build.
115 else 115 else
116 for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \ 116 for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \
117 make -f Makefile$(PLATFORM) || exit 1; popd; \ 117 make -f Makefile$(PLATFORM) || exit 1; popd; \
118 done 118 done
119 endif 119 endif
120 120
121 121
122build_micromail: build_microkde 122build_micromail: build_microkde
123 ifdef BUILD_NO_MICROMAIL 123 ifdef BUILD_NO_MICROMAIL
124 @echo == kmicromail not build. 124 @echo == kmicromail not build.
125 else 125 else
126 for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \ 126 for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \
127 make -f Makefile$(PLATFORM) || exit 1; popd; \ 127 make -f Makefile$(PLATFORM) || exit 1; popd; \
128 done 128 done
129 endif 129 endif
130 130
131build_gammu: variable_test tmake 131build_gammu: variable_test tmake
132 ifdef BUILD_NO_GAMMU 132 ifdef BUILD_NO_GAMMU
133 @echo == gammu not build. 133 @echo == gammu not build.
134 else 134 else
135 for i in $(SUBDIRS_GAMMU); do pushd $$i; \ 135 for i in $(SUBDIRS_GAMMU); do pushd $$i; \
136 make -f Makefile$(PLATFORM) || exit 1; popd; \ 136 make -f Makefile$(PLATFORM) || exit 1; popd; \
137 done 137 done
138 endif 138 endif
139 139
140build_pwmanager: build_microkde 140build_pwmanager: build_microkde
141 ifdef BUILD_NO_PWMANAGER 141 ifdef BUILD_NO_PWMANAGER
142 @echo == pwmanager not build. 142 @echo == pwmanager not build.
143 else 143 else
144 for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \ 144 for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \
145 make -f Makefile$(PLATFORM) || exit 1; popd; \ 145 make -f Makefile$(PLATFORM) || exit 1; popd; \
146 done 146 done
147 endif 147 endif
148 148
149 149
150variable_info: 150variable_info:
151 @echo -------------------------------------- 151 @echo --------------------------------------
152 @echo KDEPIM buildsystem, variableinfo... 152 @echo KDEPIM buildsystem, variableinfo...
153 @echo KDEPIMDIR=$(KDEPIMDIR) 153 @echo KDEPIMDIR=$(KDEPIMDIR)
154 @echo QTDIR=$(QTDIR) 154 @echo QTDIR=$(QTDIR)
155 @echo QPEDIR=$(QPEDIR) 155 @echo QPEDIR=$(QPEDIR)
156 @echo OPIEDIR=$(OPIEDIR) 156 @echo OPIEDIR=$(OPIEDIR)
157 @echo PLATFORM=$(PLATFORM) 157 @echo PLATFORM=$(PLATFORM)
158 @echo RELEASE_DEBUG=$(RELEASE_DEBUG) 158 @echo RELEASE_DEBUG=$(RELEASE_DEBUG)
159 @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL) 159 @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL)
160 @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN) 160 @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN)
161 @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN) 161 @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN)
162 @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN) 162 @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN)
163 @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) 163 @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN)
164 ifndef BUILD_NO_SHARP_PLUGIN 164 ifndef BUILD_NO_SHARP_PLUGIN
165 @echo SHARPDTMSDK=$(SHARPDTMSDK) 165 @echo SHARPDTMSDK=$(SHARPDTMSDK)
166 endif 166 endif
167 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) 167 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU)
168 @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER) 168 @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER)
169 @echo -------------------------------------- 169 @echo --------------------------------------
170 170
171variable_test: variable_info 171variable_test: variable_info
172 @echo KDEPIM buildsystem, variablecheck... 172 @echo KDEPIM buildsystem, variablecheck...
173 ifndef KDEPIMDIR 173 ifndef KDEPIMDIR
174 @echo KDEPIMDIR is not defined. 174 @echo KDEPIMDIR is not defined.
175 $(error KDEPIMDIR is not defined) 175 $(error KDEPIMDIR is not defined)
176 endif 176 endif
177 ifndef PLATFORM 177 ifndef PLATFORM
178 @echo PLATFORM is not defined. 178 @echo PLATFORM is not defined.
179 $(error PLATFORM is not defined) 179 $(error PLATFORM is not defined)
180 endif 180 endif
181 ifdef BUILD_NO_LDAP_PLUGIN 181 ifdef BUILD_NO_LDAP_PLUGIN
182 @echo LDAP PLUGIN will not be build, because BUILD_NO_LDAP_PLUGIN is set to $(BUILD_NO_LDAP_PLUGIN) 182 @echo LDAP PLUGIN will not be build, because BUILD_NO_LDAP_PLUGIN is set to $(BUILD_NO_LDAP_PLUGIN)
183 endif 183 endif
184 ifdef BUILD_NO_OPIE_PLUGIN 184 ifdef BUILD_NO_OPIE_PLUGIN
185 @echo OPIE PLUGIN will not be build, because BUILD_NO_OPIE_PLUGIN is set to $(BUILD_NO_OPIE_PLUGIN) 185 @echo OPIE PLUGIN will not be build, because BUILD_NO_OPIE_PLUGIN is set to $(BUILD_NO_OPIE_PLUGIN)
186 endif 186 endif
187 ifdef BUILD_NO_QTOPIA_PLUGIN 187 ifdef BUILD_NO_QTOPIA_PLUGIN
188 @echo QTOPIA PLUGIN will not be build, because BUILD_NO__QTOPIA_PLUGIN is set to $(BUILD_NO__QTOPIA_PLUGIN) 188 @echo QTOPIA PLUGIN will not be build, because BUILD_NO__QTOPIA_PLUGIN is set to $(BUILD_NO__QTOPIA_PLUGIN)
189 endif 189 endif
190 ifdef BUILD_NO_MICROMAIL 190 ifdef BUILD_NO_MICROMAIL
191 @echo MICROMAIL will not be build, because BUILD_NO_MICROMAIL is set to $(BUILD_NO_MICROMAIL) 191 @echo MICROMAIL will not be build, because BUILD_NO_MICROMAIL is set to $(BUILD_NO_MICROMAIL)
192 endif 192 endif
193 ifdef BUILD_NO_SHARP_PLUGIN 193 ifdef BUILD_NO_SHARP_PLUGIN
194 @echo SHARP PLUGIN will not be build, because BUILD_NO_SHARP_PLUGIN is set to $(BUILD_NO_SHARP_PLUGIN) 194 @echo SHARP PLUGIN will not be build, because BUILD_NO_SHARP_PLUGIN is set to $(BUILD_NO_SHARP_PLUGIN)
195 else 195 else
196 ifndef SHARPDTMSDK 196 ifndef SHARPDTMSDK
197 @echo SHARP PLUGIN can not be build, because SHARPDTMSDK is set to $(SHARPDTMSDK) 197 @echo SHARP PLUGIN can not be build, because SHARPDTMSDK is set to $(SHARPDTMSDK)
198 $(error SHARPDTMSDK is not defined) 198 $(error SHARPDTMSDK is not defined)
199 endif 199 endif
200 endif 200 endif
201 ifdef BUILD_NO_GAMMU 201 ifdef BUILD_NO_GAMMU
202 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU) 202 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU)
203 endif 203 endif
204 ifdef BUILD_NO_PWMANAGER 204 ifdef BUILD_NO_PWMANAGER
205 @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER) 205 @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER)
206 endif 206 endif
207 @echo -------------------------------------- 207 @echo --------------------------------------
208 208
209 209
210objects: 210objects:
211 for i in $(SUBDIRS); do mkdir -p $$i/obj/$(PLATFORM); done 211 for i in $(SUBDIRS); do mkdir -p $$i/obj/$(PLATFORM); done
212 for i in $(SUBDIRS); do mkdir -p $$i/moc/$(PLATFORM); done 212 for i in $(SUBDIRS); do mkdir -p $$i/moc/$(PLATFORM); done
213 mkdir -p libical/lib/$(PLATFORM) 213 mkdir -p libical/lib/$(PLATFORM)
214 mkdir -p pwmanager/libcrypt/$(PLATFORM) 214 mkdir -p pwmanager/libcrypt/$(PLATFORM)
215 215
216clean: 216clean:
217 rm -rf libical/lib/$(PLATFORM)/*; 217 rm -rf libical/lib/$(PLATFORM)/*;
218 rm -rf pwmanager/libcrypt/$(PLATFORM)/*; 218 rm -rf pwmanager/libcrypt/$(PLATFORM)/*;
219 for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\ 219 for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\
220 rm -f obj/$(PLATFORM)/*; rm -f moc/$(PLATFORM)/*; rm Makefile$(PLATFORM); popd; \ 220 rm -f obj/$(PLATFORM)/*; rm -f moc/$(PLATFORM)/*; rm Makefile$(PLATFORM); popd; \
221 done 221 done
222 222
223install: 223install:
224 224
225 cd bin/kdepim; make install 225 cd bin/kdepim; make install
226 cp -r Pim $(QPEDIR)/apps 226 cp -r Pim $(QPEDIR)/apps
227 cp db2file/db2file $(QPEDIR)/bin/db2file 227 cp db2file/db2file $(QPEDIR)/bin/db2file
228 cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop 228 cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop
229 cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop 229 cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop
230 cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop 230 cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop
231 cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop 231 cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop
232 232
233dist: 233dist:
234 @echo Dont forget to do "make install" before "make dist" 234 @echo Dont forget to do "make install" before "make dist"
235 rm -f *arm.ipk 235 rm -f *arm.ipk
236 rm -f *~ 236 rm -f *~
237 cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim 237 cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim
238 mkipks kmicrokdelibs.control 238 mkipks kmicrokdelibs.control
239 mkipks korganizer.control 239 mkipks korganizer.control
240 mkipks kaddressbook.control 240 mkipks kaddressbook.control
241 ifndef BUILD_NO_MICROMAIL 241 ifndef BUILD_NO_MICROMAIL
242 mkipks kopiemail.control 242 mkipks kopiemail.control
243 endif 243 endif
244 ifndef BUILD_NO_SHARP_PLUGIN
245 mkipks ksharpPIM-DTMaccess.control
246 endif
244 mkipks korganizer-alarm.control 247 mkipks korganizer-alarm.control
245 ifndef BUILD_NO_GAMMU 248 ifndef BUILD_NO_GAMMU
246 mkipks phoneaccess.control 249 mkipks kmobilephoneaccess.control
247 endif 250 endif
248 ifndef BUILD_NO_PWMANAGER 251 ifndef BUILD_NO_PWMANAGER
249 mkipks pwmanager.control 252 mkipks pwmanager.control
250 endif 253 endif
251 mkipks pim_TAB_icon.control 254 mkipks pimTABicon.control
252 255
253tmake: objects \ 256tmake: objects \
254 qtcompat/Makefile$(PLATFORM) \ 257 qtcompat/Makefile$(PLATFORM) \
255 microkde/Makefile$(PLATFORM) \ 258 microkde/Makefile$(PLATFORM) \
256 libkcal/Makefile$(PLATFORM) \ 259 libkcal/Makefile$(PLATFORM) \
257 libkdepim/Makefile$(PLATFORM) \ 260 libkdepim/Makefile$(PLATFORM) \
258 korganizer/Makefile$(PLATFORM) \ 261 korganizer/Makefile$(PLATFORM) \
259 kalarmd/Makefile$(PLATFORM) \ 262 kalarmd/Makefile$(PLATFORM) \
260 libical/src/libical/Makefile$(PLATFORM) \ 263 libical/src/libical/Makefile$(PLATFORM) \
261 libical/src/libicalss/Makefile$(PLATFORM) \ 264 libical/src/libicalss/Makefile$(PLATFORM) \
262 kabc/Makefile$(PLATFORM) \ 265 kabc/Makefile$(PLATFORM) \
263 kabc/formats/binary/Makefile$(PLATFORM) \ 266 kabc/formats/binary/Makefile$(PLATFORM) \
264 kabc/plugins/file/Makefile$(PLATFORM) \ 267 kabc/plugins/file/Makefile$(PLATFORM) \
265 kabc/plugins/dir/Makefile$(PLATFORM) \ 268 kabc/plugins/dir/Makefile$(PLATFORM) \
266 kabc/plugins/ldap/Makefile$(PLATFORM) \ 269 kabc/plugins/ldap/Makefile$(PLATFORM) \
267 kabc/plugins/opie/Makefile$(PLATFORM) \ 270 kabc/plugins/opie/Makefile$(PLATFORM) \
268 kabc/plugins/qtopia/Makefile$(PLATFORM) \ 271 kabc/plugins/qtopia/Makefile$(PLATFORM) \
269 kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ 272 kabc/plugins/sharpdtm/Makefile$(PLATFORM) \
270 kaddressbook/Makefile$(PLATFORM) \ 273 kaddressbook/Makefile$(PLATFORM) \
271 kmicromail/Makefile$(PLATFORM) \ 274 kmicromail/Makefile$(PLATFORM) \
272 kmicromail/libetpan/Makefile$(PLATFORM) \ 275 kmicromail/libetpan/Makefile$(PLATFORM) \
273 kmicromail/libmailwrapper/Makefile$(PLATFORM) \ 276 kmicromail/libmailwrapper/Makefile$(PLATFORM) \
274 gammu/emb/common/Makefile$(PLATFORM) \ 277 gammu/emb/common/Makefile$(PLATFORM) \
275 gammu/emb/gammu/Makefile$(PLATFORM) \ 278 gammu/emb/gammu/Makefile$(PLATFORM) \
276 pwmanager/pwmanager/Makefile$(PLATFORM) \ 279 pwmanager/pwmanager/Makefile$(PLATFORM) \
277 pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \ 280 pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \
278 pwmanager/libcrypt/error/Makefile$(PLATFORM) \ 281 pwmanager/libcrypt/error/Makefile$(PLATFORM) \
279 pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \ 282 pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \
280 pwmanager/libcrypt/zlib/Makefile$(PLATFORM) 283 pwmanager/libcrypt/zlib/Makefile$(PLATFORM)
281 284
282qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro 285qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro
283 cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM) 286 cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM)
284 287
285microkde/Makefile$(PLATFORM): microkde/microkdeE.pro 288microkde/Makefile$(PLATFORM): microkde/microkdeE.pro
286 cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM) 289 cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM)
287 290
288libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro 291libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro
289 cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM) 292 cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM)
290 293
291 294
292libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro 295libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro
293 cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM) 296 cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM)
294 297
295kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro 298kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro
296 cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM) 299 cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM)
297 300
298korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro 301korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro
299 cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM) 302 cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM)
300 303
301libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro 304libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro
302 cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM) 305 cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM)
303 306
304libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro 307libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro
305 cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM) 308 cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM)
306 309
307kabc/Makefile$(PLATFORM): kabc/kabcE.pro 310kabc/Makefile$(PLATFORM): kabc/kabcE.pro
308 cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM) 311 cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM)
309 312
310kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro 313kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro
311 cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) 314 cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM)
312 315
313kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro 316kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro
314 cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM) 317 cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM)
315 318
316kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro 319kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro
317 cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM) 320 cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM)
318 321
319kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro 322kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro
320 cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM) 323 cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM)
321 324
322kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro 325kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro
323 cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM) 326 cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM)
324 327
325kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro 328kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro
326 cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM) 329 cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM)
327 330
328kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro 331kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro
329 cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM) 332 cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM)
330 333
331kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro 334kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro
332 cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM) 335 cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM)
333 336
334kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro 337kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro
335 cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM) 338 cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM)
336 339
337kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro 340kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro
338 cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM) 341 cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM)
339 342
340kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro 343kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro
341 cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM) 344 cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM)
342 345
343gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro 346gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro
344 cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM) 347 cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM)
345 348
346gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro 349gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro
347 cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM) 350 cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM)
348 351
349pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro 352pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro
350 cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" pwmanagerE.pro -o Makefile$(PLATFORM) 353 cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" pwmanagerE.pro -o Makefile$(PLATFORM)
351 354
352 355
353pwmanager/libcrypt/mpi/Makefile$(PLATFORM): pwmanager/libcrypt/mpi/mpi.pro 356pwmanager/libcrypt/mpi/Makefile$(PLATFORM): pwmanager/libcrypt/mpi/mpi.pro
354 cd pwmanager/libcrypt/mpi;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" mpi.pro -o Makefile$(PLATFORM) 357 cd pwmanager/libcrypt/mpi;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" mpi.pro -o Makefile$(PLATFORM)
355 358
356pwmanager/libcrypt/error/Makefile$(PLATFORM): pwmanager/libcrypt/error/error.pro 359pwmanager/libcrypt/error/Makefile$(PLATFORM): pwmanager/libcrypt/error/error.pro
357 cd pwmanager/libcrypt/error;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" error.pro -o Makefile$(PLATFORM) 360 cd pwmanager/libcrypt/error;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" error.pro -o Makefile$(PLATFORM)
358 361
359pwmanager/libcrypt/cipher/Makefile$(PLATFORM): pwmanager/libcrypt/cipher/cipher.pro 362pwmanager/libcrypt/cipher/Makefile$(PLATFORM): pwmanager/libcrypt/cipher/cipher.pro
360 cd pwmanager/libcrypt/cipher;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" cipher.pro -o Makefile$(PLATFORM) 363 cd pwmanager/libcrypt/cipher;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" cipher.pro -o Makefile$(PLATFORM)
361 364
362pwmanager/libcrypt/zlib/Makefile$(PLATFORM): pwmanager/libcrypt/zlib/zlib.pro 365pwmanager/libcrypt/zlib/Makefile$(PLATFORM): pwmanager/libcrypt/zlib/zlib.pro
363 cd pwmanager/libcrypt/zlib;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" zlib.pro -o Makefile$(PLATFORM) 366 cd pwmanager/libcrypt/zlib;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" zlib.pro -o Makefile$(PLATFORM)
364 367
365 368
diff --git a/Makefile.Embedded b/Makefile.Embedded
index b677087..467710f 100644
--- a/Makefile.Embedded
+++ b/Makefile.Embedded
@@ -1,365 +1,368 @@
1export KDEPIMDIR = $(shell pwd) 1export KDEPIMDIR = $(shell pwd)
2 2
3export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version) 3export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version)
4 4
5ifeq ($(PLATFORM) , zaurus) 5ifeq ($(PLATFORM) , zaurus)
6 BUILD_NO_LDAP_PLUGIN=1 6 BUILD_NO_LDAP_PLUGIN=1
7endif 7endif
8 8
9ifneq ($(PLATFORM) , zaurus) 9ifneq ($(PLATFORM) , zaurus)
10 BUILD_NO_SHARP_PLUGIN=1 10 BUILD_NO_SHARP_PLUGIN=1
11endif 11endif
12 12
13#opie plugin is deprecated. The qtopia plugin handles the task from now on. 13#opie plugin is deprecated. The qtopia plugin handles the task from now on.
14BUILD_NO_OPIE_PLUGIN=1 14BUILD_NO_OPIE_PLUGIN=1
15 15
16SUBDIRS_MICROKDE = \ 16SUBDIRS_MICROKDE = \
17 libical/src/libical \ 17 libical/src/libical \
18 libical/src/libicalss \ 18 libical/src/libicalss \
19 qtcompat \ 19 qtcompat \
20 microkde \ 20 microkde \
21 libkcal \ 21 libkcal \
22 libkdepim \ 22 libkdepim \
23 kabc \ 23 kabc \
24 kabc/formats/binary \ 24 kabc/formats/binary \
25 kabc/plugins/file \ 25 kabc/plugins/file \
26 kabc/plugins/dir \ 26 kabc/plugins/dir \
27 korganizer \ 27 korganizer \
28 kalarmd \ 28 kalarmd \
29 kaddressbook 29 kaddressbook
30 30
31SUBDIRS_QTOPIA_PLUGIN = \ 31SUBDIRS_QTOPIA_PLUGIN = \
32 kabc/plugins/qtopia 32 kabc/plugins/qtopia
33 33
34SUBDIRS_OPIE_PLUGIN = \ 34SUBDIRS_OPIE_PLUGIN = \
35 kabc/plugins/opie 35 kabc/plugins/opie
36 36
37SUBDIRS_SHARP_PLUGIN = \ 37SUBDIRS_SHARP_PLUGIN = \
38 kabc/plugins/sharpdtm 38 kabc/plugins/sharpdtm
39 39
40SUBDIRS_LDAP_PLUGIN = \ 40SUBDIRS_LDAP_PLUGIN = \
41 kabc/plugins/ldap 41 kabc/plugins/ldap
42 42
43SUBDIRS_MICROMAIL = \ 43SUBDIRS_MICROMAIL = \
44 kmicromail/libetpan \ 44 kmicromail/libetpan \
45 kmicromail/libmailwrapper \ 45 kmicromail/libmailwrapper \
46 kmicromail 46 kmicromail
47 47
48SUBDIRS_GAMMU = \ 48SUBDIRS_GAMMU = \
49 gammu/emb/common \ 49 gammu/emb/common \
50 gammu/emb/gammu 50 gammu/emb/gammu
51 51
52SUBDIRS_PWMANAGER = \ 52SUBDIRS_PWMANAGER = \
53 pwmanager/libcrypt/mpi \ 53 pwmanager/libcrypt/mpi \
54 pwmanager/libcrypt/error \ 54 pwmanager/libcrypt/error \
55 pwmanager/libcrypt/cipher \ 55 pwmanager/libcrypt/cipher \
56 pwmanager/libcrypt/zlib \ 56 pwmanager/libcrypt/zlib \
57 pwmanager/pwmanager 57 pwmanager/pwmanager
58 58
59SUBDIRS = \ 59SUBDIRS = \
60 $(SUBDIRS_MICROKDE) \ 60 $(SUBDIRS_MICROKDE) \
61 $(SUBDIRS_QTOPIA_PLUGIN) \ 61 $(SUBDIRS_QTOPIA_PLUGIN) \
62 $(SUBDIRS_OPIE_PLUGIN) \ 62 $(SUBDIRS_OPIE_PLUGIN) \
63 $(SUBDIRS_SHARP_PLUGIN) \ 63 $(SUBDIRS_SHARP_PLUGIN) \
64 $(SUBDIRS_LDAP_PLUGIN) \ 64 $(SUBDIRS_LDAP_PLUGIN) \
65 $(SUBDIRS_MICROMAIL) \ 65 $(SUBDIRS_MICROMAIL) \
66 $(SUBDIRS_GAMMU) \ 66 $(SUBDIRS_GAMMU) \
67 $(SUBDIRS_PWMANAGER) 67 $(SUBDIRS_PWMANAGER)
68 68
69 69
70all: build_microkde \ 70all: build_microkde \
71 build_qtopia_plugin \ 71 build_qtopia_plugin \
72 build_opie_plugin \ 72 build_opie_plugin \
73 build_sharp_plugin \ 73 build_sharp_plugin \
74 build_ldap_plugin \ 74 build_ldap_plugin \
75 build_micromail \ 75 build_micromail \
76 build_gammu \ 76 build_gammu \
77 build_pwmanager 77 build_pwmanager
78 78
79 79
80build_microkde: variable_test tmake 80build_microkde: variable_test tmake
81 for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ 81 for i in $(SUBDIRS_MICROKDE); do pushd $$i; \
82 make -f Makefile$(PLATFORM) || exit 1; popd; \ 82 make -f Makefile$(PLATFORM) || exit 1; popd; \
83 done 83 done
84 84
85build_qtopia_plugin: build_microkde 85build_qtopia_plugin: build_microkde
86 ifdef BUILD_NO_QTOPIA_PLUGIN 86 ifdef BUILD_NO_QTOPIA_PLUGIN
87 @echo == qtopia plugin not build. 87 @echo == qtopia plugin not build.
88 else 88 else
89 for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \ 89 for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \
90 make -f Makefile$(PLATFORM) || exit 1; popd; \ 90 make -f Makefile$(PLATFORM) || exit 1; popd; \
91 done 91 done
92 endif 92 endif
93 93
94build_opie_plugin: build_microkde 94build_opie_plugin: build_microkde
95 ifdef BUILD_NO_OPIE_PLUGIN 95 ifdef BUILD_NO_OPIE_PLUGIN
96 @echo == opie plugin not build. 96 @echo == opie plugin not build.
97 else 97 else
98 for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \ 98 for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \
99 make -f Makefile$(PLATFORM) || exit 1; popd; \ 99 make -f Makefile$(PLATFORM) || exit 1; popd; \
100 done 100 done
101 endif 101 endif
102 102
103build_sharp_plugin: build_microkde 103build_sharp_plugin: build_microkde
104 ifdef BUILD_NO_SHARP_PLUGIN 104 ifdef BUILD_NO_SHARP_PLUGIN
105 @echo == ldap plugin not build. 105 @echo == ldap plugin not build.
106 else 106 else
107 for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \ 107 for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \
108 make -f Makefile$(PLATFORM) || exit 1; popd; \ 108 make -f Makefile$(PLATFORM) || exit 1; popd; \
109 done 109 done
110 endif 110 endif
111 111
112build_ldap_plugin: build_microkde 112build_ldap_plugin: build_microkde
113 ifdef BUILD_NO_LDAP_PLUGIN 113 ifdef BUILD_NO_LDAP_PLUGIN
114 @echo == ldap plugin not build. 114 @echo == ldap plugin not build.
115 else 115 else
116 for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \ 116 for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \
117 make -f Makefile$(PLATFORM) || exit 1; popd; \ 117 make -f Makefile$(PLATFORM) || exit 1; popd; \
118 done 118 done
119 endif 119 endif
120 120
121 121
122build_micromail: build_microkde 122build_micromail: build_microkde
123 ifdef BUILD_NO_MICROMAIL 123 ifdef BUILD_NO_MICROMAIL
124 @echo == kmicromail not build. 124 @echo == kmicromail not build.
125 else 125 else
126 for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \ 126 for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \
127 make -f Makefile$(PLATFORM) || exit 1; popd; \ 127 make -f Makefile$(PLATFORM) || exit 1; popd; \
128 done 128 done
129 endif 129 endif
130 130
131build_gammu: variable_test tmake 131build_gammu: variable_test tmake
132 ifdef BUILD_NO_GAMMU 132 ifdef BUILD_NO_GAMMU
133 @echo == gammu not build. 133 @echo == gammu not build.
134 else 134 else
135 for i in $(SUBDIRS_GAMMU); do pushd $$i; \ 135 for i in $(SUBDIRS_GAMMU); do pushd $$i; \
136 make -f Makefile$(PLATFORM) || exit 1; popd; \ 136 make -f Makefile$(PLATFORM) || exit 1; popd; \
137 done 137 done
138 endif 138 endif
139 139
140build_pwmanager: build_microkde 140build_pwmanager: build_microkde
141 ifdef BUILD_NO_PWMANAGER 141 ifdef BUILD_NO_PWMANAGER
142 @echo == pwmanager not build. 142 @echo == pwmanager not build.
143 else 143 else
144 for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \ 144 for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \
145 make -f Makefile$(PLATFORM) || exit 1; popd; \ 145 make -f Makefile$(PLATFORM) || exit 1; popd; \
146 done 146 done
147 endif 147 endif
148 148
149 149
150variable_info: 150variable_info:
151 @echo -------------------------------------- 151 @echo --------------------------------------
152 @echo KDEPIM buildsystem, variableinfo... 152 @echo KDEPIM buildsystem, variableinfo...
153 @echo KDEPIMDIR=$(KDEPIMDIR) 153 @echo KDEPIMDIR=$(KDEPIMDIR)
154 @echo QTDIR=$(QTDIR) 154 @echo QTDIR=$(QTDIR)
155 @echo QPEDIR=$(QPEDIR) 155 @echo QPEDIR=$(QPEDIR)
156 @echo OPIEDIR=$(OPIEDIR) 156 @echo OPIEDIR=$(OPIEDIR)
157 @echo PLATFORM=$(PLATFORM) 157 @echo PLATFORM=$(PLATFORM)
158 @echo RELEASE_DEBUG=$(RELEASE_DEBUG) 158 @echo RELEASE_DEBUG=$(RELEASE_DEBUG)
159 @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL) 159 @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL)
160 @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN) 160 @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN)
161 @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN) 161 @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN)
162 @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN) 162 @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN)
163 @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) 163 @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN)
164 ifndef BUILD_NO_SHARP_PLUGIN 164 ifndef BUILD_NO_SHARP_PLUGIN
165 @echo SHARPDTMSDK=$(SHARPDTMSDK) 165 @echo SHARPDTMSDK=$(SHARPDTMSDK)
166 endif 166 endif
167 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) 167 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU)
168 @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER) 168 @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER)
169 @echo -------------------------------------- 169 @echo --------------------------------------
170 170
171variable_test: variable_info 171variable_test: variable_info
172 @echo KDEPIM buildsystem, variablecheck... 172 @echo KDEPIM buildsystem, variablecheck...
173 ifndef KDEPIMDIR 173 ifndef KDEPIMDIR
174 @echo KDEPIMDIR is not defined. 174 @echo KDEPIMDIR is not defined.
175 $(error KDEPIMDIR is not defined) 175 $(error KDEPIMDIR is not defined)
176 endif 176 endif
177 ifndef PLATFORM 177 ifndef PLATFORM
178 @echo PLATFORM is not defined. 178 @echo PLATFORM is not defined.
179 $(error PLATFORM is not defined) 179 $(error PLATFORM is not defined)
180 endif 180 endif
181 ifdef BUILD_NO_LDAP_PLUGIN 181 ifdef BUILD_NO_LDAP_PLUGIN
182 @echo LDAP PLUGIN will not be build, because BUILD_NO_LDAP_PLUGIN is set to $(BUILD_NO_LDAP_PLUGIN) 182 @echo LDAP PLUGIN will not be build, because BUILD_NO_LDAP_PLUGIN is set to $(BUILD_NO_LDAP_PLUGIN)
183 endif 183 endif
184 ifdef BUILD_NO_OPIE_PLUGIN 184 ifdef BUILD_NO_OPIE_PLUGIN
185 @echo OPIE PLUGIN will not be build, because BUILD_NO_OPIE_PLUGIN is set to $(BUILD_NO_OPIE_PLUGIN) 185 @echo OPIE PLUGIN will not be build, because BUILD_NO_OPIE_PLUGIN is set to $(BUILD_NO_OPIE_PLUGIN)
186 endif 186 endif
187 ifdef BUILD_NO_QTOPIA_PLUGIN 187 ifdef BUILD_NO_QTOPIA_PLUGIN
188 @echo QTOPIA PLUGIN will not be build, because BUILD_NO__QTOPIA_PLUGIN is set to $(BUILD_NO__QTOPIA_PLUGIN) 188 @echo QTOPIA PLUGIN will not be build, because BUILD_NO__QTOPIA_PLUGIN is set to $(BUILD_NO__QTOPIA_PLUGIN)
189 endif 189 endif
190 ifdef BUILD_NO_MICROMAIL 190 ifdef BUILD_NO_MICROMAIL
191 @echo MICROMAIL will not be build, because BUILD_NO_MICROMAIL is set to $(BUILD_NO_MICROMAIL) 191 @echo MICROMAIL will not be build, because BUILD_NO_MICROMAIL is set to $(BUILD_NO_MICROMAIL)
192 endif 192 endif
193 ifdef BUILD_NO_SHARP_PLUGIN 193 ifdef BUILD_NO_SHARP_PLUGIN
194 @echo SHARP PLUGIN will not be build, because BUILD_NO_SHARP_PLUGIN is set to $(BUILD_NO_SHARP_PLUGIN) 194 @echo SHARP PLUGIN will not be build, because BUILD_NO_SHARP_PLUGIN is set to $(BUILD_NO_SHARP_PLUGIN)
195 else 195 else
196 ifndef SHARPDTMSDK 196 ifndef SHARPDTMSDK
197 @echo SHARP PLUGIN can not be build, because SHARPDTMSDK is set to $(SHARPDTMSDK) 197 @echo SHARP PLUGIN can not be build, because SHARPDTMSDK is set to $(SHARPDTMSDK)
198 $(error SHARPDTMSDK is not defined) 198 $(error SHARPDTMSDK is not defined)
199 endif 199 endif
200 endif 200 endif
201 ifdef BUILD_NO_GAMMU 201 ifdef BUILD_NO_GAMMU
202 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU) 202 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU)
203 endif 203 endif
204 ifdef BUILD_NO_PWMANAGER 204 ifdef BUILD_NO_PWMANAGER
205 @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER) 205 @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER)
206 endif 206 endif
207 @echo -------------------------------------- 207 @echo --------------------------------------
208 208
209 209
210objects: 210objects:
211 for i in $(SUBDIRS); do mkdir -p $$i/obj/$(PLATFORM); done 211 for i in $(SUBDIRS); do mkdir -p $$i/obj/$(PLATFORM); done
212 for i in $(SUBDIRS); do mkdir -p $$i/moc/$(PLATFORM); done 212 for i in $(SUBDIRS); do mkdir -p $$i/moc/$(PLATFORM); done
213 mkdir -p libical/lib/$(PLATFORM) 213 mkdir -p libical/lib/$(PLATFORM)
214 mkdir -p pwmanager/libcrypt/$(PLATFORM) 214 mkdir -p pwmanager/libcrypt/$(PLATFORM)
215 215
216clean: 216clean:
217 rm -rf libical/lib/$(PLATFORM)/*; 217 rm -rf libical/lib/$(PLATFORM)/*;
218 rm -rf pwmanager/libcrypt/$(PLATFORM)/*; 218 rm -rf pwmanager/libcrypt/$(PLATFORM)/*;
219 for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\ 219 for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\
220 rm -f obj/$(PLATFORM)/*; rm -f moc/$(PLATFORM)/*; rm Makefile$(PLATFORM); popd; \ 220 rm -f obj/$(PLATFORM)/*; rm -f moc/$(PLATFORM)/*; rm Makefile$(PLATFORM); popd; \
221 done 221 done
222 222
223install: 223install:
224 224
225 cd bin/kdepim; make install 225 cd bin/kdepim; make install
226 cp -r Pim $(QPEDIR)/apps 226 cp -r Pim $(QPEDIR)/apps
227 cp db2file/db2file $(QPEDIR)/bin/db2file 227 cp db2file/db2file $(QPEDIR)/bin/db2file
228 cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop 228 cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop
229 cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop 229 cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop
230 cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop 230 cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop
231 cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop 231 cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop
232 232
233dist: 233dist:
234 @echo Dont forget to do "make install" before "make dist" 234 @echo Dont forget to do "make install" before "make dist"
235 rm -f *arm.ipk 235 rm -f *arm.ipk
236 rm -f *~ 236 rm -f *~
237 cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim 237 cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim
238 mkipks kmicrokdelibs.control 238 mkipks kmicrokdelibs.control
239 mkipks korganizer.control 239 mkipks korganizer.control
240 mkipks kaddressbook.control 240 mkipks kaddressbook.control
241 ifndef BUILD_NO_MICROMAIL 241 ifndef BUILD_NO_MICROMAIL
242 mkipks kopiemail.control 242 mkipks kopiemail.control
243 endif 243 endif
244 ifndef BUILD_NO_SHARP_PLUGIN
245 mkipks ksharpPIM-DTMaccess.control
246 endif
244 mkipks korganizer-alarm.control 247 mkipks korganizer-alarm.control
245 ifndef BUILD_NO_GAMMU 248 ifndef BUILD_NO_GAMMU
246 mkipks phoneaccess.control 249 mkipks kmobilephoneaccess.control
247 endif 250 endif
248 ifndef BUILD_NO_PWMANAGER 251 ifndef BUILD_NO_PWMANAGER
249 mkipks pwmanager.control 252 mkipks pwmanager.control
250 endif 253 endif
251 mkipks pim_TAB_icon.control 254 mkipks pimTABicon.control
252 255
253tmake: objects \ 256tmake: objects \
254 qtcompat/Makefile$(PLATFORM) \ 257 qtcompat/Makefile$(PLATFORM) \
255 microkde/Makefile$(PLATFORM) \ 258 microkde/Makefile$(PLATFORM) \
256 libkcal/Makefile$(PLATFORM) \ 259 libkcal/Makefile$(PLATFORM) \
257 libkdepim/Makefile$(PLATFORM) \ 260 libkdepim/Makefile$(PLATFORM) \
258 korganizer/Makefile$(PLATFORM) \ 261 korganizer/Makefile$(PLATFORM) \
259 kalarmd/Makefile$(PLATFORM) \ 262 kalarmd/Makefile$(PLATFORM) \
260 libical/src/libical/Makefile$(PLATFORM) \ 263 libical/src/libical/Makefile$(PLATFORM) \
261 libical/src/libicalss/Makefile$(PLATFORM) \ 264 libical/src/libicalss/Makefile$(PLATFORM) \
262 kabc/Makefile$(PLATFORM) \ 265 kabc/Makefile$(PLATFORM) \
263 kabc/formats/binary/Makefile$(PLATFORM) \ 266 kabc/formats/binary/Makefile$(PLATFORM) \
264 kabc/plugins/file/Makefile$(PLATFORM) \ 267 kabc/plugins/file/Makefile$(PLATFORM) \
265 kabc/plugins/dir/Makefile$(PLATFORM) \ 268 kabc/plugins/dir/Makefile$(PLATFORM) \
266 kabc/plugins/ldap/Makefile$(PLATFORM) \ 269 kabc/plugins/ldap/Makefile$(PLATFORM) \
267 kabc/plugins/opie/Makefile$(PLATFORM) \ 270 kabc/plugins/opie/Makefile$(PLATFORM) \
268 kabc/plugins/qtopia/Makefile$(PLATFORM) \ 271 kabc/plugins/qtopia/Makefile$(PLATFORM) \
269 kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ 272 kabc/plugins/sharpdtm/Makefile$(PLATFORM) \
270 kaddressbook/Makefile$(PLATFORM) \ 273 kaddressbook/Makefile$(PLATFORM) \
271 kmicromail/Makefile$(PLATFORM) \ 274 kmicromail/Makefile$(PLATFORM) \
272 kmicromail/libetpan/Makefile$(PLATFORM) \ 275 kmicromail/libetpan/Makefile$(PLATFORM) \
273 kmicromail/libmailwrapper/Makefile$(PLATFORM) \ 276 kmicromail/libmailwrapper/Makefile$(PLATFORM) \
274 gammu/emb/common/Makefile$(PLATFORM) \ 277 gammu/emb/common/Makefile$(PLATFORM) \
275 gammu/emb/gammu/Makefile$(PLATFORM) \ 278 gammu/emb/gammu/Makefile$(PLATFORM) \
276 pwmanager/pwmanager/Makefile$(PLATFORM) \ 279 pwmanager/pwmanager/Makefile$(PLATFORM) \
277 pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \ 280 pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \
278 pwmanager/libcrypt/error/Makefile$(PLATFORM) \ 281 pwmanager/libcrypt/error/Makefile$(PLATFORM) \
279 pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \ 282 pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \
280 pwmanager/libcrypt/zlib/Makefile$(PLATFORM) 283 pwmanager/libcrypt/zlib/Makefile$(PLATFORM)
281 284
282qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro 285qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro
283 cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM) 286 cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM)
284 287
285microkde/Makefile$(PLATFORM): microkde/microkdeE.pro 288microkde/Makefile$(PLATFORM): microkde/microkdeE.pro
286 cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM) 289 cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM)
287 290
288libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro 291libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro
289 cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM) 292 cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM)
290 293
291 294
292libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro 295libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro
293 cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM) 296 cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM)
294 297
295kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro 298kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro
296 cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM) 299 cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM)
297 300
298korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro 301korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro
299 cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM) 302 cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM)
300 303
301libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro 304libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro
302 cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM) 305 cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM)
303 306
304libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro 307libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro
305 cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM) 308 cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM)
306 309
307kabc/Makefile$(PLATFORM): kabc/kabcE.pro 310kabc/Makefile$(PLATFORM): kabc/kabcE.pro
308 cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM) 311 cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM)
309 312
310kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro 313kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro
311 cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) 314 cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM)
312 315
313kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro 316kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro
314 cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM) 317 cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM)
315 318
316kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro 319kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro
317 cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM) 320 cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM)
318 321
319kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro 322kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro
320 cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM) 323 cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM)
321 324
322kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro 325kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro
323 cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM) 326 cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM)
324 327
325kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro 328kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro
326 cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM) 329 cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM)
327 330
328kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro 331kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro
329 cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM) 332 cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM)
330 333
331kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro 334kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro
332 cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM) 335 cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM)
333 336
334kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro 337kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro
335 cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM) 338 cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM)
336 339
337kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro 340kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro
338 cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM) 341 cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM)
339 342
340kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro 343kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro
341 cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM) 344 cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM)
342 345
343gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro 346gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro
344 cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM) 347 cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM)
345 348
346gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro 349gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro
347 cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM) 350 cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM)
348 351
349pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro 352pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro
350 cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" pwmanagerE.pro -o Makefile$(PLATFORM) 353 cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" pwmanagerE.pro -o Makefile$(PLATFORM)
351 354
352 355
353pwmanager/libcrypt/mpi/Makefile$(PLATFORM): pwmanager/libcrypt/mpi/mpi.pro 356pwmanager/libcrypt/mpi/Makefile$(PLATFORM): pwmanager/libcrypt/mpi/mpi.pro
354 cd pwmanager/libcrypt/mpi;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" mpi.pro -o Makefile$(PLATFORM) 357 cd pwmanager/libcrypt/mpi;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" mpi.pro -o Makefile$(PLATFORM)
355 358
356pwmanager/libcrypt/error/Makefile$(PLATFORM): pwmanager/libcrypt/error/error.pro 359pwmanager/libcrypt/error/Makefile$(PLATFORM): pwmanager/libcrypt/error/error.pro
357 cd pwmanager/libcrypt/error;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" error.pro -o Makefile$(PLATFORM) 360 cd pwmanager/libcrypt/error;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" error.pro -o Makefile$(PLATFORM)
358 361
359pwmanager/libcrypt/cipher/Makefile$(PLATFORM): pwmanager/libcrypt/cipher/cipher.pro 362pwmanager/libcrypt/cipher/Makefile$(PLATFORM): pwmanager/libcrypt/cipher/cipher.pro
360 cd pwmanager/libcrypt/cipher;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" cipher.pro -o Makefile$(PLATFORM) 363 cd pwmanager/libcrypt/cipher;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" cipher.pro -o Makefile$(PLATFORM)
361 364
362pwmanager/libcrypt/zlib/Makefile$(PLATFORM): pwmanager/libcrypt/zlib/zlib.pro 365pwmanager/libcrypt/zlib/Makefile$(PLATFORM): pwmanager/libcrypt/zlib/zlib.pro
363 cd pwmanager/libcrypt/zlib;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" zlib.pro -o Makefile$(PLATFORM) 366 cd pwmanager/libcrypt/zlib;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" zlib.pro -o Makefile$(PLATFORM)
364 367
365 368
diff --git a/kabc/kabcE.pro b/kabc/kabcE.pro
index 96fe39e..1d28a4d 100644
--- a/kabc/kabcE.pro
+++ b/kabc/kabcE.pro
@@ -1,196 +1,196 @@
1 TEMPLATE= lib 1 TEMPLATE= lib
2CONFIG += qt warn_on 2CONFIG += qt warn_on
3TARGET = kamicrokabc 3TARGET = microkabc
4 4
5 5
6INCLUDEPATH += . $(KDEPIMDIR) vcard/include vcard/include/generated $(KDEPIMDIR)/microkde $(KDEPIMDIR)/microkde/kdecore $(KDEPIMDIR)/microkde/kdeui $(KDEPIMDIR)/microkde/kio/kfile $(KDEPIMDIR)/microkde/kio/kio $(KDEPIMDIR)/libkdepim $(KDEPIMDIR)/qtcompat $(QPEDIR)/include 6INCLUDEPATH += . $(KDEPIMDIR) vcard/include vcard/include/generated $(KDEPIMDIR)/microkde $(KDEPIMDIR)/microkde/kdecore $(KDEPIMDIR)/microkde/kdeui $(KDEPIMDIR)/microkde/kio/kfile $(KDEPIMDIR)/microkde/kio/kio $(KDEPIMDIR)/libkdepim $(KDEPIMDIR)/qtcompat $(QPEDIR)/include
7OBJECTS_DIR = obj/$(PLATFORM) 7OBJECTS_DIR = obj/$(PLATFORM)
8MOC_DIR = moc/$(PLATFORM) 8MOC_DIR = moc/$(PLATFORM)
9DESTDIR = $(QPEDIR)/lib 9DESTDIR = $(QPEDIR)/lib
10LIBS += -lmicrokde 10LIBS += -lmicrokde
11LIBS += -lmicrokdepim 11LIBS += -lmicrokdepim
12#LIBS += -lldap 12#LIBS += -lldap
13LIBS += -L$(QPEDIR)/lib 13LIBS += -L$(QPEDIR)/lib
14DEFINES += KAB_EMBEDDED 14DEFINES += KAB_EMBEDDED
15 15
16#enable the following line if you want to get debugoutput while loading adresses 16#enable the following line if you want to get debugoutput while loading adresses
17#DEFINES += VCARD_DEBUG 17#DEFINES += VCARD_DEBUG
18 18
19INTERFACES = \ 19INTERFACES = \
20 20
21HEADERS = \ 21HEADERS = \
22 address.h \ 22 address.h \
23 addressbook.h \ 23 addressbook.h \
24 addressee.h \ 24 addressee.h \
25 addresseedialog.h \ 25 addresseedialog.h \
26 addresseelist.h \ 26 addresseelist.h \
27 addresseeview.h \ 27 addresseeview.h \
28 agent.h \ 28 agent.h \
29 distributionlist.h \ 29 distributionlist.h \
30 distributionlistdialog.h \ 30 distributionlistdialog.h \
31 distributionlisteditor.h \ 31 distributionlisteditor.h \
32 field.h \ 32 field.h \
33 formatfactory.h \ 33 formatfactory.h \
34 formatplugin.h \ 34 formatplugin.h \
35 geo.h \ 35 geo.h \
36 key.h \ 36 key.h \
37 phonenumber.h \ 37 phonenumber.h \
38 picture.h \ 38 picture.h \
39 plugin.h \ 39 plugin.h \
40 resource.h \ 40 resource.h \
41 secrecy.h \ 41 secrecy.h \
42 sound.h \ 42 sound.h \
43 stdaddressbook.h \ 43 stdaddressbook.h \
44 timezone.h \ 44 timezone.h \
45 tmpaddressbook.h \ 45 tmpaddressbook.h \
46 vcardconverter.h \ 46 vcardconverter.h \
47 vcard21parser.h \ 47 vcard21parser.h \
48 vcardformatimpl.h \ 48 vcardformatimpl.h \
49 vcardformatplugin.h \ 49 vcardformatplugin.h \
50 vcardparser/vcardline.h \ 50 vcardparser/vcardline.h \
51 vcardparser/vcard.h \ 51 vcardparser/vcard.h \
52 vcardparser/vcardtool.h \ 52 vcardparser/vcardtool.h \
53 vcardparser/vcardparser.h \ 53 vcardparser/vcardparser.h \
54 vcard/include/VCardAdrParam.h \ 54 vcard/include/VCardAdrParam.h \
55 vcard/include/VCardAdrValue.h \ 55 vcard/include/VCardAdrValue.h \
56 vcard/include/VCardAgentParam.h \ 56 vcard/include/VCardAgentParam.h \
57 vcard/include/VCardContentLine.h \ 57 vcard/include/VCardContentLine.h \
58 vcard/include/VCardDateParam.h \ 58 vcard/include/VCardDateParam.h \
59 vcard/include/VCardDateValue.h \ 59 vcard/include/VCardDateValue.h \
60 vcard/include/VCardEmailParam.h \ 60 vcard/include/VCardEmailParam.h \
61 vcard/include/VCardGeoValue.h \ 61 vcard/include/VCardGeoValue.h \
62 vcard/include/VCardGroup.h \ 62 vcard/include/VCardGroup.h \
63 vcard/include/VCardImageParam.h \ 63 vcard/include/VCardImageParam.h \
64 vcard/include/VCardImageValue.h \ 64 vcard/include/VCardImageValue.h \
65 vcard/include/VCardLangValue.h \ 65 vcard/include/VCardLangValue.h \
66 vcard/include/VCardNValue.h \ 66 vcard/include/VCardNValue.h \
67 vcard/include/VCardParam.h \ 67 vcard/include/VCardParam.h \
68 vcard/include/VCardPhoneNumberValue.h \ 68 vcard/include/VCardPhoneNumberValue.h \
69 vcard/include/VCardSourceParam.h \ 69 vcard/include/VCardSourceParam.h \
70 vcard/include/VCardTelParam.h \ 70 vcard/include/VCardTelParam.h \
71 vcard/include/VCardTextParam.h \ 71 vcard/include/VCardTextParam.h \
72 vcard/include/VCardTextNSParam.h \ 72 vcard/include/VCardTextNSParam.h \
73 vcard/include/VCardTextValue.h \ 73 vcard/include/VCardTextValue.h \
74 vcard/include/VCardTextBinParam.h \ 74 vcard/include/VCardTextBinParam.h \
75 vcard/include/VCardURIValue.h \ 75 vcard/include/VCardURIValue.h \
76 vcard/include/VCardVCard.h \ 76 vcard/include/VCardVCard.h \
77 vcard/include/VCardEntity.h \ 77 vcard/include/VCardEntity.h \
78 vcard/include/VCardValue.h \ 78 vcard/include/VCardValue.h \
79 vcard/include/VCardSoundValue.h \ 79 vcard/include/VCardSoundValue.h \
80 vcard/include/VCardAgentValue.h \ 80 vcard/include/VCardAgentValue.h \
81 vcard/include/VCardTelValue.h \ 81 vcard/include/VCardTelValue.h \
82 vcard/include/VCardTextBinValue.h \ 82 vcard/include/VCardTextBinValue.h \
83 vcard/include/VCardOrgValue.h \ 83 vcard/include/VCardOrgValue.h \
84 vcard/include/VCardUTCValue.h \ 84 vcard/include/VCardUTCValue.h \
85 vcard/include/VCardClassValue.h \ 85 vcard/include/VCardClassValue.h \
86 vcard/include/VCardFloatValue.h \ 86 vcard/include/VCardFloatValue.h \
87 vcard/include/VCardTextListValue.h \ 87 vcard/include/VCardTextListValue.h \
88 vcard/include/generated/AdrParam-generated.h \ 88 vcard/include/generated/AdrParam-generated.h \
89 vcard/include/generated/AdrValue-generated.h \ 89 vcard/include/generated/AdrValue-generated.h \
90 vcard/include/generated/AgentParam-generated.h \ 90 vcard/include/generated/AgentParam-generated.h \
91 vcard/include/generated/ContentLine-generated.h \ 91 vcard/include/generated/ContentLine-generated.h \
92 vcard/include/generated/DateParam-generated.h \ 92 vcard/include/generated/DateParam-generated.h \
93 vcard/include/generated/DateValue-generated.h \ 93 vcard/include/generated/DateValue-generated.h \
94 vcard/include/generated/EmailParam-generated.h \ 94 vcard/include/generated/EmailParam-generated.h \
95 vcard/include/generated/GeoValue-generated.h \ 95 vcard/include/generated/GeoValue-generated.h \
96 vcard/include/generated/Group-generated.h \ 96 vcard/include/generated/Group-generated.h \
97 vcard/include/generated/ImageParam-generated.h \ 97 vcard/include/generated/ImageParam-generated.h \
98 vcard/include/generated/ImageValue-generated.h \ 98 vcard/include/generated/ImageValue-generated.h \
99 vcard/include/generated/LangValue-generated.h \ 99 vcard/include/generated/LangValue-generated.h \
100 vcard/include/generated/NValue-generated.h \ 100 vcard/include/generated/NValue-generated.h \
101 vcard/include/generated/Param-generated.h \ 101 vcard/include/generated/Param-generated.h \
102 vcard/include/generated/PhoneNumberValue-generated.h \ 102 vcard/include/generated/PhoneNumberValue-generated.h \
103 vcard/include/generated/SourceParam-generated.h \ 103 vcard/include/generated/SourceParam-generated.h \
104 vcard/include/generated/TelParam-generated.h \ 104 vcard/include/generated/TelParam-generated.h \
105 vcard/include/generated/TextParam-generated.h \ 105 vcard/include/generated/TextParam-generated.h \
106 vcard/include/generated/TextNSParam-generated.h \ 106 vcard/include/generated/TextNSParam-generated.h \
107 vcard/include/generated/TextValue-generated.h \ 107 vcard/include/generated/TextValue-generated.h \
108 vcard/include/generated/TextBinParam-generated.h \ 108 vcard/include/generated/TextBinParam-generated.h \
109 vcard/include/generated/URIValue-generated.h \ 109 vcard/include/generated/URIValue-generated.h \
110 vcard/include/generated/VCard-generated.h \ 110 vcard/include/generated/VCard-generated.h \
111 vcard/include/generated/VCardEntity-generated.h \ 111 vcard/include/generated/VCardEntity-generated.h \
112 vcard/include/generated/Value-generated.h \ 112 vcard/include/generated/Value-generated.h \
113 vcard/include/generated/SoundValue-generated.h \ 113 vcard/include/generated/SoundValue-generated.h \
114 vcard/include/generated/AgentValue-generated.h \ 114 vcard/include/generated/AgentValue-generated.h \
115 vcard/include/generated/TelValue-generated.h \ 115 vcard/include/generated/TelValue-generated.h \
116 vcard/include/generated/TextBinValue-generated.h \ 116 vcard/include/generated/TextBinValue-generated.h \
117 vcard/include/generated/OrgValue-generated.h \ 117 vcard/include/generated/OrgValue-generated.h \
118 vcard/include/generated/UTCValue-generated.h \ 118 vcard/include/generated/UTCValue-generated.h \
119 vcard/include/generated/ClassValue-generated.h \ 119 vcard/include/generated/ClassValue-generated.h \
120 vcard/include/generated/FloatValue-generated.h \ 120 vcard/include/generated/FloatValue-generated.h \
121 vcard/include/generated/TextListValue-generated.h 121 vcard/include/generated/TextListValue-generated.h
122 122
123 123
124 124
125 125
126SOURCES = \ 126SOURCES = \
127 address.cpp \ 127 address.cpp \
128 addressbook.cpp \ 128 addressbook.cpp \
129 addressee.cpp \ 129 addressee.cpp \
130 addresseedialog.cpp \ 130 addresseedialog.cpp \
131 addresseelist.cpp \ 131 addresseelist.cpp \
132 addresseeview.cpp \ 132 addresseeview.cpp \
133 agent.cpp \ 133 agent.cpp \
134 distributionlist.cpp \ 134 distributionlist.cpp \
135 distributionlistdialog.cpp \ 135 distributionlistdialog.cpp \
136 distributionlisteditor.cpp \ 136 distributionlisteditor.cpp \
137 field.cpp \ 137 field.cpp \
138 formatfactory.cpp \ 138 formatfactory.cpp \
139 geo.cpp \ 139 geo.cpp \
140 key.cpp \ 140 key.cpp \
141 phonenumber.cpp \ 141 phonenumber.cpp \
142 picture.cpp \ 142 picture.cpp \
143 plugin.cpp \ 143 plugin.cpp \
144 resource.cpp \ 144 resource.cpp \
145 secrecy.cpp \ 145 secrecy.cpp \
146 sound.cpp \ 146 sound.cpp \
147 stdaddressbook.cpp \ 147 stdaddressbook.cpp \
148 timezone.cpp \ 148 timezone.cpp \
149 tmpaddressbook.cpp \ 149 tmpaddressbook.cpp \
150 vcardconverter.cpp \ 150 vcardconverter.cpp \
151 vcard21parser.cpp \ 151 vcard21parser.cpp \
152 vcardformatimpl.cpp \ 152 vcardformatimpl.cpp \
153 vcardformatplugin.cpp \ 153 vcardformatplugin.cpp \
154 vcardparser/vcardline.cpp \ 154 vcardparser/vcardline.cpp \
155 vcardparser/vcard.cpp \ 155 vcardparser/vcard.cpp \
156 vcardparser/vcardtool.cpp \ 156 vcardparser/vcardtool.cpp \
157 vcardparser/vcardparser.cpp \ 157 vcardparser/vcardparser.cpp \
158vcard/AdrParam.cpp \ 158vcard/AdrParam.cpp \
159vcard/AdrValue.cpp \ 159vcard/AdrValue.cpp \
160vcard/AgentParam.cpp \ 160vcard/AgentParam.cpp \
161vcard/ContentLine.cpp \ 161vcard/ContentLine.cpp \
162vcard/DateParam.cpp \ 162vcard/DateParam.cpp \
163vcard/DateValue.cpp \ 163vcard/DateValue.cpp \
164vcard/EmailParam.cpp \ 164vcard/EmailParam.cpp \
165vcard/Entity.cpp \ 165vcard/Entity.cpp \
166vcard/Enum.cpp \ 166vcard/Enum.cpp \
167vcard/GeoValue.cpp \ 167vcard/GeoValue.cpp \
168vcard/ImageParam.cpp \ 168vcard/ImageParam.cpp \
169vcard/ImageValue.cpp \ 169vcard/ImageValue.cpp \
170vcard/LangValue.cpp \ 170vcard/LangValue.cpp \
171vcard/NValue.cpp \ 171vcard/NValue.cpp \
172vcard/Param.cpp \ 172vcard/Param.cpp \
173vcard/PhoneNumberValue.cpp \ 173vcard/PhoneNumberValue.cpp \
174vcard/RToken.cpp \ 174vcard/RToken.cpp \
175vcard/SourceParam.cpp \ 175vcard/SourceParam.cpp \
176vcard/TelParam.cpp \ 176vcard/TelParam.cpp \
177vcard/TextParam.cpp \ 177vcard/TextParam.cpp \
178vcard/TextValue.cpp \ 178vcard/TextValue.cpp \
179vcard/TextBinParam.cpp \ 179vcard/TextBinParam.cpp \
180vcard/URIValue.cpp \ 180vcard/URIValue.cpp \
181vcard/VCardv.cpp \ 181vcard/VCardv.cpp \
182vcard/VCardEntity.cpp \ 182vcard/VCardEntity.cpp \
183vcard/Value.cpp \ 183vcard/Value.cpp \
184vcard/SoundValue.cpp \ 184vcard/SoundValue.cpp \
185vcard/AgentValue.cpp \ 185vcard/AgentValue.cpp \
186vcard/TelValue.cpp \ 186vcard/TelValue.cpp \
187vcard/TextBinValue.cpp \ 187vcard/TextBinValue.cpp \
188vcard/OrgValue.cpp \ 188vcard/OrgValue.cpp \
189vcard/UTCValue.cpp \ 189vcard/UTCValue.cpp \
190vcard/ClassValue.cpp \ 190vcard/ClassValue.cpp \
191vcard/FloatValue.cpp \ 191vcard/FloatValue.cpp \
192vcard/TextListValue.cpp 192vcard/TextListValue.cpp
193 193
194 194
195# plugins/ldap/resourceldap.cpp \ 195# plugins/ldap/resourceldap.cpp \
196# plugins/ldap/resourceldapconfig.cpp \ 196# plugins/ldap/resourceldapconfig.cpp \
diff --git a/kaddressbook.control b/kaddressbook.control
index 6a9855f..a7f87dc 100644
--- a/kaddressbook.control
+++ b/kaddressbook.control
@@ -1,14 +1,13 @@
1Files: bin/kapi apps/Pim/kaddressbook.desktop pics/kdepim/kaddressbook/* lib/libkamicro* 1Files: bin/kapi apps/Pim/kaddressbook.desktop pics/kdepim/kaddressbook/* lib/libmicrokabc_q* lib/libmicrokabc_f* lib/libmicrokabc_d* lib/libmicrokabc.*
2
3Priority: optional 2Priority: optional
4Section: qpe/pim 3Section: qpe/pim
5Maintainer: Lutz Rogowski <lutz@pi-sync.net> 4Maintainer: Lutz Rogowski <lutz@pi-sync.net>
6Architecture: arm 5Architecture: arm
7Version: $KDEPIM_VERSION 6Version: $KDEPIM_VERSION
8License: GPL 7License: GPL
9Depends: 8Depends: libmicrokde
10Description: KOrganizer/Pi and Kaddressbook/Pi 9Description: KOrganizer/Pi and Kaddressbook/Pi
11 The embedded version of KOrganizer/Platform-independend, 10 The embedded version of KOrganizer/Platform-independend,
12 the KDE calendar and scheduling program 11 the KDE calendar and scheduling program
13 optimized for 640x480 and 320x240 resolution 12 optimized for 640x480 and 320x240 resolution
14 on Zaurus PDA 13 on Zaurus PDA
diff --git a/kmicromail/libetpan/libetpanE.pro b/kmicromail/libetpan/libetpanE.pro
index b7a9a16..7f37948 100644
--- a/kmicromail/libetpan/libetpanE.pro
+++ b/kmicromail/libetpan/libetpanE.pro
@@ -1,274 +1,274 @@
1###################################################################### 1######################################################################
2# Automatically generated by qmake (1.07a) Thu Jul 1 00:54:03 2004 2# Automatically generated by qmake (1.07a) Thu Jul 1 00:54:03 2004
3###################################################################### 3######################################################################
4 4
5TEMPLATE = lib 5TEMPLATE = lib
6 TARGET = kmicrolibetpan 6 TARGET = microlibetpan
7 7
8OBJECTS_DIR = obj/$(PLATFORM) 8OBJECTS_DIR = obj/$(PLATFORM)
9MOC_DIR = moc/$(PLATFORM) 9MOC_DIR = moc/$(PLATFORM)
10DESTDIR=$(QPEDIR)/lib 10DESTDIR=$(QPEDIR)/lib
11 11
12DEPENDPATH += generic \ 12DEPENDPATH += generic \
13 imap \ 13 imap \
14 imf \ 14 imf \
15 maildir \ 15 maildir \
16 mbox \ 16 mbox \
17 mh \ 17 mh \
18 mime \ 18 mime \
19 nntp \ 19 nntp \
20 pop3 \ 20 pop3 \
21 smtp \ 21 smtp \
22 tests \ 22 tests \
23 tools \ 23 tools \
24 include/libetpan 24 include/libetpan
25INCLUDEPATH += . \ 25INCLUDEPATH += . \
26 generic \ 26 generic \
27 include \ 27 include \
28 tools \ 28 tools \
29 imf \ 29 imf \
30 imap \ 30 imap \
31 mime \ 31 mime \
32 maildir \ 32 maildir \
33 mbox \ 33 mbox \
34 mh \ 34 mh \
35 nntp \ 35 nntp \
36 pop3 \ 36 pop3 \
37 smtp \ 37 smtp \
38 tests 38 tests
39 39
40# Input 40# Input
41HEADERS += generic/data_message_driver.h \ 41HEADERS += generic/data_message_driver.h \
42 generic/generic_cache.h \ 42 generic/generic_cache.h \
43 generic/generic_cache_types.h \ 43 generic/generic_cache_types.h \
44 generic/imapdriver.h \ 44 generic/imapdriver.h \
45 generic/imapdriver_cached.h \ 45 generic/imapdriver_cached.h \
46 generic/imapdriver_cached_message.h \ 46 generic/imapdriver_cached_message.h \
47 generic/imapdriver_message.h \ 47 generic/imapdriver_message.h \
48 generic/imapdriver_tools.h \ 48 generic/imapdriver_tools.h \
49 generic/imapdriver_types.h \ 49 generic/imapdriver_types.h \
50 generic/imapstorage.h \ 50 generic/imapstorage.h \
51 generic/imfcache.h \ 51 generic/imfcache.h \
52 generic/libetpan.h \ 52 generic/libetpan.h \
53 generic/libetpan_version.h \ 53 generic/libetpan_version.h \
54 generic/maildirdriver.h \ 54 generic/maildirdriver.h \
55 generic/maildirdriver_cached.h \ 55 generic/maildirdriver_cached.h \
56 generic/maildirdriver_cached_message.h \ 56 generic/maildirdriver_cached_message.h \
57 generic/maildirdriver_message.h \ 57 generic/maildirdriver_message.h \
58 generic/maildirdriver_tools.h \ 58 generic/maildirdriver_tools.h \
59 generic/maildirdriver_types.h \ 59 generic/maildirdriver_types.h \
60 generic/maildirstorage.h \ 60 generic/maildirstorage.h \
61 generic/maildriver.h \ 61 generic/maildriver.h \
62 generic/maildriver_errors.h \ 62 generic/maildriver_errors.h \
63 generic/maildriver_tools.h \ 63 generic/maildriver_tools.h \
64 generic/maildriver_types.h \ 64 generic/maildriver_types.h \
65 generic/maildriver_types_helper.h \ 65 generic/maildriver_types_helper.h \
66 generic/mailfolder.h \ 66 generic/mailfolder.h \
67 generic/mailmessage.h \ 67 generic/mailmessage.h \
68 generic/mailmessage_tools.h \ 68 generic/mailmessage_tools.h \
69 generic/mailmessage_types.h \ 69 generic/mailmessage_types.h \
70 generic/mailstorage.h \ 70 generic/mailstorage.h \
71 generic/mailstorage_tools.h \ 71 generic/mailstorage_tools.h \
72 generic/mailstorage_types.h \ 72 generic/mailstorage_types.h \
73 generic/mailthread.h \ 73 generic/mailthread.h \
74 generic/mailthread_types.h \ 74 generic/mailthread_types.h \
75 generic/mboxdriver.h \ 75 generic/mboxdriver.h \
76 generic/mboxdriver_cached.h \ 76 generic/mboxdriver_cached.h \
77 generic/mboxdriver_cached_message.h \ 77 generic/mboxdriver_cached_message.h \
78 generic/mboxdriver_message.h \ 78 generic/mboxdriver_message.h \
79 generic/mboxdriver_tools.h \ 79 generic/mboxdriver_tools.h \
80 generic/mboxdriver_types.h \ 80 generic/mboxdriver_types.h \
81 generic/mboxstorage.h \ 81 generic/mboxstorage.h \
82 generic/mhdriver.h \ 82 generic/mhdriver.h \
83 generic/mhdriver_cached.h \ 83 generic/mhdriver_cached.h \
84 generic/mhdriver_cached_message.h \ 84 generic/mhdriver_cached_message.h \
85 generic/mhdriver_message.h \ 85 generic/mhdriver_message.h \
86 generic/mhdriver_tools.h \ 86 generic/mhdriver_tools.h \
87 generic/mhdriver_types.h \ 87 generic/mhdriver_types.h \
88 generic/mhstorage.h \ 88 generic/mhstorage.h \
89 generic/mime_message_driver.h \ 89 generic/mime_message_driver.h \
90 generic/nntpdriver.h \ 90 generic/nntpdriver.h \
91 generic/nntpdriver_cached.h \ 91 generic/nntpdriver_cached.h \
92 generic/nntpdriver_cached_message.h \ 92 generic/nntpdriver_cached_message.h \
93 generic/nntpdriver_message.h \ 93 generic/nntpdriver_message.h \
94 generic/nntpdriver_tools.h \ 94 generic/nntpdriver_tools.h \
95 generic/nntpdriver_types.h \ 95 generic/nntpdriver_types.h \
96 generic/nntpstorage.h \ 96 generic/nntpstorage.h \
97 generic/pop3driver.h \ 97 generic/pop3driver.h \
98 generic/pop3driver_cached.h \ 98 generic/pop3driver_cached.h \
99 generic/pop3driver_cached_message.h \ 99 generic/pop3driver_cached_message.h \
100 generic/pop3driver_message.h \ 100 generic/pop3driver_message.h \
101 generic/pop3driver_tools.h \ 101 generic/pop3driver_tools.h \
102 generic/pop3driver_types.h \ 102 generic/pop3driver_types.h \
103 generic/pop3storage.h \ 103 generic/pop3storage.h \
104 imap/mailimap.h \ 104 imap/mailimap.h \
105 imap/mailimap_helper.h \ 105 imap/mailimap_helper.h \
106 imap/mailimap_keywords.h \ 106 imap/mailimap_keywords.h \
107 imap/mailimap_parser.h \ 107 imap/mailimap_parser.h \
108 imap/mailimap_print.h \ 108 imap/mailimap_print.h \
109 imap/mailimap_sender.h \ 109 imap/mailimap_sender.h \
110 imap/mailimap_socket.h \ 110 imap/mailimap_socket.h \
111 imap/mailimap_ssl.h \ 111 imap/mailimap_ssl.h \
112 imap/mailimap_types.h \ 112 imap/mailimap_types.h \
113 imap/mailimap_types_helper.h \ 113 imap/mailimap_types_helper.h \
114 imf/mailimf.h \ 114 imf/mailimf.h \
115 imf/mailimf_types.h \ 115 imf/mailimf_types.h \
116 imf/mailimf_types_helper.h \ 116 imf/mailimf_types_helper.h \
117 imf/mailimf_write.h \ 117 imf/mailimf_write.h \
118 maildir/maildir.h \ 118 maildir/maildir.h \
119 maildir/maildir_types.h \ 119 maildir/maildir_types.h \
120 mbox/mailmbox.h \ 120 mbox/mailmbox.h \
121 mbox/mailmbox_parse.h \ 121 mbox/mailmbox_parse.h \
122 mbox/mailmbox_types.h \ 122 mbox/mailmbox_types.h \
123 mh/mailmh.h \ 123 mh/mailmh.h \
124 mime/mailmime.h \ 124 mime/mailmime.h \
125 mime/mailmime_content.h \ 125 mime/mailmime_content.h \
126 mime/mailmime_decode.h \ 126 mime/mailmime_decode.h \
127 mime/mailmime_disposition.h \ 127 mime/mailmime_disposition.h \
128 mime/mailmime_types.h \ 128 mime/mailmime_types.h \
129 mime/mailmime_types_helper.h \ 129 mime/mailmime_types_helper.h \
130 mime/mailmime_write.h \ 130 mime/mailmime_write.h \
131 nntp/newsnntp.h \ 131 nntp/newsnntp.h \
132 nntp/newsnntp_socket.h \ 132 nntp/newsnntp_socket.h \
133 nntp/newsnntp_ssl.h \ 133 nntp/newsnntp_ssl.h \
134 nntp/newsnntp_types.h \ 134 nntp/newsnntp_types.h \
135 pop3/mailpop3.h \ 135 pop3/mailpop3.h \
136 pop3/mailpop3_helper.h \ 136 pop3/mailpop3_helper.h \
137 pop3/mailpop3_socket.h \ 137 pop3/mailpop3_socket.h \
138 pop3/mailpop3_ssl.h \ 138 pop3/mailpop3_ssl.h \
139 pop3/mailpop3_types.h \ 139 pop3/mailpop3_types.h \
140 smtp/mailsmtp.h \ 140 smtp/mailsmtp.h \
141 smtp/mailsmtp_helper.h \ 141 smtp/mailsmtp_helper.h \
142 smtp/mailsmtp_socket.h \ 142 smtp/mailsmtp_socket.h \
143 smtp/mailsmtp_ssl.h \ 143 smtp/mailsmtp_ssl.h \
144 smtp/mailsmtp_types.h \ 144 smtp/mailsmtp_types.h \
145 tools/base64.h \ 145 tools/base64.h \
146 tools/carray.h \ 146 tools/carray.h \
147 tools/charconv.h \ 147 tools/charconv.h \
148 tools/chash.h \ 148 tools/chash.h \
149 tools/cinthash.h \ 149 tools/cinthash.h \
150 tools/clist.h \ 150 tools/clist.h \
151 tools/connect.h \ 151 tools/connect.h \
152 tools/hmac-md5.h \ 152 tools/hmac-md5.h \
153 tools/mail.h \ 153 tools/mail.h \
154 tools/mail_cache_db.h \ 154 tools/mail_cache_db.h \
155 tools/mail_cache_db_types.h \ 155 tools/mail_cache_db_types.h \
156 tools/maillock.h \ 156 tools/maillock.h \
157 tools/mailstream.h \ 157 tools/mailstream.h \
158 tools/mailstream_helper.h \ 158 tools/mailstream_helper.h \
159 tools/mailstream_low.h \ 159 tools/mailstream_low.h \
160 tools/mailstream_socket.h \ 160 tools/mailstream_socket.h \
161 tools/mailstream_ssl.h \ 161 tools/mailstream_ssl.h \
162 tools/mailstream_types.h \ 162 tools/mailstream_types.h \
163 tools/mapping.h \ 163 tools/mapping.h \
164 tools/md5.h \ 164 tools/md5.h \
165 tools/md5global.h \ 165 tools/md5global.h \
166 tools/mmapstring.h \ 166 tools/mmapstring.h \
167 167
168SOURCES += generic/data_message_driver.c \ 168SOURCES += generic/data_message_driver.c \
169 generic/generic_cache.c \ 169 generic/generic_cache.c \
170 generic/imapdriver.c \ 170 generic/imapdriver.c \
171 generic/imapdriver_cached.c \ 171 generic/imapdriver_cached.c \
172 generic/imapdriver_cached_message.c \ 172 generic/imapdriver_cached_message.c \
173 generic/imapdriver_message.c \ 173 generic/imapdriver_message.c \
174 generic/imapdriver_tools.c \ 174 generic/imapdriver_tools.c \
175 generic/imapstorage.c \ 175 generic/imapstorage.c \
176 generic/imfcache.c \ 176 generic/imfcache.c \
177 generic/libetpan_version.c \ 177 generic/libetpan_version.c \
178 generic/maildirdriver.c \ 178 generic/maildirdriver.c \
179 generic/maildirdriver_cached.c \ 179 generic/maildirdriver_cached.c \
180 generic/maildirdriver_cached_message.c \ 180 generic/maildirdriver_cached_message.c \
181 generic/maildirdriver_message.c \ 181 generic/maildirdriver_message.c \
182 generic/maildirdriver_tools.c \ 182 generic/maildirdriver_tools.c \
183 generic/maildirstorage.c \ 183 generic/maildirstorage.c \
184 generic/maildriver.c \ 184 generic/maildriver.c \
185 generic/maildriver_tools.c \ 185 generic/maildriver_tools.c \
186 generic/maildriver_types.c \ 186 generic/maildriver_types.c \
187 generic/maildriver_types_helper.c \ 187 generic/maildriver_types_helper.c \
188 generic/mailfolder.c \ 188 generic/mailfolder.c \
189 generic/mailmessage.c \ 189 generic/mailmessage.c \
190 generic/mailmessage_tools.c \ 190 generic/mailmessage_tools.c \
191 generic/mailmessage_types.c \ 191 generic/mailmessage_types.c \
192 generic/mailstorage.c \ 192 generic/mailstorage.c \
193 generic/mailstorage_tools.c \ 193 generic/mailstorage_tools.c \
194 generic/mailthread.c \ 194 generic/mailthread.c \
195 generic/mailthread_types.c \ 195 generic/mailthread_types.c \
196 generic/mboxdriver.c \ 196 generic/mboxdriver.c \
197 generic/mboxdriver_cached.c \ 197 generic/mboxdriver_cached.c \
198 generic/mboxdriver_cached_message.c \ 198 generic/mboxdriver_cached_message.c \
199 generic/mboxdriver_message.c \ 199 generic/mboxdriver_message.c \
200 generic/mboxdriver_tools.c \ 200 generic/mboxdriver_tools.c \
201 generic/mboxstorage.c \ 201 generic/mboxstorage.c \
202 generic/mhdriver.c \ 202 generic/mhdriver.c \
203 generic/mhdriver_cached.c \ 203 generic/mhdriver_cached.c \
204 generic/mhdriver_cached_message.c \ 204 generic/mhdriver_cached_message.c \
205 generic/mhdriver_message.c \ 205 generic/mhdriver_message.c \
206 generic/mhdriver_tools.c \ 206 generic/mhdriver_tools.c \
207 generic/mhstorage.c \ 207 generic/mhstorage.c \
208 generic/mime_message_driver.c \ 208 generic/mime_message_driver.c \
209 generic/nntpdriver.c \ 209 generic/nntpdriver.c \
210 generic/nntpdriver_cached.c \ 210 generic/nntpdriver_cached.c \
211 generic/nntpdriver_cached_message.c \ 211 generic/nntpdriver_cached_message.c \
212 generic/nntpdriver_message.c \ 212 generic/nntpdriver_message.c \
213 generic/nntpdriver_tools.c \ 213 generic/nntpdriver_tools.c \
214 generic/nntpstorage.c \ 214 generic/nntpstorage.c \
215 generic/pop3driver.c \ 215 generic/pop3driver.c \
216 generic/pop3driver_cached.c \ 216 generic/pop3driver_cached.c \
217 generic/pop3driver_cached_message.c \ 217 generic/pop3driver_cached_message.c \
218 generic/pop3driver_message.c \ 218 generic/pop3driver_message.c \
219 generic/pop3driver_tools.c \ 219 generic/pop3driver_tools.c \
220 generic/pop3storage.c \ 220 generic/pop3storage.c \
221 imap/mailimap.c \ 221 imap/mailimap.c \
222 imap/mailimap_helper.c \ 222 imap/mailimap_helper.c \
223 imap/mailimap_keywords.c \ 223 imap/mailimap_keywords.c \
224 imap/mailimap_parser.c \ 224 imap/mailimap_parser.c \
225 imap/mailimap_print.c \ 225 imap/mailimap_print.c \
226 imap/mailimap_sender.c \ 226 imap/mailimap_sender.c \
227 imap/mailimap_socket.c \ 227 imap/mailimap_socket.c \
228 imap/mailimap_ssl.c \ 228 imap/mailimap_ssl.c \
229 imap/mailimap_types.c \ 229 imap/mailimap_types.c \
230 imap/mailimap_types_helper.c \ 230 imap/mailimap_types_helper.c \
231 imf/mailimf.c \ 231 imf/mailimf.c \
232 imf/mailimf_types.c \ 232 imf/mailimf_types.c \
233 imf/mailimf_types_helper.c \ 233 imf/mailimf_types_helper.c \
234 imf/mailimf_write.c \ 234 imf/mailimf_write.c \
235 maildir/maildir.c \ 235 maildir/maildir.c \
236 mbox/mailmbox.c \ 236 mbox/mailmbox.c \
237 mbox/mailmbox_parse.c \ 237 mbox/mailmbox_parse.c \
238 mbox/mailmbox_types.c \ 238 mbox/mailmbox_types.c \
239 mh/mailmh.c \ 239 mh/mailmh.c \
240 mime/mailmime.c \ 240 mime/mailmime.c \
241 mime/mailmime_content.c \ 241 mime/mailmime_content.c \
242 mime/mailmime_decode.c \ 242 mime/mailmime_decode.c \
243 mime/mailmime_disposition.c \ 243 mime/mailmime_disposition.c \
244 mime/mailmime_types.c \ 244 mime/mailmime_types.c \
245 mime/mailmime_types_helper.c \ 245 mime/mailmime_types_helper.c \
246 mime/mailmime_write.c \ 246 mime/mailmime_write.c \
247 nntp/newsnntp.c \ 247 nntp/newsnntp.c \
248 nntp/newsnntp_socket.c \ 248 nntp/newsnntp_socket.c \
249 nntp/newsnntp_ssl.c \ 249 nntp/newsnntp_ssl.c \
250 pop3/mailpop3.c \ 250 pop3/mailpop3.c \
251 pop3/mailpop3_helper.c \ 251 pop3/mailpop3_helper.c \
252 pop3/mailpop3_socket.c \ 252 pop3/mailpop3_socket.c \
253 pop3/mailpop3_ssl.c \ 253 pop3/mailpop3_ssl.c \
254 smtp/mailsmtp.c \ 254 smtp/mailsmtp.c \
255 smtp/mailsmtp_helper.c \ 255 smtp/mailsmtp_helper.c \
256 smtp/mailsmtp_socket.c \ 256 smtp/mailsmtp_socket.c \
257 smtp/mailsmtp_ssl.c \ 257 smtp/mailsmtp_ssl.c \
258 tools/base64.c \ 258 tools/base64.c \
259 tools/carray.c \ 259 tools/carray.c \
260 tools/charconv.c \ 260 tools/charconv.c \
261 tools/chash.c \ 261 tools/chash.c \
262 tools/cinthash.c \ 262 tools/cinthash.c \
263 tools/clist.c \ 263 tools/clist.c \
264 tools/connect.c \ 264 tools/connect.c \
265 tools/mail_cache_db.c \ 265 tools/mail_cache_db.c \
266 tools/maillock.c \ 266 tools/maillock.c \
267 tools/mailstream.c \ 267 tools/mailstream.c \
268 tools/mailstream_helper.c \ 268 tools/mailstream_helper.c \
269 tools/mailstream_low.c \ 269 tools/mailstream_low.c \
270 tools/mailstream_socket.c \ 270 tools/mailstream_socket.c \
271 tools/mailstream_ssl.c \ 271 tools/mailstream_ssl.c \
272 tools/mapping.c \ 272 tools/mapping.c \
273 tools/md5.c \ 273 tools/md5.c \
274 tools/mmapstring.c 274 tools/mmapstring.c
diff --git a/kmicromail/libmailwrapper/libmailwrapperE.pro b/kmicromail/libmailwrapper/libmailwrapperE.pro
index a53b022..7cc7a90 100644
--- a/kmicromail/libmailwrapper/libmailwrapperE.pro
+++ b/kmicromail/libmailwrapper/libmailwrapperE.pro
@@ -1,49 +1,49 @@
1TEMPLATE = lib 1TEMPLATE = lib
2CONFIG += qt warn_on 2CONFIG += qt warn_on
3 3
4HEADERS = mailwrapper.h \ 4HEADERS = mailwrapper.h \
5 imapwrapper.h \ 5 imapwrapper.h \
6 mailtypes.h \ 6 mailtypes.h \
7 pop3wrapper.h \ 7 pop3wrapper.h \
8 abstractmail.h \ 8 abstractmail.h \
9 smtpwrapper.h \ 9 smtpwrapper.h \
10 genericwrapper.h \ 10 genericwrapper.h \
11 mboxwrapper.h \ 11 mboxwrapper.h \
12 settings.h \ 12 settings.h \
13 logindialog.h \ 13 logindialog.h \
14 sendmailprogress.h \ 14 sendmailprogress.h \
15 statusmail.h \ 15 statusmail.h \
16 mhwrapper.h \ 16 mhwrapper.h \
17 nntpwrapper.h \ 17 nntpwrapper.h \
18 generatemail.h \ 18 generatemail.h \
19 storemail.h 19 storemail.h
20 20
21SOURCES = imapwrapper.cpp \ 21SOURCES = imapwrapper.cpp \
22 mailwrapper.cpp \ 22 mailwrapper.cpp \
23 mailtypes.cpp \ 23 mailtypes.cpp \
24 pop3wrapper.cpp \ 24 pop3wrapper.cpp \
25 abstractmail.cpp \ 25 abstractmail.cpp \
26 smtpwrapper.cpp \ 26 smtpwrapper.cpp \
27 genericwrapper.cpp \ 27 genericwrapper.cpp \
28 mboxwrapper.cpp \ 28 mboxwrapper.cpp \
29 settings.cpp \ 29 settings.cpp \
30 logindialog.cpp \ 30 logindialog.cpp \
31 sendmailprogress.cpp \ 31 sendmailprogress.cpp \
32 statusmail.cpp \ 32 statusmail.cpp \
33 mhwrapper.cpp \ 33 mhwrapper.cpp \
34 nntpwrapper.cpp \ 34 nntpwrapper.cpp \
35 generatemail.cpp \ 35 generatemail.cpp \
36 storemail.cpp 36 storemail.cpp
37 37
38INTERFACES = logindialogui.ui \ 38INTERFACES = logindialogui.ui \
39 sendmailprogressui.ui 39 sendmailprogressui.ui
40 40
41INCLUDEPATH += ../../microkde ../../microkde/kdecore ../libetpan/include $(QPEDIR)/include 41INCLUDEPATH += ../../microkde ../../microkde/kdecore ../libetpan/include $(QPEDIR)/include
42LIBS += -lssl -lcrypto 42LIBS += -lssl -lcrypto
43 43
44#-lqpe -letpan 44#-lqpe -letpan
45 45
46DESTDIR = $(QPEDIR)/lib 46DESTDIR = $(QPEDIR)/lib
47OBJECTS_DIR = obj/$(PLATFORM) 47OBJECTS_DIR = obj/$(PLATFORM)
48MOC_DIR = moc/$(PLATFORM) 48MOC_DIR = moc/$(PLATFORM)
49TARGET = kmicromailwrapper 49TARGET = micromailwrapper
diff --git a/kopiemail.control b/kopiemail.control
index 58c6d19..58d4bfa 100644
--- a/kopiemail.control
+++ b/kopiemail.control
@@ -1,12 +1,12 @@
1Files: bin/ompi apps/Pim/kopiemail.desktop pics/kdepim/kopiemail/* lib/libkmicro* 1Files: bin/ompi apps/Pim/kopiemail.desktop pics/kdepim/kopiemail/* lib/libmicromail* lib/libmicrolibetpan*
2 2
3Priority: optional 3Priority: optional
4Section: qpe/pim 4Section: qpe/pim
5Maintainer: Lutz Rogowski <lutz@pi-sync.net> 5Maintainer: Lutz Rogowski <lutz@pi-sync.net>
6Architecture: arm 6Architecture: arm
7Version: $KDEPIM_VERSION 7Version: $KDEPIM_VERSION
8License: GPL 8License: GPL
9Depends: 9Depends: libmicrokde openssl
10Description: KOPieMail/Pi 10Description: KOPieMail/Pi
11 The embedded version of KOPioeMail/Platform-independend, 11 The embedded version of KOPieMail/Platform-independend (OM/Pi),
12 for 640x480 and 320x240 resolution on Zaurus PDA 12 for 640x480 and 320x240 resolution on Zaurus PDA
diff --git a/ksharpPIM_DTMaccess.control b/ksharpPIM-DTMaccess.control
index f735462..f735462 100644
--- a/ksharpPIM_DTMaccess.control
+++ b/ksharpPIM-DTMaccess.control