-rw-r--r-- | Makefile | 33 | ||||
-rw-r--r-- | kaddressbook.control | 14 |
2 files changed, 41 insertions, 6 deletions
@@ -2,9 +2,9 @@ DISTPATH = $(shell pwd) | |||
2 | DISTDIR = $(shell basename $(DISTPATH)) | 2 | DISTDIR = $(shell basename $(DISTPATH)) |
3 | 3 | ||
4 | SUBDIRS = libical/src/libical libical/src/libicalss qtcompat microkde \ | 4 | SUBDIRS = libical/src/libical libical/src/libicalss qtcompat microkde \ |
5 | libkcal libkdepim kabc kabc/formats/binary kabc/plugins/file kabc/plugins/dir \ | 5 | libkcal libkdepim kabc kabc/converter/opie kabc/formats/binary kabc/plugins/file kabc/plugins/dir \ |
6 | kabc/plugins/ldap kabc/plugins/opie \ | 6 | kabc/plugins/opie \ |
7 | korganizer kalarmd kaddressbook | 7 | korganizer kalarmd kaddressbook kmicromail/libetpan kmicromail/libmailwrapper kmicromail |
8 | all: tmake | 8 | all: tmake |
9 | for i in $(SUBDIRS); do pushd $$i; \ | 9 | for i in $(SUBDIRS); do pushd $$i; \ |
10 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 10 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
@@ -22,7 +22,9 @@ clean: | |||
22 | done | 22 | done |
23 | install: | 23 | install: |
24 | cd bin/kdepim; make install | 24 | cd bin/kdepim; make install |
25 | cp db2file/db2file $(QPEDIR)/bin/db2file | ||
25 | cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop | 26 | cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop |
27 | cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kmicromail.desktop | ||
26 | cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop | 28 | cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop |
27 | 29 | ||
28 | dist: | 30 | dist: |
@@ -30,7 +32,10 @@ dist: | |||
30 | rm -f *arm.ipk | 32 | rm -f *arm.ipk |
31 | rm -f *~ | 33 | rm -f *~ |
32 | cd ..; tar czf kdepim.src.tar.gz --exclude=obj --exclude=moc kdepim | 34 | cd ..; tar czf kdepim.src.tar.gz --exclude=obj --exclude=moc kdepim |
33 | mkipks kdepim.control | 35 | mkipks kmicrokdelibs.control |
36 | mkipks korganizer.control | ||
37 | mkipks kaddressbook.control | ||
38 | mkipks kmicromail.control | ||
34 | mkipks korganizer-alarm.control | 39 | mkipks korganizer-alarm.control |
35 | 40 | ||
36 | tmake: objects qtcompat/Makefile$(PLATFORM) microkde/Makefile$(PLATFORM) \ | 41 | tmake: objects qtcompat/Makefile$(PLATFORM) microkde/Makefile$(PLATFORM) \ |
@@ -40,12 +45,16 @@ tmake: objects qtcompat/Makefile$(PLATFORM) microkde/Makefile$(PLATFORM) \ | |||
40 | libical/src/libical/Makefile$(PLATFORM) \ | 45 | libical/src/libical/Makefile$(PLATFORM) \ |
41 | libical/src/libicalss/Makefile$(PLATFORM) \ | 46 | libical/src/libicalss/Makefile$(PLATFORM) \ |
42 | kabc/Makefile$(PLATFORM) \ | 47 | kabc/Makefile$(PLATFORM) \ |
48 | kabc/converter/opie/Makefile$(PLATFORM) \ | ||
43 | kabc/formats/binary/Makefile$(PLATFORM) \ | 49 | kabc/formats/binary/Makefile$(PLATFORM) \ |
44 | kabc/plugins/file/Makefile$(PLATFORM) \ | 50 | kabc/plugins/file/Makefile$(PLATFORM) \ |
45 | kabc/plugins/dir/Makefile$(PLATFORM) \ | 51 | kabc/plugins/dir/Makefile$(PLATFORM) \ |
46 | kabc/plugins/ldap/Makefile$(PLATFORM) \ | 52 | kabc/plugins/ldap/Makefile$(PLATFORM) \ |
47 | kabc/plugins/opie/Makefile$(PLATFORM) \ | 53 | kabc/plugins/opie/Makefile$(PLATFORM) \ |
48 | kaddressbook/Makefile$(PLATFORM) | 54 | kaddressbook/Makefile$(PLATFORM) \ |
55 | kmicromail/Makefile$(PLATFORM) \ | ||
56 | kmicromail/libetpan/Makefile$(PLATFORM) \ | ||
57 | kmicromail/libmailwrapper/Makefile$(PLATFORM) | ||
49 | 58 | ||
50 | 59 | ||
51 | 60 | ||
@@ -77,6 +86,9 @@ libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro | |||
77 | kabc/Makefile$(PLATFORM): kabc/kabcE.pro | 86 | kabc/Makefile$(PLATFORM): kabc/kabcE.pro |
78 | cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" kabcE.pro -o Makefile$(PLATFORM) | 87 | cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" kabcE.pro -o Makefile$(PLATFORM) |
79 | 88 | ||
89 | kabc/converter/opie/Makefile$(PLATFORM): kabc/converter/opie/opieconverterE.pro | ||
90 | cd kabc/converter/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" opieconverterE.pro -o Makefile$(PLATFORM) | ||
91 | |||
80 | kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro | 92 | kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro |
81 | cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) | 93 | cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) |
82 | 94 | ||
@@ -91,7 +103,16 @@ kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/kabc_ldapE.pro | |||
91 | 103 | ||
92 | kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/kabc_opieE.pro | 104 | kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/kabc_opieE.pro |
93 | cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" kabc_opieE.pro -o Makefile$(PLATFORM) | 105 | cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" kabc_opieE.pro -o Makefile$(PLATFORM) |
94 | 106 | ||
107 | |||
95 | kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro | 108 | kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro |
96 | cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" kaddressbookE.pro -o Makefile$(PLATFORM) | 109 | cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" kaddressbookE.pro -o Makefile$(PLATFORM) |
97 | 110 | ||
111 | |||
112 | kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro | ||
113 | cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" kmicromailE.pro -o Makefile$(PLATFORM) | ||
114 | kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro | ||
115 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" libetpanE.pro -o Makefile$(PLATFORM) | ||
116 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro | ||
117 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" libmailwrapperE.pro -o Makefile$(PLATFORM) | ||
118 | |||
diff --git a/kaddressbook.control b/kaddressbook.control new file mode 100644 index 0000000..7c44754 --- a/dev/null +++ b/kaddressbook.control | |||
@@ -0,0 +1,14 @@ | |||
1 | Files: bin/kapi apps/Pim/kaddressbook.desktop pics/kdepim/kaddressbook/* | ||
2 | |||
3 | Priority: optional | ||
4 | Section: qpe/pim | ||
5 | Maintainer: Lutz Rogowski <lutz@pi-sync.net> | ||
6 | Architecture: arm | ||
7 | Version: 1.9.2 | ||
8 | License: GPL | ||
9 | Depends: lib/libmicrokde.so | ||
10 | Description: KOrganizer/Pi and Kaddressbook/Pi | ||
11 | The embedded version of KOrganizer/Platform-independend, | ||
12 | the KDE calendar and scheduling program | ||
13 | optimized for 640x480 and 320x240 resolution | ||
14 | on Zaurus PDA | ||