author | mickeyl <mickeyl> | 2004-04-28 21:18:02 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-28 21:18:02 (UTC) |
commit | f567351ae81391fbe50c8f37a6dc2ff661b23f44 (patch) (unidiff) | |
tree | a588d11e7a5b310c485c7a6a4aa6d773200deda3 | |
parent | f498387e7c58cd9488c9b4ed964bfb0ebeead5c8 (diff) | |
download | opie-f567351ae81391fbe50c8f37a6dc2ff661b23f44.zip opie-f567351ae81391fbe50c8f37a6dc2ff661b23f44.tar.gz opie-f567351ae81391fbe50c8f37a6dc2ff661b23f44.tar.bz2 |
CLEANUP: rsync is now a (static) library and the launcher links against it
-rw-r--r-- | config.in | 2 | ||||
-rw-r--r-- | core/launcher/server.pro | 46 | ||||
-rw-r--r-- | packages | 1 | ||||
-rw-r--r-- | rsync/config.in | 3 | ||||
-rw-r--r-- | rsync/rsync.pro | 60 |
5 files changed, 66 insertions, 46 deletions
@@ -178,3 +178,3 @@ menu "Base" | |||
178 | source libqtaux/config.in | 178 | source libqtaux/config.in |
179 | 179 | source rsync/config.in | |
180 | source core/opie-login/config.in | 180 | source core/opie-login/config.in |
diff --git a/core/launcher/server.pro b/core/launcher/server.pro index 25806b6..4e6a581 100644 --- a/core/launcher/server.pro +++ b/core/launcher/server.pro | |||
@@ -28,20 +28,2 @@ HEADERS += server.h \ | |||
28 | firstuse.h \ | 28 | firstuse.h \ |
29 | $$(OPIEDIR)/rsync/buf.h \ | ||
30 | $$(OPIEDIR)/rsync/checksum.h \ | ||
31 | $$(OPIEDIR)/rsync/command.h \ | ||
32 | $$(OPIEDIR)/rsync/emit.h \ | ||
33 | $$(OPIEDIR)/rsync/job.h \ | ||
34 | $$(OPIEDIR)/rsync/netint.h \ | ||
35 | $$(OPIEDIR)/rsync/protocol.h \ | ||
36 | $$(OPIEDIR)/rsync/prototab.h \ | ||
37 | $$(OPIEDIR)/rsync/rsync.h \ | ||
38 | $$(OPIEDIR)/rsync/search.h \ | ||
39 | $$(OPIEDIR)/rsync/stream.h \ | ||
40 | $$(OPIEDIR)/rsync/sumset.h \ | ||
41 | $$(OPIEDIR)/rsync/trace.h \ | ||
42 | $$(OPIEDIR)/rsync/types.h \ | ||
43 | $$(OPIEDIR)/rsync/util.h \ | ||
44 | $$(OPIEDIR)/rsync/whole.h \ | ||
45 | $$(OPIEDIR)/rsync/config_rsync.h \ | ||
46 | $$(OPIEDIR)/rsync/qrsync.h \ | ||
47 | syncdialog.h \ | 29 | syncdialog.h \ |
@@ -76,28 +58,2 @@ SOURCES += server.cpp \ | |||
76 | firstuse.cpp \ | 58 | firstuse.cpp \ |
77 | $$(OPIEDIR)/rsync/base64.c \ | ||
78 | $$(OPIEDIR)/rsync/buf.c \ | ||
79 | $$(OPIEDIR)/rsync/checksum.c \ | ||
80 | $$(OPIEDIR)/rsync/command.c \ | ||
81 | $$(OPIEDIR)/rsync/delta.c \ | ||
82 | $$(OPIEDIR)/rsync/emit.c \ | ||
83 | $$(OPIEDIR)/rsync/hex.c \ | ||
84 | $$(OPIEDIR)/rsync/job.c \ | ||
85 | $$(OPIEDIR)/rsync/mdfour.c \ | ||
86 | $$(OPIEDIR)/rsync/mksum.c \ | ||
87 | $$(OPIEDIR)/rsync/msg.c \ | ||
88 | $$(OPIEDIR)/rsync/netint.c \ | ||
89 | $$(OPIEDIR)/rsync/patch.c \ | ||
90 | $$(OPIEDIR)/rsync/prototab.c \ | ||
91 | $$(OPIEDIR)/rsync/readsums.c \ | ||
92 | $$(OPIEDIR)/rsync/scoop.c \ | ||
93 | $$(OPIEDIR)/rsync/search.c \ | ||
94 | $$(OPIEDIR)/rsync/stats.c \ | ||
95 | $$(OPIEDIR)/rsync/stream.c \ | ||
96 | $$(OPIEDIR)/rsync/sumset.c \ | ||
97 | $$(OPIEDIR)/rsync/trace.c \ | ||
98 | $$(OPIEDIR)/rsync/tube.c \ | ||
99 | $$(OPIEDIR)/rsync/util.c \ | ||
100 | $$(OPIEDIR)/rsync/version.c \ | ||
101 | $$(OPIEDIR)/rsync/whole.c \ | ||
102 | $$(OPIEDIR)/rsync/qrsync.cpp \ | ||
103 | syncdialog.cpp \ | 59 | syncdialog.cpp \ |
@@ -120,3 +76,3 @@ DEPENDPATH += $(OPIEDIR)/noncore/settings/mediummount | |||
120 | 76 | ||
121 | LIBS += -lqpe -lopiecore2 -lopieui2 | 77 | LIBS += -lqpe -lopiecore2 -lopieui2 -lqrsync |
122 | TARGET = qpe | 78 | TARGET = qpe |
@@ -93,2 +93,3 @@ CONFIG_LIBQPE library library.pro | |||
93 | CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro | 93 | CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro |
94 | CONFIG_LIBQRSYNC rsync rsync.pro | ||
94 | CONFIG_LIBQTAUX libqtauxlibqtaux.pro | 95 | CONFIG_LIBQTAUX libqtauxlibqtaux.pro |
diff --git a/rsync/config.in b/rsync/config.in new file mode 100644 index 0000000..d9502e4 --- a/dev/null +++ b/rsync/config.in | |||
@@ -0,0 +1,3 @@ | |||
1 | config LIBQRSYNC | ||
2 | boolean "qt rsync wrapper library" | ||
3 | default "y" | ||
diff --git a/rsync/rsync.pro b/rsync/rsync.pro new file mode 100644 index 0000000..a02d122 --- a/dev/null +++ b/rsync/rsync.pro | |||
@@ -0,0 +1,60 @@ | |||
1 | TEMPLATE= lib | ||
2 | |||
3 | CONFIG += qt staticlib warn_on | ||
4 | |||
5 | DESTDIR = $$(OPIEDIR)/lib | ||
6 | |||
7 | HEADERS += \ | ||
8 | buf.h \ | ||
9 | checksum.h \ | ||
10 | command.h \ | ||
11 | emit.h \ | ||
12 | job.h \ | ||
13 | netint.h \ | ||
14 | protocol.h \ | ||
15 | prototab.h \ | ||
16 | rsync.h \ | ||
17 | search.h \ | ||
18 | stream.h \ | ||
19 | sumset.h \ | ||
20 | trace.h \ | ||
21 | types.h \ | ||
22 | util.h \ | ||
23 | whole.h \ | ||
24 | config_rsync.h \ | ||
25 | qrsync.h | ||
26 | |||
27 | SOURCES += \ | ||
28 | base64.c \ | ||
29 | buf.c \ | ||
30 | checksum.c \ | ||
31 | command.c \ | ||
32 | delta.c \ | ||
33 | emit.c \ | ||
34 | hex.c \ | ||
35 | job.c \ | ||
36 | mdfour.c \ | ||
37 | mksum.c \ | ||
38 | msg.c \ | ||
39 | netint.c \ | ||
40 | patch.c \ | ||
41 | prototab.c \ | ||
42 | readsums.c \ | ||
43 | scoop.c \ | ||
44 | search.c \ | ||
45 | stats.c \ | ||
46 | stream.c \ | ||
47 | sumset.c \ | ||
48 | trace.c \ | ||
49 | tube.c \ | ||
50 | util.c \ | ||
51 | version.c \ | ||
52 | whole.c \ | ||
53 | qrsync.cpp | ||
54 | |||
55 | INCLUDEPATH += $(OPIEDIR)/include | ||
56 | |||
57 | LIBS += -lopiecore2 | ||
58 | TARGET = qrsync | ||
59 | |||
60 | include ( $(OPIEDIR)/include.pro ) | ||