summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-12-08 17:13:19 (UTC)
committer mickeyl <mickeyl>2003-12-08 17:13:19 (UTC)
commit24cc41da3317445fd2f69a4be429968b447b8276 (patch) (unidiff)
treeaf92a85525f77a908d34224e1d5a5cc4cc0026af
parent4686e51406ca229bb8b48f5ae1a947e820a6379b (diff)
downloadopie-24cc41da3317445fd2f69a4be429968b447b8276.zip
opie-24cc41da3317445fd2f69a4be429968b447b8276.tar.gz
opie-24cc41da3317445fd2f69a4be429968b447b8276.tar.bz2
adapt to directory changes and menu structure changes
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--config.in13
-rw-r--r--noncore/unsupported/mail2/config.in9
-rw-r--r--packages2
3 files changed, 14 insertions, 10 deletions
diff --git a/config.in b/config.in
index 6adf17e..742b8e3 100644
--- a/config.in
+++ b/config.in
@@ -1,239 +1,248 @@
1mainmenu "Opie Configuration" 1mainmenu "Opie Configuration"
2 2
3menu "Build Parameters" 3menu "Build Parameters"
4 4
5choice 5choice
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
33endchoice 33endchoice
34 34
35config OPTIMIZE 35config OPTIMIZE
36 boolean "Use optimizations" 36 boolean "Use optimizations"
37 default "y" if ! TARGET_X86 37 default "y" if ! TARGET_X86
38 38
39config DEBUG 39config DEBUG
40 boolean "Enable debug builds" 40 boolean "Enable debug builds"
41 default n 41 default n
42config RELEASE 42config RELEASE
43 bool 43 bool
44 default y 44 default y
45 depends !DEBUG 45 depends !DEBUG
46 46
47config QUICK_LAUNCH 47config QUICK_LAUNCH
48 boolean "Enable Quick Launch" 48 boolean "Enable Quick Launch"
49 default n 49 default n
50 50
51 51
52config SPECFILE 52config SPECFILE
53 string 53 string
54 default "qws/linux-generic-g++" if TARGET_X86 && (! X11) 54 default "qws/linux-generic-g++" if TARGET_X86 && (! X11)
55 default "linux-g++" if TARGET_X86 && X11 55 default "linux-g++" if TARGET_X86 && X11
56 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) 56 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11)
57 default "linux-g++" if TARGET_SHARP && X11 57 default "linux-g++" if TARGET_SHARP && X11
58 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) 58 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11)
59 default "linux-g++" if TARGET_IPAQ && X11 59 default "linux-g++" if TARGET_IPAQ && X11
60 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) 60 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11)
61 default "linux-g++" if TARGET_RAMSES && X11 61 default "linux-g++" if TARGET_RAMSES && X11
62 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) 62 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11)
63 default "linux-g++" if TARGET_SIMPAD && X11 63 default "linux-g++" if TARGET_SIMPAD && X11
64 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) 64 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11)
65 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) 65 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11)
66 66
67config CUSTOMFILE 67config CUSTOMFILE
68 string 68 string
69 default "custom-ipaq.h" if TARGET_IPAQ 69 default "custom-ipaq.h" if TARGET_IPAQ
70 default "custom-sharp.h" if TARGET_SHARP 70 default "custom-sharp.h" if TARGET_SHARP
71 default "custom-ramses.h" if TARGET_RAMSES 71 default "custom-ramses.h" if TARGET_RAMSES
72 default "custom-ipaq.h" if TARGET_SIMPAD 72 default "custom-ipaq.h" if TARGET_SIMPAD
73 default "custom-yopy.h" if TARGET_YOPY 73 default "custom-yopy.h" if TARGET_YOPY
74 74
75config OPTIMIZATIONS 75config OPTIMIZATIONS
76 string "Optimization flags" 76 string "Optimization flags"
77 depends OPTIMIZE 77 depends OPTIMIZE
78 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ 78 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ
79 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY 79 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY
80 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP 80 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP
81 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES 81 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES
82 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD 82 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD
83 83
84config EXPERIMENTAL 84config EXPERIMENTAL
85 bool "Prompt for development and/or incomplete items" 85 bool "Prompt for development and/or incomplete items"
86 default y 86 default y
87 87
88endmenu 88endmenu
89 89
90menu "Opie Compile Configs" 90menu "Opie Compile Configs"
91config OPIE_NO_OVERRIDE_QT 91config OPIE_NO_OVERRIDE_QT
92 boolean "Build Opie against an unpatched version of Qt" 92 boolean "Build Opie against an unpatched version of Qt"
93 default n 93 default n
94 94
95 95
96config OPIE_NO_BUILTIN_SHUTDOWN 96config OPIE_NO_BUILTIN_SHUTDOWN
97 boolean "Disable the built in shutdown application" 97 boolean "Disable the built in shutdown application"
98 default n 98 default n
99 99
100config OPIE_NO_BUILTIN_CALIBRATE 100config OPIE_NO_BUILTIN_CALIBRATE
101 boolean "Disable the built in calibrate application" 101 boolean "Disable the built in calibrate application"
102 default y if TARGET_YOPY 102 default y if TARGET_YOPY
103 default n 103 default n
104 104
105config OPIE_SOUND_FRAGMENT_SHIFT 105config OPIE_SOUND_FRAGMENT_SHIFT
106 string "The sound fragment used in Opie Player I" 106 string "The sound fragment used in Opie Player I"
107 default "14" if TARGET_IPAQ 107 default "14" if TARGET_IPAQ
108 default "16" if (!TARGET_IPAQ) 108 default "16" if (!TARGET_IPAQ)
109 109
110config USE_REALTIME_AUDIO_THREAD 110config USE_REALTIME_AUDIO_THREAD
111 boolean "Use a realtime thread in Opie Player I" 111 boolean "Use a realtime thread in Opie Player I"
112 default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP 112 default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP
113 default n 113 default n
114 114
115config QT_QWS_ALLOW_OVERCLOCK 115config QT_QWS_ALLOW_OVERCLOCK
116 boolean "Allow the user to overclock the device" 116 boolean "Allow the user to overclock the device"
117 depends TARGET_RAMSES 117 depends TARGET_RAMSES
118 default n 118 default n
119 119
120config OPIE_HIGH_RES_SMALL_PHY 120config OPIE_HIGH_RES_SMALL_PHY
121 boolean "Resolution is bigger than physical scrren" 121 boolean "Resolution is bigger than physical scrren"
122 default y if TARGET_C700 122 default y if TARGET_C700
123 default n 123 default n
124 124
125config OPIE_NEW_ALLOC 125config OPIE_NEW_ALLOC
126 boolean "Use malloc and free for the implementation" 126 boolean "Use malloc and free for the implementation"
127 default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP 127 default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP
128 default n 128 default n
129 129
130config OPIE_NO_SOUND_PCM_READ_BITS 130config OPIE_NO_SOUND_PCM_READ_BITS
131 boolean "there is not a pcm_read_bits io control" 131 boolean "there is not a pcm_read_bits io control"
132 default y if TARGET_SHARP 132 default y if TARGET_SHARP
133 default n 133 default n
134 134
135endmenu 135endmenu
136 136
137menu "Base" 137menu "Base"
138 choice 138 choice
139 prompt "Qpe Library Selection" 139 prompt "Qpe Library Selection"
140 default LIBQPE 140 default LIBQPE
141 source library/config.in 141 source library/config.in
142 source x11/config.in 142 source x11/config.in
143 endchoice 143 endchoice
144 source libopie/config.in 144 source libopie/config.in
145 source core/opie-login/config.in 145 source core/opie-login/config.in
146 source core/opiealarm/config.in 146 source core/opiealarm/config.in
147 source core/tools/quicklauncher/config.in 147 source core/tools/quicklauncher/config.in
148 source core/launcher/config.in 148 source core/launcher/config.in
149 source core/qws/config.in 149 source core/qws/config.in
150endmenu 150endmenu
151 151
152comment "" 152comment ""
153 153
154menu "Applets" 154menu "Applets"
155 source core/applets/config.in 155 source core/applets/config.in
156 source noncore/applets/config.in 156 source noncore/applets/config.in
157endmenu 157endmenu
158 158
159menu "Apps" 159menu "Apps"
160 source core/apps/config.in 160 source core/apps/config.in
161 source noncore/apps/config.in 161 source noncore/apps/config.in
162endmenu 162endmenu
163 163
164menu "Communications and Networking" 164menu "Communications and Networking"
165 source noncore/comm/config.in 165 source noncore/comm/config.in
166 source noncore/mail/config.in
167 source noncore/net/config.in 166 source noncore/net/config.in
168endmenu 167endmenu
169 168
170menu "Games" 169menu "Games"
171 source noncore/games/config.in 170 source noncore/games/config.in
172endmenu 171endmenu
173 172
174menu "Graphics and Multimedia" 173menu "Graphics and Multimedia"
175 source freetype/config.in 174 source freetype/config.in
176 source noncore/graphics/config.in 175 source noncore/graphics/config.in
177 source core/multimedia/config.in 176 source core/multimedia/config.in
178 source noncore/multimedia/config.in 177 source noncore/multimedia/config.in
179endmenu 178endmenu
180 179
181menu "Input methods" 180menu "Input methods"
182 source inputmethods/config.in 181 source inputmethods/config.in
183endmenu 182endmenu
184 183
185menu "Pim" 184menu "Pim"
186 source core/pim/config.in 185 source core/pim/config.in
187 menu "Today Plugins" 186 menu "Today Plugins"
188 source noncore/todayplugins/config.in 187 source noncore/todayplugins/config.in
189 source core/pim/today/plugins/config.in 188 source core/pim/today/plugins/config.in
190 endmenu 189 endmenu
191endmenu 190endmenu
192 191
193menu "Settings" 192menu "Settings"
194 source core/settings/config.in 193 source core/settings/config.in
195 source noncore/settings/config.in 194 source noncore/settings/config.in
196endmenu 195endmenu
197 196
198menu "Theming" 197menu "Theming"
199 source noncore/decorations/config.in 198 source noncore/decorations/config.in
200 source noncore/styles/config.in 199 source noncore/styles/config.in
201endmenu 200endmenu
202 201
203menu "Tools" 202menu "Tools"
204 source noncore/tools/config.in 203 source noncore/tools/config.in
205endmenu 204endmenu
206 205
207menu "Development" 206menu "Development"
208 source development/keyview/config.in 207 source development/keyview/config.in
209 #source development/debugviewer/config.in 208 #source development/debugviewer/config.in
210endmenu 209endmenu
211 210
212menu "Examples" 211menu "Examples"
213 config EXAMPLES 212 config EXAMPLES
214 boolean "Compile Example Application" 213 boolean "Compile Example Application"
215 source examples/config.in 214 source examples/config.in
216endmenu 215endmenu
217 216
218comment "" 217comment ""
218
219menu "Unsupported / Unmaintained"
220 source noncore/unsupported/mail2/config.in
221 source noncore/unsupported/filebrowser/config.in
222 source noncore/unsupported/oipkg/config.in
223 source noncore/unsupported/qpdf/config.in
224 source noncore/unsupported/gsmtool/config.in
225endmenu
226
227comment ""
219 depends on EXPERIMENTAL 228 depends on EXPERIMENTAL
220menu "Experimental" 229menu "Experimental"
221 depends on EXPERIMENTAL 230 depends on EXPERIMENTAL
222 source libopie2/config.in 231 source libopie2/config.in
223 232
224 config SQL_PIM_BACKEND 233 config SQL_PIM_BACKEND
225 bool "Add SQL-Backend support (experimental)" 234 bool "Add SQL-Backend support (experimental)"
226 default n 235 default n
227 help 236 help
228 This adds the SQL-Support, using SQLite. Which database is used 237 This adds the SQL-Support, using SQLite. Which database is used
229 by the backends is defined by the file "pimaccess.conf" in the 238 by the backends is defined by the file "pimaccess.conf" in the
230 directory "Settings". 239 directory "Settings".
231 There currently do exist to groups "[contact]" and "[todo]". You can 240 There currently do exist to groups "[contact]" and "[todo]". You can
232 select the used backend by the variable "usebackend=<type>", where 241 select the used backend by the variable "usebackend=<type>", where
233 <type> is "sql" or "xml". "xml" is the default ! 242 <type> is "sql" or "xml". "xml" is the default !
234 Important: The SQLite-library "libsqlite.so" must be installed ! 243 Important: The SQLite-library "libsqlite.so" must be installed !
235 depends ( LIBOPIE2DB ) 244 depends ( LIBOPIE2DB )
236 245
237 comment "SQL-Support needs libopie2db!" 246 comment "SQL-Support needs libopie2db!"
238 depends !( LIBOPIE2DB ) 247 depends !( LIBOPIE2DB )
239endmenu 248endmenu
diff --git a/noncore/unsupported/mail2/config.in b/noncore/unsupported/mail2/config.in
index c9896cb..6f279b0 100644
--- a/noncore/unsupported/mail2/config.in
+++ b/noncore/unsupported/mail2/config.in
@@ -1,12 +1,7 @@
1 config MAIL
2 boolean "EMail support"
3 default "y" if OPIEMAIL
4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE
5
6 config OPIEMAIL2 1 config OPIEMAIL2
7 boolean "opie-mail2 (an IMAP mail client)" 2 boolean "opie-mail2 (an IMAP mail client)"
8 default "y" 3 default "y"
9 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE && BEND && LIBMAIL && MAIL 4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE && BEND && LIBMAIL && MAIL
10 5
11 source noncore/mail/bend/config.in 6 source noncore/unsupported/mail2/bend/config.in
12 source noncore/mail/libmail/config.in 7 source noncore/unsupported/mail2/libmail/config.in
diff --git a/packages b/packages
index 3f3e20f..8c9f3cb 100644
--- a/packages
+++ b/packages
@@ -1,188 +1,188 @@
1 CONFIG_ADDRESSBOOK core/pim/addressbookaddressbook.pro 1 CONFIG_ADDRESSBOOK core/pim/addressbookaddressbook.pro
2 CONFIG_ADVANCEDFM noncore/apps/advancedfmadvancedfm.pro 2 CONFIG_ADVANCEDFM noncore/apps/advancedfmadvancedfm.pro
3 CONFIG_APPEARANCE2 noncore/settings/appearance2appearance2.pro 3 CONFIG_APPEARANCE2 noncore/settings/appearance2appearance2.pro
4 CONFIG_APPSKEY noncore/settings/appskeyappskey.pro 4 CONFIG_APPSKEY noncore/settings/appskeyappskey.pro
5 CONFIG_AQPKG noncore/settings/aqpkgaqpkg.pro 5 CONFIG_AQPKG noncore/settings/aqpkgaqpkg.pro
6 CONFIG_BACKGAMMONnoncore/games/backgammon backgammon.pro 6 CONFIG_BACKGAMMONnoncore/games/backgammon backgammon.pro
7 CONFIG_BACKUP noncore/settings/backupbackup.pro 7 CONFIG_BACKUP noncore/settings/backupbackup.pro
8 CONFIG_BATTERYAPPLET core/applets/batteryappletbatteryapplet.pro 8 CONFIG_BATTERYAPPLET core/applets/batteryappletbatteryapplet.pro
9 CONFIG_BEND noncore/mail/bendbend.pro 9 CONFIG_BEND noncore/unsupported/mail2/bendbend.pro
10 CONFIG_BINARY noncore/tools/calc2/binarybinary.pro 10 CONFIG_BINARY noncore/tools/calc2/binarybinary.pro
11 CONFIG_BLUE-PIN noncore/net/opietooth/blue-pinblue-pin.pro 11 CONFIG_BLUE-PIN noncore/net/opietooth/blue-pinblue-pin.pro
12 CONFIG_BOUNCE noncore/games/bouncebounce.pro 12 CONFIG_BOUNCE noncore/games/bouncebounce.pro
13 CONFIG_BUTTON-SETTINGS core/settings/buttonbutton.pro 13 CONFIG_BUTTON-SETTINGS core/settings/buttonbutton.pro
14 CONFIG_BUZZWORD noncore/games/buzzwordbuzzword.pro 14 CONFIG_BUZZWORD noncore/games/buzzwordbuzzword.pro
15 CONFIG_CALC2 noncore/tools/calc2calc.pro 15 CONFIG_CALC2 noncore/tools/calc2calc.pro
16 CONFIG_CALCULATOR noncore/tools/calculatorcalculator.pro 16 CONFIG_CALCULATOR noncore/tools/calculatorcalculator.pro
17 CONFIG_CALIBRATE core/apps/calibratecalibrate.pro 17 CONFIG_CALIBRATE core/apps/calibratecalibrate.pro
18 CONFIG_CAMERA noncore/multimedia/cameracamera.pro 18 CONFIG_CAMERA noncore/multimedia/cameracamera.pro
19 CONFIG_CARDMON core/applets/cardmoncardmon.pro 19 CONFIG_CARDMON core/applets/cardmoncardmon.pro
20 CONFIG_CHECKBOOK noncore/apps/checkbookcheckbook.pro 20 CONFIG_CHECKBOOK noncore/apps/checkbookcheckbook.pro
21 CONFIG_CITYTIME core/settings/citytimecitytime.pro 21 CONFIG_CITYTIME core/settings/citytimecitytime.pro
22 CONFIG_CLIPBOARDAPPLET core/applets/clipboardappletclipboardapplet.pro 22 CONFIG_CLIPBOARDAPPLET core/applets/clipboardappletclipboardapplet.pro
23 CONFIG_CLOCK noncore/tools/clockclock.pro 23 CONFIG_CLOCK noncore/tools/clockclock.pro
24 CONFIG_CLOCKAPPLET core/applets/clockappletclockapplet.pro 24 CONFIG_CLOCKAPPLET core/applets/clockappletclockapplet.pro
25 CONFIG_CONFEDIT noncore/apps/confeditconfedit.pro 25 CONFIG_CONFEDIT noncore/apps/confeditconfedit.pro
26 CONFIG_DASHER inputmethods/dasherdasher.pro 26 CONFIG_DASHER inputmethods/dasherdasher.pro
27 CONFIG_DATEBOOK core/pim/datebookdatebook.pro 27 CONFIG_DATEBOOK core/pim/datebookdatebook.pro
28 CONFIG_DECO_FLAT noncore/decorations/flatflat.pro 28 CONFIG_DECO_FLAT noncore/decorations/flatflat.pro
29 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro 29 CONFIG_DECO_LIQUID noncore/decorations/liquidliquid.pro
30 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro 30 CONFIG_DECO_POLISHED noncore/decorations/polishedpolished.pro
31 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro 31 CONFIG_DICTIONARY noncore/apps/dictionarydictionary.pro
32CONFIG_DOCTAB noncore/settings/doctab doctab.pro 32CONFIG_DOCTAB noncore/settings/doctab doctab.pro
33 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro 33 CONFIG_DRAWPAD noncore/graphics/drawpaddrawpad.pro
34 CONFIG_DVORAK inputmethods/dvorakdvorak.pro 34 CONFIG_DVORAK inputmethods/dvorakdvorak.pro
35 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro 35 CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsoleembeddedkonsole.pro
36 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro 36 CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro
37 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro 37 CONFIG_FIFTEEN noncore/games/fifteenfifteen.pro
38 CONFIG_FILEBROWSER noncore/unsupported/filebrowserfilebrowser.pro 38 CONFIG_FILEBROWSER noncore/unsupported/filebrowserfilebrowser.pro
39 CONFIG_FLAT noncore/styles/flatflat.pro 39 CONFIG_FLAT noncore/styles/flatflat.pro
40 CONFIG_FORMATTER noncore/tools/formatterformatter.pro 40 CONFIG_FORMATTER noncore/tools/formatterformatter.pro
41 CONFIG_FREETYPE freetypefreetype.pro 41 CONFIG_FREETYPE freetypefreetype.pro
42 CONFIG_FRESH noncore/styles/freshfresh.pro 42 CONFIG_FRESH noncore/styles/freshfresh.pro
43 CONFIG_FTPLIB noncore/net/ftplibftplib.pro 43 CONFIG_FTPLIB noncore/net/ftplibftplib.pro
44 CONFIG_GO noncore/games/gogo.pro 44 CONFIG_GO noncore/games/gogo.pro
45 CONFIG_GSMTOOL noncore/unsupported/gsmtoolgsmtool.pro 45 CONFIG_GSMTOOL noncore/unsupported/gsmtoolgsmtool.pro
46 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro 46 CONFIG_HANDWRITING inputmethods/handwritinghandwriting.pro
47 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro 47 CONFIG_HELPBROWSER core/apps/helpbrowserhelpbrowser.pro
48 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro 48 CONFIG_HOMEAPPLET core/applets/homeapplethomeapplet.pro
49 CONFIG_INTERFACES noncore/settings/networksettings/interfacesinterfaces.pro 49 CONFIG_INTERFACES noncore/settings/networksettings/interfacesinterfaces.pro
50 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro 50 CONFIG_IRDAAPPLET core/applets/irdaappletirdaapplet.pro
51 CONFIG_JUMPX inputmethods/jumpxjumpx.pro 51 CONFIG_JUMPX inputmethods/jumpxjumpx.pro
52 CONFIG_KBILL noncore/games/kbillkbill.pro 52 CONFIG_KBILL noncore/games/kbillkbill.pro
53 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro 53 CONFIG_KCHECKERS noncore/games/kcheckerskcheckers.pro
54 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro 54 CONFIG_KEYBOARD inputmethods/keyboardkeyboard.pro
55 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro 55 CONFIG_KEYPEBBLE noncore/comm/keypebblekeypebble.pro
56 CONFIG_KEYVIEW development/keyviewkeyview.pro 56 CONFIG_KEYVIEW development/keyviewkeyview.pro
57 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro 57 CONFIG_KJUMPX inputmethods/kjumpxkjumpx.pro
58 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro 58 CONFIG_KPACMAN noncore/games/kpacmankpacman.pro
59 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro 59 CONFIG_LANGUAGE noncore/settings/languagelanguage.pro
60 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro 60 CONFIG_LAUNCHER-SETTINGS core/settings/launcherlauncher.pro
61 CONFIG_LAUNCHER_CORE core/launcherserver.pro 61 CONFIG_LAUNCHER_CORE core/launcherserver.pro
62 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro 62 CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeglibffmpeg.pro
63 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro 63 CONFIG_LIBFLASH core/multimedia/opieplayer/libflashlibflash.pro
64CONFIG_LIBKATE noncore/apps/tinykate/libkate libkate.pro 64CONFIG_LIBKATE noncore/apps/tinykate/libkate libkate.pro
65 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro 65 CONFIG_LIBMAD core/multimedia/opieplayer/libmadlibmad.pro
66 CONFIG_LIBMAIL noncore/unsupported/mail2/libmaillibmail.pro 66 CONFIG_LIBMAIL noncore/unsupported/mail2/libmaillibmail.pro
67 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro 67 CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3libmpeg3.pro
68 CONFIG_LIBOPIE libopielibopie.pro 68 CONFIG_LIBOPIE libopielibopie.pro
69 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro 69 CONFIG_LIBOPIE2CORE libopie2/opiecoreopiecore.pro
70 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro 70 CONFIG_LIBOPIE2DB libopie2/opiedbopiedb.pro
71 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro 71 CONFIG_LIBOPIE2EXAMPLES libopie2/examplesexamples.pro
72 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro 72 CONFIG_LIBOPIE2NET libopie2/opienetopienet.pro
73 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro 73 CONFIG_LIBOPIE2PIM libopie2/opiepimopiepim.pro
74 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro 74 CONFIG_LIBOPIE2UI libopie2/opieuiopieui.pro
75 CONFIG_LIBOPIE2MM libopie2/opiemmopiemm.pro 75 CONFIG_LIBOPIE2MM libopie2/opiemmopiemm.pro
76 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro 76 CONFIG_LIBOPIETOOTH noncore/net/opietooth/liblib.pro
77 CONFIG_LIBOPIE_PIM libopie/pimpim.pro 77 CONFIG_LIBOPIE_PIM libopie/pimpim.pro
78 CONFIG_LIBQPE librarylibrary.pro 78 CONFIG_LIBQPE librarylibrary.pro
79 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro 79 CONFIG_LIBQPE-X11 x11/libqpe-x11libqpe-x11.pro
80 CONFIG_LIBSQL libsqllibsql.pro 80 CONFIG_LIBSQL libsqllibsql.pro
81CONFIG_LIBTREMOR core/multimedia/opieplayer/vorbis/tremor tremor.pro 81CONFIG_LIBTREMOR core/multimedia/opieplayer/vorbis/tremor tremor.pro
82CONFIG_LIBTREMORPLUGIN core/multimedia/opieplayer/vorbis libtremor.pro 82CONFIG_LIBTREMORPLUGIN core/multimedia/opieplayer/vorbis libtremor.pro
83 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro 83 CONFIG_LIGHT-AND-POWER core/settings/light-and-powerlight-and-power.pro
84 CONFIG_LIQUID noncore/styles/liquidliquid.pro 84 CONFIG_LIQUID noncore/styles/liquidliquid.pro
85 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro 85 CONFIG_LOGOUTAPPLET core/applets/logoutappletlogoutapplet.pro
86 CONFIG_MAILIT noncore/net/mailit mailit.pro 86 CONFIG_MAILIT noncore/net/mailit mailit.pro
87 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro 87 CONFIG_MEDIUMMOUNT noncore/settings/mediummountmediummount.pro
88 CONFIG_MEMORYAPPLET noncore/applets/memoryappletmemoryapplet.pro 88 CONFIG_MEMORYAPPLET noncore/applets/memoryappletmemoryapplet.pro
89 CONFIG_METAL noncore/styles/metalmetal.pro 89 CONFIG_METAL noncore/styles/metalmetal.pro
90 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro 90 CONFIG_MINDBREAKER noncore/games/mindbreakermindbreaker.pro
91 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro 91 CONFIG_MINESWEEP noncore/games/minesweepminesweep.pro
92 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro 92 CONFIG_MOBILEMSG noncore/comm/mobilemsgmobilemsg.pro
93 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro 93 CONFIG_MODPLUG core/multimedia/opieplayer/modplugmodplug.pro
94 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro 94 CONFIG_MULTIKEY inputmethods/multikeymultikey.pro
95 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro 95 CONFIG_NETSYSTEMTIME noncore/settings/netsystemtimenetsystemtime.pro
96 CONFIG_NETWORKAPPLET noncore/applets/networkappletnetworkapplet.pro 96 CONFIG_NETWORKAPPLET noncore/applets/networkappletnetworkapplet.pro
97 CONFIG_NETWORKSETUP noncore/settings/networksettingsnetworksettings.pro 97 CONFIG_NETWORKSETUP noncore/settings/networksettingsnetworksettings.pro
98 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro 98 CONFIG_NOTESAPPLET noncore/applets/notesappletnotesapplet.pro
99 CONFIG_OAPP core/apps/oappoapp.pro 99 CONFIG_OAPP core/apps/oappoapp.pro
100 CONFIG_OBEX core/applets/obex2obex.pro 100 CONFIG_OBEX core/applets/obex2obex.pro
101 CONFIG_ODICT noncore/apps/odictodict.pro 101 CONFIG_ODICT noncore/apps/odictodict.pro
102 CONFIG_OIPKG core/apps/oipkgoipkg.pro 102 CONFIG_OIPKG core/apps/oipkgoipkg.pro
103 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro 103 CONFIG_OPIE-CONSOLE noncore/apps/opie-consoleopie-console.pro
104 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro 104 CONFIG_OPIE-LOGIN core/opie-loginopie-login.pro
105 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro 105 CONFIG_OPIE-READER noncore/apps/opie-readeropie-reader.pro
106 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro 106 CONFIG_OPIE-SH noncore/tools/opie-shopie-sh.pro
107 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro 107 CONFIG_OPIE-SHEET noncore/apps/opie-sheetopie-sheet.pro
108 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro 108 CONFIG_OPIE-WRITE noncore/apps/opie-writeopie-write.pro
109 CONFIG_OPIEALARMcore/opiealarm 109 CONFIG_OPIEALARMcore/opiealarm
110 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro 110 CONFIG_OPIEFTP noncore/net/opieftpopieftp.pro
111 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro 111 CONFIG_OPIEIRC noncore/net/opieircopieirc.pro
112 CONFIG_OPIEMAIL2noncore/unsupported/mail2 mail.pro 112 CONFIG_OPIEMAIL2noncore/unsupported/mail2 mail.pro
113 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro 113 CONFIG_OPIEPLAYER core/multimedia/opieplayeropieplayer.pro
114 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro 114 CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2opieplayer2.pro
115 CONFIG_OPIE-RDESKTOP noncore/net/opierdesktopopierdesktop.pro 115 CONFIG_OPIE-RDESKTOP noncore/net/opierdesktopopierdesktop.pro
116 CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro 116 CONFIG_OPIEREC noncore/multimedia/opierecopierec.pro
117 CONFIG_TONLEITER noncore/multimedia/tonleitertonleiter.pro 117 CONFIG_TONLEITER noncore/multimedia/tonleitertonleiter.pro
118 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro 118 CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/appletapplet.pro
119 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro 119 CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/managermanager.pro
120 CONFIG_OSEARCH core/pim/osearchosearch.pro 120 CONFIG_OSEARCH core/pim/osearchosearch.pro
121 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro 121 CONFIG_OXYGEN noncore/apps/oxygenoxygen.pro
122 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro 122 CONFIG_PARASHOOT noncore/games/parashootparashoot.pro
123 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro 123 CONFIG_PICKBOARD inputmethods/pickboardpickboard.pro
124 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro 124 CONFIG_QASTEROIDS noncore/games/qasteroidsqasteroids.pro
125 CONFIG_QASHMONEY noncore/apps/qashmoneyqashmoney.pro 125 CONFIG_QASHMONEY noncore/apps/qashmoneyqashmoney.pro
126 CONFIG_QCOP core/apps/qcopqcop.pro 126 CONFIG_QCOP core/apps/qcopqcop.pro
127 CONFIG_QPDF noncore/unsupported/qpdfqpdf.pro 127 CONFIG_QPDF noncore/unsupported/qpdfqpdf.pro
128CONFIG_QUICKLAUNCHER core/tools/quicklauncher quicklauncher.pro 128CONFIG_QUICKLAUNCHER core/tools/quicklauncher quicklauncher.pro
129 CONFIG_QWS core/qwsqws.pro 129 CONFIG_QWS core/qwsqws.pro
130 CONFIG_REMOTE noncore/tools/remoteremote.pro 130 CONFIG_REMOTE noncore/tools/remoteremote.pro
131 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro 131 CONFIG_RESTARTAPPLET core/applets/restartappletrestartapplet.pro
132 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro 132 CONFIG_RESTARTAPPLET2 core/applets/restartapplet2restartapplet2.pro
133 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro 133 CONFIG_ROTATEAPPLET core/applets/rotateappletrotateapplet.pro
134 CONFIG_ROTATION noncore/settings/rotationrotation.pro 134 CONFIG_ROTATION noncore/settings/rotationrotation.pro
135 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro 135 CONFIG_RUNAPPLET core/applets/runappletrunapplet.pro
136 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro 136 CONFIG_SCREENSHOTAPPLET core/applets/screenshotappletscreenshotapplet.pro
137 CONFIG_SECURITY core/settings/securitysecurity.pro 137 CONFIG_SECURITY core/settings/securitysecurity.pro
138 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro 138 CONFIG_SFCAVE noncore/games/sfcavesfcave.pro
139 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro 139 CONFIG_SFCAVE-SDL noncore/games/sfcave-sdlsfcave-sdl.pro
140 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro 140 CONFIG_SHOWIMG noncore/multimedia/showimgshowimg.pro
141 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro 141 CONFIG_SIMPLE noncore/tools/calc2/simplesimple.pro
142 CONFIG_SINGLE singlesingle.pro 142 CONFIG_SINGLE singlesingle.pro
143 CONFIG_SNAKE noncore/games/snakesnake.pro 143 CONFIG_SNAKE noncore/games/snakesnake.pro
144 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro 144 CONFIG_SOLITAIRE noncore/games/solitairesolitaire.pro
145 CONFIG_SOUND noncore/settings/soundsound.pro 145 CONFIG_SOUND noncore/settings/soundsound.pro
146 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro 146 CONFIG_SSHKEYS noncore/settings/sshkeyssshkeys.pro
147 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro 147 CONFIG_SUSPENDAPPLET core/applets/suspendappletsuspendapplet.pro
148 CONFIG_SYSINFO noncore/settings/sysinfosysinfo.pro 148 CONFIG_SYSINFO noncore/settings/sysinfosysinfo.pro
149 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro 149 CONFIG_TABLEVIEWER noncore/apps/tableviewertableviewer.pro
150 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro 150 CONFIG_TABMANAGER noncore/settings/tabmanagertabmanager.pro
151 CONFIG_TABOAPP core/apps/taboapptaboapp.pro 151 CONFIG_TABOAPP core/apps/taboapptaboapp.pro
152 CONFIG_TEST libsql/testtest.pro 152 CONFIG_TEST libsql/testtest.pro
153 CONFIG_TEST noncore/apps/opie-console/testtest.pro 153 CONFIG_TEST noncore/apps/opie-console/testtest.pro
154 CONFIG_TETRIX noncore/games/tetrixtetrix.pro 154 CONFIG_TETRIX noncore/games/tetrixtetrix.pro
155 CONFIG_TEXTEDIT core/apps/textedittextedit.pro 155 CONFIG_TEXTEDIT core/apps/textedittextedit.pro
156 CONFIG_THEME noncore/styles/themetheme.pro 156 CONFIG_THEME noncore/styles/themetheme.pro
157 CONFIG_TICTAC noncore/games/tictactictac.pro 157 CONFIG_TICTAC noncore/games/tictactictac.pro
158 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro 158 CONFIG_TINYKATE noncore/apps/tinykatetinykate.pro
159 CONFIG_TODAY core/pim/todaytoday.pro 159 CONFIG_TODAY core/pim/todaytoday.pro
160CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro 160CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro
161 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro 161 CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebookdatebook.pro
162 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro 162 CONFIG_TODAY_FORTUNE noncore/todayplugins/fortunefortune.pro
163 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro 163 CONFIG_TODAY_MAIL core/pim/today/plugins/mailmail.pro
164 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro 164 CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stocktickerstockticker.pro
165 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro 165 CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlibstocktickerlib.pro
166 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro 166 CONFIG_TODAY_TODOLIST core/pim/today/plugins/todolisttodolist.pro
167 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro 167 CONFIG_TODAY_WEATHERnoncore/todayplugins/weather weather.pro
168 CONFIG_TODO core/pim/todotodo.pro 168 CONFIG_TODO core/pim/todotodo.pro
169 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro 169 CONFIG_UBROWSER noncore/net/ubrowserubrowser.pro
170 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro 170 CONFIG_UNIKEYBOARD inputmethods/unikeyboardunikeyboard.pro
171 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro 171 CONFIG_USERMANAGER noncore/settings/usermanagerusermanager.pro
172 CONFIG_VMEMO core/applets/vmemovmemo.pro 172 CONFIG_VMEMO core/applets/vmemovmemo.pro
173 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro 173 CONFIG_VOLUMEAPPLET core/applets/volumeappletvolumeapplet.pro
174 CONFIG_VTAPPLET core/applets/vtappletvtapplet.pro 174 CONFIG_VTAPPLET core/applets/vtappletvtapplet.pro
175 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro 175 CONFIG_WAVPLUGIN core/multimedia/opieplayer/wavpluginwavplugin.pro
176 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro 176 CONFIG_WELLENREITER noncore/net/wellenreiterwellenreiter.pro
177 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro 177 CONFIG_WIRELESSAPPLET noncore/applets/wirelessappletwirelessapplet.pro
178 CONFIG_WLAN noncore/settings/networksettings/wlanwlan.pro 178 CONFIG_WLAN noncore/settings/networksettings/wlanwlan.pro
179 CONFIG_PPP noncore/settings/networksettings/pppppp.pro 179 CONFIG_PPP noncore/settings/networksettings/pppppp.pro
180 CONFIG_WORDGAME noncore/games/wordgamewordgame.pro 180 CONFIG_WORDGAME noncore/games/wordgamewordgame.pro
181 CONFIG_ZSAFEnoncore/apps/zsafe zsafe.pro 181 CONFIG_ZSAFEnoncore/apps/zsafe zsafe.pro
182 CONFIG_MAIN_TAB_EXAMPLE examples/main-tabexample.pro 182 CONFIG_MAIN_TAB_EXAMPLE examples/main-tabexample.pro
183 CONFIG_SIMPLE_EXAMPLE examples/simpleexample.pro 183 CONFIG_SIMPLE_EXAMPLE examples/simpleexample.pro
184 CONFIG_SIMPLE_ICON examples/simple-iconexample.pro 184 CONFIG_SIMPLE_ICON examples/simple-iconexample.pro
185 CONFIG_SIMPLE_MAIN examples/simple-mainexample.pro 185 CONFIG_SIMPLE_MAIN examples/simple-mainexample.pro
186 CONFIG_SIMPLE_PIM examples/simple-pimexample.pro 186 CONFIG_SIMPLE_PIM examples/simple-pimexample.pro
187CONFIG_BIGSCREEN_EXAMPLE libopie/big-screen/example osplitter_mail.pro 187CONFIG_BIGSCREEN_EXAMPLE libopie/big-screen/example osplitter_mail.pro
188 CONFIG_APPLET_EXAMPLE examples/appletexample.pro 188 CONFIG_APPLET_EXAMPLE examples/appletexample.pro