File indexing completed on 2024-04-28 09:37:09

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