author | mickeyl <mickeyl> | 2004-04-02 14:00:27 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-02 14:00:27 (UTC) |
commit | b48839f984a7940d54eb600bddcf174e9bc86f5d (patch) (unidiff) | |
tree | 24b8a3c22b5479bdd3b8cec7e6203078aea17fbd | |
parent | 96105800596dfbd6b828ef47dd7774769f1e3ef3 (diff) | |
download | opie-b48839f984a7940d54eb600bddcf174e9bc86f5d.zip opie-b48839f984a7940d54eb600bddcf174e9bc86f5d.tar.gz opie-b48839f984a7940d54eb600bddcf174e9bc86f5d.tar.bz2 |
reduce unnecessary nesting
improve plugin names
-rw-r--r-- | config.in | 5 | ||||
-rw-r--r-- | core/pim/today/plugins/mail/config.in | 2 | ||||
-rw-r--r-- | core/pim/today/plugins/todolist/config.in | 6 |
3 files changed, 9 insertions, 4 deletions
@@ -1,241 +1,242 @@ | |||
1 | mainmenu "Opie Configuration" | 1 | mainmenu "Opie Configuration" |
2 | 2 | ||
3 | menu "Build Parameters" | 3 | menu "Build Parameters" |
4 | 4 | ||
5 | choice | 5 | choice |
6 | prompt "Target Machine" | 6 | prompt "Target Machine" |
7 | default TARGET_X86 | 7 | default TARGET_X86 |
8 | help | 8 | help |
9 | Please select the architecture of the machine you will be | 9 | Please select the architecture of the machine you will be |
10 | building the OpenZaurus buildroot for. | 10 | building the OpenZaurus buildroot for. |
11 | 11 | ||
12 | config TARGET_X86 | 12 | config TARGET_X86 |
13 | boolean "Intel X86" | 13 | boolean "Intel X86" |
14 | 14 | ||
15 | config TARGET_MACOSX | 15 | config TARGET_MACOSX |
16 | boolean "Mac OS X (DARWIN)" | 16 | boolean "Mac OS X (DARWIN)" |
17 | 17 | ||
18 | config TARGET_SHARP | 18 | config TARGET_SHARP |
19 | boolean "Sharp Zaurus" | 19 | boolean "Sharp Zaurus" |
20 | 20 | ||
21 | config TARGET_IPAQ | 21 | config TARGET_IPAQ |
22 | boolean "iPAQ" | 22 | boolean "iPAQ" |
23 | 23 | ||
24 | config TARGET_RAMSES | 24 | config TARGET_RAMSES |
25 | boolean "Ramses" | 25 | boolean "Ramses" |
26 | 26 | ||
27 | config TARGET_SIMPAD | 27 | config TARGET_SIMPAD |
28 | boolean "SIMpad" | 28 | boolean "SIMpad" |
29 | 29 | ||
30 | config TARGET_YOPY | 30 | config TARGET_YOPY |
31 | boolean "Yopy 3500/3700" | 31 | boolean "Yopy 3500/3700" |
32 | 32 | ||
33 | endchoice | 33 | endchoice |
34 | 34 | ||
35 | config OPTIMIZE | 35 | config OPTIMIZE |
36 | boolean "Use optimizations" | 36 | boolean "Use optimizations" |
37 | default "y" if ! TARGET_X86 | 37 | default "y" if ! TARGET_X86 |
38 | 38 | ||
39 | config DEBUG | 39 | config DEBUG |
40 | boolean "Enable debug builds" | 40 | boolean "Enable debug builds" |
41 | default n | 41 | default n |
42 | config RELEASE | 42 | config RELEASE |
43 | bool | 43 | bool |
44 | default y | 44 | default y |
45 | depends !DEBUG | 45 | depends !DEBUG |
46 | 46 | ||
47 | config QUICK_LAUNCH | 47 | config QUICK_LAUNCH |
48 | boolean "Enable Quick Launch" | 48 | boolean "Enable Quick Launch" |
49 | default n | 49 | default n |
50 | 50 | ||
51 | config QUICKLAUNCH_PATH | 51 | config QUICKLAUNCH_PATH |
52 | string "Path to quicklauncher" | 52 | string "Path to quicklauncher" |
53 | default "./quicklauncher" if TARGET_X86 | 53 | default "./quicklauncher" if TARGET_X86 |
54 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 | 54 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
55 | 55 | ||
56 | config SPECFILE | 56 | config SPECFILE |
57 | string | 57 | string |
58 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 58 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
59 | default "linux-g++" if TARGET_X86 && X11 | 59 | default "linux-g++" if TARGET_X86 && X11 |
60 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 60 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
61 | default "linux-g++" if TARGET_SHARP && X11 | 61 | default "linux-g++" if TARGET_SHARP && X11 |
62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
63 | default "linux-g++" if TARGET_IPAQ && X11 | 63 | default "linux-g++" if TARGET_IPAQ && X11 |
64 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) | 64 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
65 | default "linux-g++" if TARGET_RAMSES && X11 | 65 | default "linux-g++" if TARGET_RAMSES && X11 |
66 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) | 66 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
67 | default "linux-g++" if TARGET_SIMPAD && X11 | 67 | default "linux-g++" if TARGET_SIMPAD && X11 |
68 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) | 68 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
69 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) | 69 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
70 | 70 | ||
71 | config CUSTOMFILE | 71 | config CUSTOMFILE |
72 | string | 72 | string |
73 | default "custom-ipaq.h" if TARGET_IPAQ | 73 | default "custom-ipaq.h" if TARGET_IPAQ |
74 | default "custom-sharp.h" if TARGET_SHARP | 74 | default "custom-sharp.h" if TARGET_SHARP |
75 | default "custom-ramses.h" if TARGET_RAMSES | 75 | default "custom-ramses.h" if TARGET_RAMSES |
76 | default "custom-ipaq.h" if TARGET_SIMPAD | 76 | default "custom-ipaq.h" if TARGET_SIMPAD |
77 | default "custom-yopy.h" if TARGET_YOPY | 77 | default "custom-yopy.h" if TARGET_YOPY |
78 | 78 | ||
79 | config OPTIMIZATIONS | 79 | config OPTIMIZATIONS |
80 | string "Optimization flags" | 80 | string "Optimization flags" |
81 | depends OPTIMIZE | 81 | depends OPTIMIZE |
82 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 82 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
83 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY | 83 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
84 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 84 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
85 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES | 85 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
86 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD | 86 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
87 | 87 | ||
88 | config EXPERIMENTAL | 88 | config EXPERIMENTAL |
89 | bool "Prompt for development and/or incomplete items" | 89 | bool "Prompt for development and/or incomplete items" |
90 | default y | 90 | default y |
91 | 91 | ||
92 | endmenu | 92 | endmenu |
93 | 93 | ||
94 | menu "Configuration" | 94 | menu "Configuration" |
95 | config OPIE_NO_OVERRIDE_QT | 95 | config OPIE_NO_OVERRIDE_QT |
96 | boolean "Build Opie against an unpatched version of Qt" | 96 | boolean "Build Opie against an unpatched version of Qt" |
97 | default n | 97 | default n |
98 | 98 | ||
99 | config OPIE_NO_BUILTIN_SHUTDOWN | 99 | config OPIE_NO_BUILTIN_SHUTDOWN |
100 | boolean "Disable the built in shutdown application" | 100 | boolean "Disable the built in shutdown application" |
101 | default n | 101 | default n |
102 | 102 | ||
103 | config OPIE_NO_BUILTIN_CALIBRATE | 103 | config OPIE_NO_BUILTIN_CALIBRATE |
104 | boolean "Disable the built in calibrate application" | 104 | boolean "Disable the built in calibrate application" |
105 | default y if TARGET_YOPY | 105 | default y if TARGET_YOPY |
106 | default n | 106 | default n |
107 | 107 | ||
108 | config OPIE_SOUND_FRAGMENT_SHIFT | 108 | config OPIE_SOUND_FRAGMENT_SHIFT |
109 | string "The sound fragment used in Opie Player I" | 109 | string "The sound fragment used in Opie Player I" |
110 | default "14" if TARGET_IPAQ | 110 | default "14" if TARGET_IPAQ |
111 | default "16" if (!TARGET_IPAQ) | 111 | default "16" if (!TARGET_IPAQ) |
112 | 112 | ||
113 | config USE_REALTIME_AUDIO_THREAD | 113 | config USE_REALTIME_AUDIO_THREAD |
114 | boolean "Use a realtime thread in Opie Player I" | 114 | boolean "Use a realtime thread in Opie Player I" |
115 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP | 115 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
116 | default n | 116 | default n |
117 | 117 | ||
118 | config QT_QWS_ALLOW_OVERCLOCK | 118 | config QT_QWS_ALLOW_OVERCLOCK |
119 | boolean "Allow the user to overclock the device" | 119 | boolean "Allow the user to overclock the device" |
120 | depends TARGET_RAMSES | 120 | depends TARGET_RAMSES |
121 | default n | 121 | default n |
122 | 122 | ||
123 | config OPIE_HIGH_RES_SMALL_PHY | 123 | config OPIE_HIGH_RES_SMALL_PHY |
124 | boolean "Resolution is bigger than physical screen" | 124 | boolean "Resolution is bigger than physical screen" |
125 | default y if TARGET_C700 | 125 | default y if TARGET_C700 |
126 | default n | 126 | default n |
127 | 127 | ||
128 | config OPIE_NEW_ALLOC | 128 | config OPIE_NEW_ALLOC |
129 | boolean "Use malloc and free for the implementation" | 129 | boolean "Use malloc and free for the implementation" |
130 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP | 130 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
131 | default n | 131 | default n |
132 | 132 | ||
133 | config OPIE_NO_SOUND_PCM_READ_BITS | 133 | config OPIE_NO_SOUND_PCM_READ_BITS |
134 | boolean "There is not a pcm_read_bits io control" | 134 | boolean "There is not a pcm_read_bits io control" |
135 | default y if TARGET_SHARP | 135 | default y if TARGET_SHARP |
136 | default n | 136 | default n |
137 | 137 | ||
138 | config OPIE_WE_VERSION | 138 | config OPIE_WE_VERSION |
139 | string "The wireless extension (WE) version to build against" | 139 | string "The wireless extension (WE) version to build against" |
140 | default "15" if ! TARGET_X86 | 140 | default "15" if ! TARGET_X86 |
141 | default "16" if TARGET_X86 | 141 | default "16" if TARGET_X86 |
142 | 142 | ||
143 | endmenu | 143 | endmenu |
144 | 144 | ||
145 | menu "Base" | 145 | menu "Base" |
146 | choice | 146 | choice |
147 | prompt "Qpe Library Selection" | 147 | prompt "Qpe Library Selection" |
148 | default LIBQPE | 148 | default LIBQPE |
149 | source library/config.in | 149 | source library/config.in |
150 | source x11/config.in | 150 | source x11/config.in |
151 | endchoice | 151 | endchoice |
152 | source libopie/config.in | 152 | source libopie/config.in |
153 | 153 | ||
154 | source libopie2/config.in | 154 | source libopie2/config.in |
155 | source libqtaux/config.in | 155 | source libqtaux/config.in |
156 | 156 | ||
157 | source core/opie-login/config.in | 157 | source core/opie-login/config.in |
158 | source core/opiealarm/config.in | 158 | source core/opiealarm/config.in |
159 | source core/tools/quicklauncher/config.in | 159 | source core/tools/quicklauncher/config.in |
160 | source core/launcher/config.in | 160 | source core/launcher/config.in |
161 | source core/symlinker/config.in | 161 | source core/symlinker/config.in |
162 | endmenu | 162 | endmenu |
163 | 163 | ||
164 | comment "" | 164 | comment "" |
165 | 165 | ||
166 | menu "Applets" | 166 | menu "Applets" |
167 | source core/applets/config.in | 167 | source core/applets/config.in |
168 | source noncore/applets/config.in | 168 | source noncore/applets/config.in |
169 | endmenu | 169 | endmenu |
170 | 170 | ||
171 | menu "Apps" | 171 | menu "Apps" |
172 | source core/apps/config.in | 172 | source core/apps/config.in |
173 | source noncore/apps/config.in | 173 | source noncore/apps/config.in |
174 | endmenu | 174 | endmenu |
175 | 175 | ||
176 | menu "Communications and Networking" | 176 | menu "Communications and Networking" |
177 | source noncore/comm/config.in | 177 | source noncore/comm/config.in |
178 | source noncore/net/config.in | 178 | source noncore/net/config.in |
179 | endmenu | 179 | endmenu |
180 | 180 | ||
181 | menu "Games" | 181 | menu "Games" |
182 | source noncore/games/config.in | 182 | source noncore/games/config.in |
183 | endmenu | 183 | endmenu |
184 | 184 | ||
185 | menu "Graphics and Multimedia" | 185 | menu "Graphics and Multimedia" |
186 | source freetype/config.in | 186 | source freetype/config.in |
187 | source noncore/graphics/config.in | 187 | source noncore/graphics/config.in |
188 | source core/multimedia/config.in | 188 | source core/multimedia/config.in |
189 | source noncore/multimedia/config.in | 189 | source noncore/multimedia/config.in |
190 | endmenu | 190 | endmenu |
191 | 191 | ||
192 | menu "Input methods" | 192 | menu "Input methods" |
193 | source inputmethods/config.in | 193 | source inputmethods/config.in |
194 | endmenu | 194 | endmenu |
195 | 195 | ||
196 | menu "Pim" | 196 | menu "Pim" |
197 | source core/pim/config.in | 197 | source core/pim/config.in |
198 | menu "Today Plugins" | 198 | comment "Today Plugins ---" |
199 | source noncore/todayplugins/config.in | 199 | source noncore/todayplugins/config.in |
200 | source core/pim/today/plugins/config.in | 200 | source core/pim/today/plugins/config.in |
201 | endmenu | ||
202 | endmenu | 201 | endmenu |
203 | 202 | ||
204 | menu "Settings" | 203 | menu "Settings" |
205 | source core/settings/config.in | 204 | source core/settings/config.in |
206 | source noncore/settings/config.in | 205 | source noncore/settings/config.in |
207 | endmenu | 206 | endmenu |
208 | 207 | ||
209 | menu "Theming" | 208 | menu "Theming" |
209 | comment "Decorations ---" | ||
210 | source noncore/decorations/config.in | 210 | source noncore/decorations/config.in |
211 | comment "Styles ---" | ||
211 | source noncore/styles/config.in | 212 | source noncore/styles/config.in |
212 | endmenu | 213 | endmenu |
213 | 214 | ||
214 | menu "Tools" | 215 | menu "Tools" |
215 | source noncore/tools/config.in | 216 | source noncore/tools/config.in |
216 | endmenu | 217 | endmenu |
217 | 218 | ||
218 | menu "Development" | 219 | menu "Development" |
219 | source development/keyview/config.in | 220 | source development/keyview/config.in |
220 | #source development/debugviewer/config.in | 221 | #source development/debugviewer/config.in |
221 | endmenu | 222 | endmenu |
222 | 223 | ||
223 | menu "Examples" | 224 | menu "Examples" |
224 | config EXAMPLES | 225 | config EXAMPLES |
225 | boolean "Compile Example Application" | 226 | boolean "Compile Example Application" |
226 | source examples/config.in | 227 | source examples/config.in |
227 | endmenu | 228 | endmenu |
228 | 229 | ||
229 | comment "" | 230 | comment "" |
230 | 231 | ||
231 | menu "Unsupported / Unmaintained" | 232 | menu "Unsupported / Unmaintained" |
232 | source noncore/unsupported/config.in | 233 | source noncore/unsupported/config.in |
233 | endmenu | 234 | endmenu |
234 | 235 | ||
235 | comment "" | 236 | comment "" |
236 | depends on EXPERIMENTAL | 237 | depends on EXPERIMENTAL |
237 | menu "Experimental" | 238 | menu "Experimental" |
238 | depends on EXPERIMENTAL | 239 | depends on EXPERIMENTAL |
239 | source libslcompat/config.in | 240 | source libslcompat/config.in |
240 | source core/qws/config.in | 241 | source core/qws/config.in |
241 | endmenu | 242 | endmenu |
diff --git a/core/pim/today/plugins/mail/config.in b/core/pim/today/plugins/mail/config.in index 4a115bd..e6106ae 100644 --- a/core/pim/today/plugins/mail/config.in +++ b/core/pim/today/plugins/mail/config.in | |||
@@ -1,7 +1,7 @@ | |||
1 | config TODAY_MAIL | 1 | config TODAY_MAIL |
2 | boolean "mail" | 2 | boolean "opie-today-mailplugin" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2PIM && LIBMAILWRAPPER | 4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2PIM && LIBMAILWRAPPER |
5 | 5 | ||
6 | comment "opie-today-mailplugin requires libopie2core, libopie2pim, and libmailwrapper" | 6 | comment "opie-today-mailplugin requires libopie2core, libopie2pim, and libmailwrapper" |
7 | depends !( ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2PIM && LIBMAILWRAPPER ) | 7 | depends !( ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2PIM && LIBMAILWRAPPER ) |
diff --git a/core/pim/today/plugins/todolist/config.in b/core/pim/today/plugins/todolist/config.in index 2a61045..fc3380d 100644 --- a/core/pim/today/plugins/todolist/config.in +++ b/core/pim/today/plugins/todolist/config.in | |||
@@ -1,4 +1,8 @@ | |||
1 | config TODAY_TODOLIST | 1 | config TODAY_TODOLIST |
2 | boolean "todolist" | 2 | boolean "opie-today-todolistplugin" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2UI && LIBOPIE2PIM | 4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2UI && LIBOPIE2PIM |
5 | |||
6 | comment "opie-today-todolistplugin requires libopie2core, libopie2ui, libopie2pim" | ||
7 | depends !( ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && LIBOPIE2UI && LIBOPIE2PIM ) | ||
8 | |||