File indexing completed on 2025-02-09 06:56:27
0001 #! /bin/sh 0002 # 0003 # kdedoxyman.sh 0004 # Copyright 2007,2010,2012-2013 by Allen Winter <winter@kde.org> 0005 # 0006 # This program is free software; you can redistribute it and/or modify 0007 # it under the terms of the GNU General Public License as published by 0008 # the Free Software Foundation; either version 2 of the License, or 0009 # (at your option) any later version. 0010 # 0011 # This program is distributed in the hope that it will be useful, 0012 # but WITHOUT ANY WARRANTY; without even the implied warranty of 0013 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0014 # GNU General Public License for more details. 0015 # 0016 # You should have received a copy of the GNU General Public License along 0017 # with this program; if not, write to the Free Software Foundation, Inc., 0018 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 0019 # 0020 0021 # A program to generate API man pages for KDE modules using doxygen. 0022 0023 # Program options: 0024 # -d <dir>: install the generated man pages to this directory 0025 # 0026 0027 ulimit -c unlimited 0028 usage="`basename $0` [-d <install_dir>] [-n <project_name>] [-x <project_version>]" 0029 0030 install_dir="$PWD" 0031 project_name="KDE" 0032 project_version="4.12" 0033 while getopts "hn:x:d:" options; do 0034 case $options in 0035 h ) echo $usage; exit 0;; 0036 d ) install_dir=$OPTARG;; 0037 n ) project_name="$OPTARG";; 0038 x ) project_version="$OPTARG";; 0039 \? ) echo $usage 0040 exit 1;; 0041 * ) echo $usage 0042 exit 1;; 0043 0044 esac 0045 done 0046 0047 # compute the default output directory, if necessary 0048 if ( test "$install_dir" = "" ) then 0049 echo "must specify the installation directory with the -d option. Exiting..." 0050 exit 1 0051 fi 0052 if ( test ! -w "$install_dir" ) then 0053 echo "sorry, you do not have write access to the specified installation directory. Exiting..." 0054 exit 1 0055 fi 0056 0057 ( cat <<EOF ) | doxygen - 0058 #--------------------------------------------------------------------------- 0059 # Project related configuration options 0060 #--------------------------------------------------------------------------- 0061 PROJECT_NAME = $project_name 0062 PROJECT_NUMBER = $project_version 0063 OUTPUT_DIRECTORY = $install_dir 0064 CREATE_SUBDIRS = NO 0065 OUTPUT_LANGUAGE = English 0066 BRIEF_MEMBER_DESC = YES 0067 REPEAT_BRIEF = YES 0068 ABBREVIATE_BRIEF = "The \$name class" \ 0069 "The \$name widget" \ 0070 "The \$name file" \ 0071 is \ 0072 provides \ 0073 specifies \ 0074 contains \ 0075 represents \ 0076 a \ 0077 an \ 0078 the 0079 ALWAYS_DETAILED_SEC = NO 0080 INLINE_INHERITED_MEMB = NO 0081 FULL_PATH_NAMES = NO 0082 STRIP_FROM_PATH = 0083 STRIP_FROM_INC_PATH = 0084 SHORT_NAMES = NO 0085 JAVADOC_AUTOBRIEF = NO 0086 MULTILINE_CPP_IS_BRIEF = NO 0087 INHERIT_DOCS = YES 0088 SEPARATE_MEMBER_PAGES = NO 0089 TAB_SIZE = 8 0090 OPTIMIZE_OUTPUT_FOR_C = NO 0091 OPTIMIZE_OUTPUT_JAVA = NO 0092 BUILTIN_STL_SUPPORT = NO 0093 DISTRIBUTE_GROUP_DOC = NO 0094 SUBGROUPING = YES 0095 #--------------------------------------------------------------------------- 0096 # Build related configuration options 0097 #--------------------------------------------------------------------------- 0098 EXTRACT_ALL = NO 0099 EXTRACT_PRIVATE = YES 0100 EXTRACT_STATIC = YES 0101 EXTRACT_LOCAL_CLASSES = YES 0102 EXTRACT_LOCAL_METHODS = NO 0103 HIDE_UNDOC_MEMBERS = NO 0104 HIDE_UNDOC_CLASSES = NO 0105 HIDE_FRIEND_COMPOUNDS = YES 0106 HIDE_IN_BODY_DOCS = NO 0107 INTERNAL_DOCS = YES 0108 CASE_SENSE_NAMES = YES 0109 HIDE_SCOPE_NAMES = NO 0110 SHOW_INCLUDE_FILES = YES 0111 INLINE_INFO = YES 0112 SORT_MEMBER_DOCS = YES 0113 SORT_MEMBERS_CTORS_1ST = YES 0114 SORT_BRIEF_DOCS = YES 0115 SORT_BY_SCOPE_NAME = NO 0116 GENERATE_TODOLIST = YES 0117 GENERATE_TESTLIST = YES 0118 GENERATE_BUGLIST = YES 0119 GENERATE_DEPRECATEDLIST = YES 0120 ENABLED_SECTIONS = 0121 MAX_INITIALIZER_LINES = 30 0122 SHOW_USED_FILES = YES 0123 FILE_VERSION_FILTER = 0124 #--------------------------------------------------------------------------- 0125 # configuration options related to warning and progress messages 0126 #--------------------------------------------------------------------------- 0127 QUIET = NO 0128 WARNINGS = YES 0129 WARN_IF_UNDOCUMENTED = YES 0130 WARN_IF_DOC_ERROR = YES 0131 WARN_NO_PARAMDOC = YES 0132 WARN_FORMAT = "\$file:\$line: \$text" 0133 WARN_LOGFILE = 0134 #--------------------------------------------------------------------------- 0135 # configuration options related to the input files 0136 #--------------------------------------------------------------------------- 0137 INPUT = . 0138 FILE_PATTERNS = *.cpp \ 0139 *.cc \ 0140 *.cxx \ 0141 *.h \ 0142 *.hh \ 0143 *.hxx \ 0144 *.hpp 0145 RECURSIVE = YES 0146 EXCLUDE = 0147 EXCLUDE_SYMLINKS = NO 0148 EXCLUDE_PATTERNS = */.svn/* \ 0149 */.git/* \ 0150 */cmake/* \ 0151 *.moc.* \ 0152 moc* \ 0153 *.all_cpp.* \ 0154 *unload.* \ 0155 */test/* \ 0156 */tests/* \ 0157 *_p.cpp \ 0158 */build-*/* 0159 EXAMPLE_PATH = 0160 EXAMPLE_PATTERNS = * 0161 EXAMPLE_RECURSIVE = NO 0162 IMAGE_PATH = $PWD 0163 INPUT_FILTER = 0164 FILTER_PATTERNS = 0165 FILTER_SOURCE_FILES = NO 0166 #--------------------------------------------------------------------------- 0167 # configuration options related to the alphabetical class index 0168 #--------------------------------------------------------------------------- 0169 ALPHABETICAL_INDEX = NO 0170 COLS_IN_ALPHA_INDEX = 1 0171 IGNORE_PREFIX = 0172 #--------------------------------------------------------------------------- 0173 # do NOT generate any formats other than man 0174 #--------------------------------------------------------------------------- 0175 SOURCE_BROWSER = NO 0176 GENERATE_HTML = NO 0177 GENERATE_LATEX = NO 0178 GENERATE_RTF = NO 0179 GENERATE_XML = NO 0180 GENERATE_AUTOGEN_DEF = NO 0181 GENERATE_PERLMOD = NO 0182 DISABLE_INDEX = YES 0183 #--------------------------------------------------------------------------- 0184 # configuration options related to the man page output 0185 #--------------------------------------------------------------------------- 0186 GENERATE_MAN = YES 0187 MAN_OUTPUT = man 0188 MAN_EXTENSION = .3 0189 MAN_LINKS = YES 0190 #--------------------------------------------------------------------------- 0191 # Configuration options related to the preprocessor 0192 #--------------------------------------------------------------------------- 0193 ENABLE_PREPROCESSING = YES 0194 MACRO_EXPANSION = YES 0195 EXPAND_ONLY_PREDEF = NO 0196 SEARCH_INCLUDES = YES 0197 INCLUDE_PATH = 0198 INCLUDE_FILE_PATTERNS = 0199 PREDEFINED = 0200 EXPAND_AS_DEFINED = 0201 SKIP_FUNCTION_MACROS = YES 0202 #--------------------------------------------------------------------------- 0203 # Configuration::additions related to external references 0204 #--------------------------------------------------------------------------- 0205 ALLEXTERNALS = NO 0206 EXTERNAL_GROUPS = YES 0207 PERL_PATH = /usr/bin/perl 0208 #--------------------------------------------------------------------------- 0209 # Configuration options related to the dot tool 0210 #--------------------------------------------------------------------------- 0211 CLASS_DIAGRAMS = NO 0212 HIDE_UNDOC_RELATIONS = YES 0213 HAVE_DOT = NO 0214 CLASS_GRAPH = NO 0215 COLLABORATION_GRAPH = NO 0216 GROUP_GRAPHS = NO 0217 UML_LOOK = NO 0218 TEMPLATE_RELATIONS = NO 0219 INCLUDE_GRAPH = NO 0220 INCLUDED_BY_GRAPH = YES 0221 CALL_GRAPH = NO 0222 CALLER_GRAPH = NO 0223 GRAPHICAL_HIERARCHY = NO 0224 DIRECTORY_GRAPH = NO 0225 GENERATE_LEGEND = NO 0226 #--------------------------------------------------------------------------- 0227 # Configuration::additions related to the search engine 0228 #--------------------------------------------------------------------------- 0229 SEARCHENGINE = NO 0230 0231 0232 ### KDE Settings 0233 ALIASES = \ 0234 "intern=\par<b>Internal use only.</b>" \ 0235 "reimp=\par<b>Reimplemented from superclass.</b>" \ 0236 "obsolete=@deprecated" \ 0237 "feature=\xrefitem features \"Feature(s)\" \"Features\"" \ 0238 "maintainer=\xrefitem maintainers \"Maintainer(s)\" \"Maintainers\"" \ 0239 "unmaintained=\xrefitem unmaintained \"Unmaintained\" \"Unmaintained\"" \ 0240 "requirement=\xrefitem requirements \"Requirement(s)\" \"Requirements\"" \ 0241 "faq=\xrefitem FAQ \"F.A.Q.\" \"F.A.Q.\"" \ 0242 "authors=\xrefitem authors \"Author(s)\" \"Authors\"" \ 0243 "maintainers=\xrefitem maintainers \"Maintainer(s)\" \"Maintainers\"" \ 0244 "port4=\xrefitem port4 \"KDE 4 Porting Guide\" \"KDE 4 Porting Guide\"" \ 0245 "glossary=\xrefitem glossary \"KDE 4 Glossary\" \"KDE 4 Glossary\"" \ 0246 "acronym=\b "\ 0247 "licenses=\xrefitem licenses \"License(s)\" \"Licenses\"" \ 0248 "short=@brief "\ 0249 "FIXME=\xrefitem fixme \"Fixme\" \"Fixme\"" \ 0250 "bc=\xrefitem bc \"Binary Compatible\" \"Binary Compatible\"" \ 0251 "artistic=<a href=\"http://www.opensource.org/licenses/artistic-license.php\">Artistic</a>" \ 0252 "bsd=<a href=\"http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5\">BSD</a>" \ 0253 "x11=<a href=\"http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3\">X11</a>" \ 0254 "gpl=<a href=\"http://www.fsf.org/licensing/licenses/gpl.html#SEC1\">GPL</a>" \ 0255 "lgpl=<a href=\"http://www.fsf.org/licensing/licenses/lgpl.html#SEC1\">LGPL</a>" \ 0256 "qpl=<a href=\"http://www.trolltech.com/products/qt/licenses\">QPL</a>" 0257 0258 PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS \ 0259 K_DOXYGEN \ 0260 AKONADI_CONTACT_EXPORT="" \ 0261 AKONADI_CONTACT_TESTS_EXPORT="" \ 0262 AKONADI_EXPORT="" \ 0263 AKONADI_FILESTORE_EXPORT="" \ 0264 AKONADI_KABC_EXPORT="" \ 0265 AKONADI_KCAL_EXPORT="" \ 0266 AKONADI_KCAL_NEXT_EXPORT="" \ 0267 AKONADI_KMIME_EXPORT="" \ 0268 AKONADI_KMIME_TEST_EXPORT="" \ 0269 AKONADI_NEXT_EXPORT="" \ 0270 AKONADI_TESTS_EXPORT="" \ 0271 AKONADI_XML_EXPORT="" \ 0272 AKREGATOR_EXPORT="" \ 0273 AKREGATORINTERFACES_EXPORT="" \ 0274 AKREGATORPART_EXPORT="" \ 0275 BTCORE_EXPORT="" \ 0276 CANTOR_EXPORT="" \ 0277 COMPOUNDVIEWER_EXPORT="" \ 0278 EVENTVIEWS_EXPORT="" \ 0279 GEOLOCATION_EXPORT="" \ 0280 GPGMEPP_EXPORT="" \ 0281 GWENVIEWLIB_EXPORT="" \ 0282 GWSOAP_EXPORT="" \ 0283 INCIDENCEEDITORS_EXPORT="" \ 0284 INCIDENCEEDITORS_NG_EXPORT="" \ 0285 ION_EXPORT="" \ 0286 JABBER_EXPORT="" \ 0287 KABC_DIR_EXPORT="" \ 0288 KABC_EXPORT="" \ 0289 KABC_FILE_CORE_EXPORT="" \ 0290 KABC_GROUPWISE_EXPORT="" \ 0291 KABC_LDAPKIO_EXPORT="" \ 0292 KABC_NET_EXPORT="" \ 0293 KADDRESSBOOK_EXPORT="" \ 0294 KALARM_CAL_EXPORT="" \ 0295 KALARM_RESOURCES_EXPORT="" \ 0296 KASTENCONTROLLERS_EXPORT="" \ 0297 KASTENCORE_EXPORT="" \ 0298 KASTENGUI_EXPORT="" \ 0299 KATEINTERFACES_EXPORT="" \ 0300 KATEPART_TESTS_EXPORT="" \ 0301 KAUDIODEVICELIST_EXPORT="" \ 0302 KBLOG_EXPORT="" \ 0303 KBOOKMARKMODEL_EXPORT="" \ 0304 KCALCORE_EXPORT="" \ 0305 KCALCORE_TEST_EXPORT="" \ 0306 KCAL_EXPORT="" \ 0307 KCAL_GROUPWISE_EXPORT="" \ 0308 KCAL_RESOURCEBLOG_EXPORT="" \ 0309 KCAL_RESOURCEREMOTE_EXPORT="" \ 0310 KCAL_TEST_EXPORT="" \ 0311 KCALUTILS_EXPORT="" \ 0312 KCALUTILS_TEST_EXPORT="" \ 0313 KCDDB_EXPORT="" \ 0314 KCM_KNODE_EXPORT="" \ 0315 KCM_KORGANIZER_EXPORT="" \ 0316 KCM_KRESOURCES_EXPORT="" \ 0317 KCMUTILS_EXPORT="" \ 0318 KDE3SUPPORT_EXPORT="" \ 0319 KDECORE_EXPORT="" \ 0320 KDEEDUUI_EXPORT="" \ 0321 KDE_EXPORT="" \ 0322 KDEGAMES_EXPORT="" \ 0323 KDEMULTIMEDIA_EXPORT="" \ 0324 KDEPIM_COPY_EXPORT="" \ 0325 KDEPIMDBUSINTERFACES_EXPORT="" \ 0326 KDEPIM_EXPORT="" \ 0327 KDESU_EXPORT="" \ 0328 KDEUI_EXPORT="" \ 0329 KDEWEBKIT_EXPORT="" \ 0330 KDNSSD_EXPORT="" \ 0331 KEDUVOCDOCUMENT_EXPORT="" \ 0332 KEMOTICONS_EXPORT="" \ 0333 KEPHAL_EXPORT="" \ 0334 KERFUFFLE_EXPORT="" \ 0335 KEXIV2_EXPORT="" \ 0336 KFILE_EXPORT="" \ 0337 KFONTINST_EXPORT="" \ 0338 KGET_EXPORT="" \ 0339 KGGZGAMES_EXPORT="" \ 0340 KGGZMOD_EXPORT="" \ 0341 KGGZNET_EXPORT="" \ 0342 KHOLIDAYS_EXPORT="" \ 0343 KHTML_EXPORT="" \ 0344 KICKOFF_EXPORT="" \ 0345 KIDLETIME_EXPORT="" \ 0346 KIMAP_EXPORT="" \ 0347 KIMPANELRUNTIME_EXPORT="" \ 0348 KIMPROXY_EXPORT="" \ 0349 KIO_EXPORT="" \ 0350 KIOSLAVE_FILE_EXPORT="" \ 0351 KIRCCLIENT_EXPORT="" \ 0352 KIRC_EXPORT="" \ 0353 KJSAPI_EXPORT="" \ 0354 KLDAP_EXPORT="" \ 0355 KLEO_EXPORT="" \ 0356 KLEOPATRACLIENTCORE_EXPORT="" \ 0357 KLEOPATRACLIENTGUI_EXPORT="" \ 0358 KLINKSTATUS_EXPORT="" \ 0359 KMAHJONGGLIB_EXPORT="" \ 0360 KMAIL_EXPORT="" \ 0361 KMEDIAPLAYER_EXPORT="" \ 0362 KMIME_EXPORT="" \ 0363 KMINDEXREADER_EXPORT="" \ 0364 KNEWSTUFF_EXPORT="" \ 0365 KNODE_EXPORT="" \ 0366 KNOTIFYCONFIG_EXPORT="" \ 0367 KNTLM_EXPORT="" \ 0368 KOLFLIB_EXPORT="" \ 0369 KOLOURPAINT_LGPL_EXPORT="" \ 0370 KOMMANDERCORE_EXPORT="" \ 0371 KOMMANDERWIDGETS_EXPORT="" \ 0372 KONQ_TESTS_EXPORT="" \ 0373 KONQUERORPRIVATE_EXPORT="" \ 0374 KONSOLEPRIVATE_EXPORT="" \ 0375 KONTACT_EXPORT="" \ 0376 KONTACTINTERFACE_EXPORT="" \ 0377 KOPETEADDACCOUNTWIZARD_EXPORT="" \ 0378 KOPETECHATWINDOW_SHARED_EXPORT="" \ 0379 KOPETE_CONTACT_LIST_EXPORT="" \ 0380 KOPETE_EXPORT="" \ 0381 KOPETE_IDENTITY_EXPORT="" \ 0382 KOPETE_OTR_SHARED_EXPORT="" \ 0383 KOPETEPRIVACY_EXPORT="" \ 0384 KOPETE_STATUSMENU_EXPORT="" \ 0385 KORGANIZER_CALENDAR_EXPORT="" \ 0386 KORGANIZER_CORE_EXPORT="" \ 0387 KORGANIZER_EVENTVIEWER_EXPORT="" \ 0388 KORGANIZER_INTERFACES_EXPORT="" \ 0389 KORGANIZERPRIVATE_EXPORT="" \ 0390 KORG_STDPRINTING_EXPORT="" \ 0391 KPARTS_EXPORT="" \ 0392 KPGP_EXPORT="" \ 0393 KPIMIDENTITIES_EXPORT="" \ 0394 KPIMTEXTEDIT_EXPORT="" \ 0395 KPIMUTILS_EXPORT="" \ 0396 KPRINTUTILS_EXPORT="" \ 0397 KPTY_EXPORT="" \ 0398 KRESOURCES_EXPORT="" \ 0399 KRICHTEXTEDITPART_EXPORT="" \ 0400 KROSSCORE_EXPORT="" \ 0401 KROSS_EXPORT="" \ 0402 KROSSUI_EXPORT="" \ 0403 KSIEVE_EXPORT="" \ 0404 KSPEECH_EXPORT="" \ 0405 KTEXTEDITOR_CODESNIPPETS_CORE_EXPORT="" \ 0406 KTEXTEDITOR_EXPORT="" \ 0407 KTNEF_EXPORT="" \ 0408 KUNITCONVERSION_EXPORT="" \ 0409 KUNITTEST_EXPORT="" \ 0410 KUPNP_EXPORT="" \ 0411 KWALLETBACKEND_EXPORT="" \ 0412 KXMLRPCCLIENT_EXPORT="" \ 0413 LANCELOT_EXPORT="" \ 0414 LIBDOLPHINPRIVATE_EXPORT="" \ 0415 LIBGROUPWISE_EXPORT="" \ 0416 LIBKCARDGAME_EXPORT="" \ 0417 LIBKDCRAW_EXPORT="" \ 0418 LIBKIPI_EXPORT="" \ 0419 LIBKONQ_EXPORT="" \ 0420 LIBKSANE_EXPORT="" \ 0421 LIBKYAHOO_EXPORT="" \ 0422 LIBOSCAR_EXPORT="" \ 0423 MAILDIR_EXPORT="" \ 0424 MAILTRANSPORT_EXPORT="" \ 0425 MBOX_EXPORT="" \ 0426 MESSAGECOMPOSER_EXPORT="" \ 0427 MESSAGECORE_EXPORT="" \ 0428 MESSAGELIST_EXPORT="" \ 0429 MESSAGEVIEWER_EXPORT="" \ 0430 MICROBLOG_EXPORT="" \ 0431 MOBILEUI_EXPORT="" \ 0432 MOLLETNETWORK_EXPORT="" \ 0433 NEPOMUK_EXPORT="" \ 0434 NEPOMUKQUERY_EXPORT="" \ 0435 OKTETACORE_EXPORT="" \ 0436 OKTETAGUI_EXPORT="" \ 0437 OKTETAKASTENCONTROLLERS_EXPORT="" \ 0438 OKTETAKASTENCORE_EXPORT="" \ 0439 OKTETAKASTENGUI_EXPORT="" \ 0440 OKULAR_EXPORT="" \ 0441 OSCAR_EXPORT="" \ 0442 PIMSTRIGI_ANALYZER_EXPORT="" \ 0443 PLASMACLOCK_EXPORT="" \ 0444 PLASMA_COMIC_EXPORT="" \ 0445 PLASMA_EXPORT="" \ 0446 PLASMAGENERICSHELL_EXPORT="" \ 0447 PLASMA_POTD_EXPORT="" \ 0448 PLASMAWEATHER_EXPORT="" \ 0449 PROXYMODELTESTSUITE_EXPORT="" \ 0450 QGPGME_EXPORT="" \ 0451 QQ_EXPORT="" \ 0452 RTM_EXPORT="" \ 0453 SCIENCE_EXPORT="" \ 0454 SM_EXPORT="" \ 0455 SOLIDCONTROL_EXPORT="" \ 0456 SOLIDCONTROLIFACES_EXPORT="" \ 0457 SUPERKARAMBA_EXPORT="" \ 0458 SYNDICATION_EXPORT="" \ 0459 SYSTEMSETTINGSVIEW_EXPORT="" \ 0460 TASKMANAGER_EXPORT="" \ 0461 TEMPLATEPARSER_EXPORT="" \ 0462 THREADWEAVER_EXPORT="" \ 0463 YAHOO_EXPORT="" \ 0464 \ 0465 AKONADI_EXPORT_DEPRECATED="" \ 0466 AKONADI_KCAL_NEXT_EXPORT_DEPRECATED="" \ 0467 AKONADI_KMIME_EXPORT_DEPRECATED="" \ 0468 AKONADI_NEXT_EXPORT_DEPRECATED="" \ 0469 AKREGATOR_EXPORT_DEPRECATED="" \ 0470 AKREGATORINTERFACES_EXPORT_DEPRECATED="" \ 0471 BTCORE_EXPORT_DEPRECATED="" \ 0472 CANTOR_EXPORT_DEPRECATED="" \ 0473 COMPOUNDVIEWER_EXPORT_DEPRECATED="" \ 0474 EVENTVIEWS_EXPORT_DEPRECATED="" \ 0475 GEOLOCATION_EXPORT_DEPRECATED="" \ 0476 GPGMEPP_EXPORT_DEPRECATED="" \ 0477 INCIDENCEEDITORS_EXPORT_DEPRECATED="" \ 0478 INCIDENCEEDITORS_NG_EXPORT_DEPRECATED="" \ 0479 ION_EXPORT_DEPRECATED="" \ 0480 KABC_DIRECTORY_EXPORT_DEPRECATED="" \ 0481 KABC_EXPORT_DEPRECATED="" \ 0482 KABC_FILE_CORE_EXPORT_DEPRECATED="" \ 0483 KABC_GROUPWISE_EXPORT_DEPRECATED="" \ 0484 KABC_LDAPKIO_EXPORT_DEPRECATED="" \ 0485 KABC_NET_EXPORT_DEPRECATED="" \ 0486 KADDRESSBOOK_EXPORT_DEPRECATED="" \ 0487 KALARM_CAL_EXPORT_DEPRECATED="" \ 0488 KALARM_RESOURCES_EXPORT_DEPRECATED="" \ 0489 KASTENCONTROLLER_EXPORT_DEPRECATED="" \ 0490 KASTENCORE_EXPORT_DEPRECATED="" \ 0491 KASTENGUI_EXPORT_DEPRECATED="" \ 0492 KAUDIODEVICELIST_EXPORT_DEPRECATED="" \ 0493 KBOOKMARKMODEL_EXPORT_DEPRECATED="" \ 0494 KCALCORE_EXPORT_DEPRECATED="" \ 0495 KCAL_EXPORT_DEPRECATED="" \ 0496 KCAL_GROUPWISE_EXPORT_DEPRECATED="" \ 0497 KCAL_RESOURCEREMOTE_EXPORT_DEPRECATED="" \ 0498 KCALUTILS_EXPORT_DEPRECATED="" \ 0499 KCDDB_EXPORT_DEPRECATED="" \ 0500 KCM_KORGANIZER_EXPORT_DEPRECATED="" \ 0501 KCM_KRESOURCES_EXPORT_DEPRECATED="" \ 0502 KDE3SUPPORT_EXPORT_DEPRECATED="" \ 0503 KDECORE_EXPORT_DEPRECATED="" \ 0504 KDE_DEPRECATED="" \ 0505 KDEEDUUI_EXPORT_DEPRECATED="" \ 0506 KDEGAMES_EXPORT_DEPRECATED="" \ 0507 KDEMULTIMEDIA_EXPORT_DEPRECATED="" \ 0508 KDEPIM_COPY_EXPORT_DEPRECATED="" \ 0509 KDEPIM_EXPORT_DEPRECATED="" \ 0510 KDEUI_EXPORT_DEPRECATED="" \ 0511 KDEWEBKIT_EXPORT_DEPRECATED="" \ 0512 KEDUVOCDOCUMENT_EXPORT_DEPRECATED="" \ 0513 KEPHAL_EXPORT_DEPRECATED="" \ 0514 KERFUFFLE_EXPORT_DEPRECATED="" \ 0515 KEXIV2_EXPORT_DEPRECATED="" \ 0516 KFILE_EXPORT_DEPRECATED="" \ 0517 KGGZGAMES_EXPORT_DEPRECATED="" \ 0518 KGGZMOD_EXPORT_DEPRECATED="" \ 0519 KGGZNET_EXPORT_DEPRECATED="" \ 0520 KHOLIDAYS_EXPORT_DEPRECATED="" \ 0521 KHTML_EXPORT_DEPRECATED="" \ 0522 KICKOFF_EXPORT_DEPRECATED="" \ 0523 KIMPANELRUNTIME_EXPORT_DEPRECATED="" \ 0524 KIO_EXPORT_DEPRECATED="" \ 0525 KIOSLAVE_FILE_EXPORT_DEPRECATED="" \ 0526 KJSAPI_EXPORT_DEPRECATED="" \ 0527 KLEO_EXPORT_DEPRECATED="" \ 0528 KLINKSTATUS_EXPORT_DEPRECATED="" \ 0529 KMAHJONGGLIB_EXPORT_DEPRECATED="" \ 0530 KMAIL_EXPORT_DEPRECATED="" \ 0531 KMIME_EXPORT_DEPRECATED="" \ 0532 KNEWSTUFF_EXPORT_DEPRECATED="" \ 0533 KNODE_EXPORT_DEPRECATED="" \ 0534 KNTLM_EXPORT_DEPRECATED="" \ 0535 KOLFLIB_EXPORT_DEPRECATED="" \ 0536 KOLOURPAINT_LGPL_EXPORT_DEPRECATED="" \ 0537 KOMMANDERCORE_EXPORT_DEPRECATED="" \ 0538 KOMMANDERWIDGETS_EXPORT_DEPRECATED="" \ 0539 KONQUERORPRIVATE_EXPORT_DEPRECATED="" \ 0540 KONTACT_EXPORT_DEPRECATED="" \ 0541 KORGANIZER_CALENDAR_EXPORT_DEPRECATED="" \ 0542 KORGANIZER_CORE_EXPORT_DEPRECATED="" \ 0543 KORGANIZER_EVENTVIEWER_EXPORT_DEPRECATED="" \ 0544 KORGANIZER_INTERFACES_EXPORT_DEPRECATED="" \ 0545 KORGANIZERPRIVATE_EXPORT_DEPRECATED="" \ 0546 KORG_STDPRINTING_EXPORT_DEPRECATED="" \ 0547 KPGP_EXPORT_DEPRECATED="" \ 0548 KPINTERFACES_EXPORT_DEPRECATED="" \ 0549 KPTY_EXPORT_DEPRECATED="" \ 0550 KRESOURCES_EXPORT_DEPRECATED="" \ 0551 KROSSCORE_EXPORT_DEPRECATED="" \ 0552 KROSS_EXPORT_DEPRECATED="" \ 0553 KSIEVE_EXPORT_DEPRECATED="" \ 0554 KTEXTEDITOR_EXPORT_DEPRECATED="" \ 0555 KTNEF_EXPORT_DEPRECATED="" \ 0556 KUNITCONVERSION_EXPORT_DEPRECATED="" \ 0557 KUNITTEST_EXPORT_DEPRECATED="" \ 0558 KUPNP_EXPORT_DEPRECATED="" \ 0559 LANCELOT_EXPORT_DEPRECATED="" \ 0560 LIBKCARDGAME_EXPORT_DEPRECATED="" \ 0561 LIBKDCRAW_EXPORT_DEPRECATED="" \ 0562 LIBKIPI_EXPORT_DEPRECATED="" \ 0563 LIBKONQ_EXPORT_DEPRECATED="" \ 0564 LIBKSANE_EXPORT_DEPRECATED="" \ 0565 MAILDIR_EXPORT_DEPRECATED="" \ 0566 MAILTRANSPORT_EXPORT_DEPRECATED="" \ 0567 MBOX_EXPORT_DEPRECATED="" \ 0568 MOLLETNETWORK_EXPORT_DEPRECATED="" \ 0569 NEPOMUKQUERY_EXPORT_DEPRECATED="" \ 0570 NEPOMUK_SERVER_EXPORT_DEPRECATED="" \ 0571 OKTETACORE_EXPORT_DEPRECATED="" \ 0572 OKTETAGUI_EXPORT_DEPRECATED="" \ 0573 OKTETAKASTENCONTROLLER_EXPORT_DEPRECATED="" \ 0574 OKTETAKASTENCORE_EXPORT_DEPRECATED="" \ 0575 OKTETAKASTENGUI_EXPORT_DEPRECATED="" \ 0576 PLASMACLOCK_EXPORT_DEPRECATED="" \ 0577 PLASMA_EXPORT_DEPRECATED="" \ 0578 PLASMAGENERICSHELL_EXPORT_DEPRECATED="" \ 0579 PLASMAWEATHER_EXPORT_DEPRECATED="" \ 0580 QGPGME_EXPORT_DEPRECATED="" \ 0581 RTM_EXPORT_DEPRECATED="" \ 0582 SCIENCE_EXPORT_DEPRECATED="" \ 0583 SM_EXPORT_DEPRECATED="" \ 0584 SOLID_EXPORT_DEPRECATED="" \ 0585 SUPERKARAMBA_EXPORT_DEPRECATED="" \ 0586 SYSTEMSETTINGSVIEW_EXPORT_DEPRECATED="" \ 0587 TASKMANAGER_EXPORT_DEPRECATED="" \ 0588 \ 0589 Q_WS_X11="" \ 0590 Q_WS_WIN="" \ 0591 Q_WS_MAC="" \ 0592 Q_WS_QWS="" \ 0593 Q_WS_MAEMO_5="" \ 0594 Q_OS_LINUX="" \ 0595 Q_OS_UNIX="" \ 0596 Q_OS_WIN="" \ 0597 Q_OS_MAC="" \ 0598 Q_OS_MACX="" \ 0599 Q_OS_DARWIN="" \ 0600 Q_OS_FREEBSD="" \ 0601 Q_OS_NETBSD="" \ 0602 Q_OS_OPENBSD="" \ 0603 Q_OS_BSD4="" \ 0604 Q_OS_SOLARIS="" \ 0605 Q_OS_IRIX="" \ 0606 \ 0607 Q_SLOTS="slots" \ 0608 Q_SIGNALS="signals" 0609 0610 EOF 0611