Additional renaming of kde to tde

pull/1/head
Timothy Pearson 13 years ago
parent 24f84d9cb7
commit b21a3fd337

@ -165,7 +165,7 @@ released)
2002/2/7 14:25:00 jim 2002/2/7 14:25:00 jim
3.0alpha4: changed postproc to run from $PYTHONINTERP from 3.0alpha4: changed postproc to run from $PYTHONINTERP from
configure; removed unnecessary links to libdcop (from configure; removed unnecessary links to libdcop (from
kdebindings) -- only libDCOP is req'd (bug reports from tdebindings) -- only libDCOP is req'd (bug reports from
Henrik Motakef) Henrik Motakef)
2001/11/25 13:19:00 jim 2001/11/25 13:19:00 jim

@ -139,7 +139,7 @@ fully-qualified names in kabc/resourcefile.sip
r130 | (no author) | 2006-01-26 16:53:44 -0800 (Thu, 26 Jan 2006) | 3 lines r130 | (no author) | 2006-01-26 16:53:44 -0800 (Thu, 26 Jan 2006) | 3 lines
Put kabc/resourcefile.sip back into kabc for later Put kabc/resourcefile.sip back into kabc for later
versions (missing in kdelibs tarball, but in trinity/include/kabc) versions (missing in tdelibs tarball, but in trinity/include/kabc)
------------------------------------------------------------------------ ------------------------------------------------------------------------
r129 | (no author) | 2006-01-26 16:50:00 -0800 (Thu, 26 Jan 2006) | 3 lines r129 | (no author) | 2006-01-26 16:50:00 -0800 (Thu, 26 Jan 2006) | 3 lines

@ -89,7 +89,7 @@ opt_split = 1
opt_releasegil = 0 opt_releasegil = 0
opt_tracing = 0 opt_tracing = 0
opt_static = 0 opt_static = 0
opt_kdebasedir = None opt_tdebasedir = None
opt_kdelibdir = None opt_kdelibdir = None
opt_kdeincdir = None opt_kdeincdir = None
opt_dep_warnings = 0 opt_dep_warnings = 0
@ -270,7 +270,7 @@ def inform_user(stage):
print print
elif stage == 1: elif stage == 1:
sipconfig.inform ("KDE base directory is %s" % opt_kdebasedir) sipconfig.inform ("KDE base directory is %s" % opt_tdebasedir)
sipconfig.inform ("KDE include directory is %s" % opt_kdeincdir) sipconfig.inform ("KDE include directory is %s" % opt_kdeincdir)
sipconfig.inform ("KDE lib directory is %s" % opt_kdelibdir) sipconfig.inform ("KDE lib directory is %s" % opt_kdelibdir)
sipconfig.inform ("lib directory is %s" % opt_libdir) sipconfig.inform ("lib directory is %s" % opt_libdir)
@ -306,7 +306,7 @@ def create_config(module, template):
"pykde_sip_dir": opt_pykdesipdir, "pykde_sip_dir": opt_pykdesipdir,
"pykde_modules": pykde_modules, "pykde_modules": pykde_modules,
"pykde_kde_sip_flags": kde_sip_flags, "pykde_kde_sip_flags": kde_sip_flags,
"kdebasedir": opt_kdebasedir, "tdebasedir": opt_tdebasedir,
"kdelibdir": opt_kdelibdir, "kdelibdir": opt_kdelibdir,
"libdir": opt_libdir, "libdir": opt_libdir,
"kdeincdir": opt_kdeincdir, "kdeincdir": opt_kdeincdir,
@ -387,9 +387,9 @@ def search (target, searchPath):
return path return path
def discoverKDE3 (): def discoverKDE3 ():
global opt_kdeincdir, opt_kdebasedir, opt_kdelibdir, opt_libdir global opt_kdeincdir, opt_tdebasedir, opt_kdelibdir, opt_libdir
if not opt_kdebasedir: if not opt_tdebasedir:
kdeSearchPaths = [] kdeSearchPaths = []
libSearchPaths = [] libSearchPaths = []
incSearchPaths = [] incSearchPaths = []
@ -401,16 +401,16 @@ def discoverKDE3 ():
kdeSearchPaths.append (os.path.join ("/opt", "trinity")) kdeSearchPaths.append (os.path.join ("/opt", "trinity"))
kdeSearchPaths.append ("/usr") kdeSearchPaths.append ("/usr")
opt_kdebasedir = search (None, kdeSearchPaths) opt_tdebasedir = search (None, kdeSearchPaths)
if not opt_kdelibdir: if not opt_kdelibdir:
libSearchPaths = [os.path.join (opt_kdebasedir, "lib"), os.path.join (opt_kdebasedir, "lib64"), os.path.join (opt_kdebasedir, opt_libdir)] libSearchPaths = [os.path.join (opt_tdebasedir, "lib"), os.path.join (opt_tdebasedir, "lib64"), os.path.join (opt_tdebasedir, opt_libdir)]
# print opt_libdir # print opt_libdir
opt_kdelibdir = search ("libtdecore.so", libSearchPaths) opt_kdelibdir = search ("libtdecore.so", libSearchPaths)
if not opt_kdeincdir: if not opt_kdeincdir:
incSearchPaths = [os.path.join (opt_kdebasedir, "include")] incSearchPaths = [os.path.join (opt_tdebasedir, "include")]
incSearchPaths.append (os.path.join (opt_kdebasedir, "include", "kde")) # Red Hat incSearchPaths.append (os.path.join (opt_tdebasedir, "include", "kde")) # Red Hat
opt_kdeincdir = search ("kapplication.h", incSearchPaths) opt_kdeincdir = search ("kapplication.h", incSearchPaths)
def check_kde_installation(): def check_kde_installation():
@ -421,24 +421,24 @@ def check_kde_installation():
discoverKDE3 () discoverKDE3 ()
if not opt_kdebasedir: if not opt_tdebasedir:
sipconfig.error ("Couldn't locate KDE3 base directory") sipconfig.error ("Couldn't locate KDE3 base directory")
if not opt_kdeincdir: if not opt_kdeincdir:
sipconfig.error ("Couldn't locate KDE3 include directory (%s is KDE base)" % opt_kdebasedir) sipconfig.error ("Couldn't locate KDE3 include directory (%s is KDE base)" % opt_tdebasedir)
if not opt_kdelibdir: if not opt_kdelibdir:
sipconfig.error ("Couldn't locate KDE3 lib directory (%s is KDE base)" % opt_kdebasedir) sipconfig.error ("Couldn't locate KDE3 lib directory (%s is KDE base)" % opt_tdebasedir)
kdeversion_h = os.path.join(opt_kdeincdir, "kdeversion.h") tdeversion_h = os.path.join(opt_kdeincdir, "tdeversion.h")
inform_user (1) inform_user (1)
if not os.access(kdeversion_h, os.F_OK): if not os.access(tdeversion_h, os.F_OK):
sipconfig.error("kdeversion.h could not be found in %s." % opt_kdeincdir) sipconfig.error("tdeversion.h could not be found in %s." % opt_kdeincdir)
# Get the KDE version number. # Get the KDE version number.
getKDEVersion(kdeversion_h) getKDEVersion(tdeversion_h)
inform_user (2) inform_user (2)
@ -827,7 +827,7 @@ def main(argv):
global opt_debug, opt_concat, opt_releasegil global opt_debug, opt_concat, opt_releasegil
global opt_split, opt_tracing, opt_startModName global opt_split, opt_tracing, opt_startModName
global opt_startmod, opt_endmod global opt_startmod, opt_endmod
global opt_kdebasedir, opt_kdelibdir, opt_kdeincdir, opt_libdir global opt_tdebasedir, opt_kdelibdir, opt_kdeincdir, opt_libdir
global pykde_modules, opt_dep_warnings, opt_dist_name global pykde_modules, opt_dep_warnings, opt_dist_name
global pykde_imports, kde_includes global pykde_imports, kde_includes
@ -866,7 +866,7 @@ def main(argv):
usage() usage()
elif opt == "-k": elif opt == "-k":
opt_kdebasedir = arg opt_tdebasedir = arg
elif opt == "-L": elif opt == "-L":
opt_libdir = arg opt_libdir = arg

@ -162,7 +162,7 @@ The path to KDE's library files (libtdecore.so, etc).
<td width = "40%"><u>configure.py Default:</u> trinity/include</td> <td width = "40%"><u>configure.py Default:</u> trinity/include</td>
<td width = "20%"> </td> <td width = "20%"> </td>
</tr></table> </tr></table>
The path to KDE's h files. (May require installation of kdelibs3-devel rpm package) The path to KDE's h files. (May require installation of tdelibs3-devel rpm package)
configure.py. PyKDE will locate h files in subdirectories of this path automatically (eg trinity/include/kio/*.h) configure.py. PyKDE will locate h files in subdirectories of this path automatically (eg trinity/include/kio/*.h)
</dd> </dd>
<hr> <hr>

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -30,7 +30,7 @@
#include <qstringlist.h> #include <qstringlist.h>
#include <kdelibs_export.h> #include <tdelibs_export.h>
/** /**
* The goal of this class is to make sure that, when the user needs to * The goal of this class is to make sure that, when the user needs to

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -30,7 +30,7 @@
#include <qstringlist.h> #include <qstringlist.h>
#include <kdelibs_export.h> #include <tdelibs_export.h>
/** /**
* The goal of this class is to make sure that, when the user needs to * The goal of this class is to make sure that, when the user needs to

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -30,7 +30,7 @@
#include <qstringlist.h> #include <qstringlist.h>
#include <kdelibs_export.h> #include <tdelibs_export.h>
/** /**
* The goal of this class is to make sure that, when the user needs to * The goal of this class is to make sure that, when the user needs to

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -30,7 +30,7 @@
#include <qstringlist.h> #include <qstringlist.h>
#include <kdelibs_export.h> #include <tdelibs_export.h>
/** /**
* The goal of this class is to make sure that, when the user needs to * The goal of this class is to make sure that, when the user needs to

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -30,7 +30,7 @@
#include <qstringlist.h> #include <qstringlist.h>
#include <kdelibs_export.h> #include <tdelibs_export.h>
/** /**
* The goal of this class is to make sure that, when the user needs to * The goal of this class is to make sure that, when the user needs to

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -16,7 +16,7 @@
#include <qstring.h> #include <qstring.h>
#include <qstringlist.h> #include <qstringlist.h>
#include <qptrlist.h> #include <qptrlist.h>
#include "kdelibs_export.h" #include "tdelibs_export.h"
class KConfig; class KConfig;
//class KIconThemeDir; //class KIconThemeDir;

@ -18,7 +18,7 @@
#ifndef KSharedPTR_H #ifndef KSharedPTR_H
#define KSharedPTR_H #define KSharedPTR_H
#include "kdelibs_export.h" #include "tdelibs_export.h"
/** /**
* Reference counting for shared objects. If you derive your object * Reference counting for shared objects. If you derive your object

@ -26,7 +26,7 @@
project = PyKDE project = PyKDE
destination = /home/jim/PyKDE350 destination = /home/jim/PyKDE350
source = /server/source/KDESrc/kdelibs-3.5.0 source = /server/source/KDESrc/tdelibs-3.5.0
compare = /opt/trinity/include compare = /opt/trinity/include
importpath = /usr/share/sip importpath = /usr/share/sip
prevpath = /home/jim/PyKDE/sip prevpath = /home/jim/PyKDE/sip
@ -69,7 +69,7 @@ ignore = netwm_p.h kde_dmalloc.h kunload.h kdatastream.h ksockaddr.h kextso
ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h
ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h
ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h
ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h kdelibs_export.h ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h tdelibs_export.h
ignore = kswap.h ignore = kswap.h
compare = $COMP $DST/extra/kde350 compare = $COMP $DST/extra/kde350
subst = $DST/extra/kde350 subst = $DST/extra/kde350

@ -26,7 +26,7 @@
project = PyKDE project = PyKDE
destination = /home/jim/PyKDE351 destination = /home/jim/PyKDE351
source = /server/source/KDESrc/kdelibs-3.5.1 source = /server/source/KDESrc/tdelibs-3.5.1
compare = /opt/trinity/include compare = /opt/trinity/include
importpath = /usr/share/sip importpath = /usr/share/sip
prevpath = /home/jim/PyKDE/sip prevpath = /home/jim/PyKDE/sip
@ -69,7 +69,7 @@ ignore = netwm_p.h kde_dmalloc.h kunload.h kdatastream.h ksockaddr.h kextso
ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h
ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h
ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h
ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h kdelibs_export.h ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h tdelibs_export.h
ignore = kswap.h ignore = kswap.h
compare = $COMP $DST/extra/kde351 compare = $COMP $DST/extra/kde351
subst = $DST/extra/kde351 subst = $DST/extra/kde351

@ -26,7 +26,7 @@
project = PyKDE project = PyKDE
destination = /home/jim/PyKDE352 destination = /home/jim/PyKDE352
source = /server/source/KDESrc/kdelibs-3.5.2 source = /server/source/KDESrc/tdelibs-3.5.2
compare = /opt/trinity/include compare = /opt/trinity/include
importpath = /usr/share/sip importpath = /usr/share/sip
prevpath = /home/jim/PyKDE/sip prevpath = /home/jim/PyKDE/sip
@ -69,7 +69,7 @@ ignore = netwm_p.h kde_dmalloc.h kunload.h kdatastream.h ksockaddr.h kextso
ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h
ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h
ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h
ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h kdelibs_export.h ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h tdelibs_export.h
ignore = kswap.h ignore = kswap.h
compare = $COMP $DST/extra/kde352 compare = $COMP $DST/extra/kde352
subst = $DST/extra/kde352 subst = $DST/extra/kde352

@ -26,7 +26,7 @@
project = PyKDE project = PyKDE
destination = /home/jim/PyKDE353 destination = /home/jim/PyKDE353
source = /server/source/KDESrc/kdelibs-3.5.3 source = /server/source/KDESrc/tdelibs-3.5.3
compare = /opt/trinity/include compare = /opt/trinity/include
importpath = /usr/share/sip importpath = /usr/share/sip
prevpath = /home/jim/PyKDE/sip prevpath = /home/jim/PyKDE/sip
@ -69,7 +69,7 @@ ignore = netwm_p.h kde_dmalloc.h kunload.h kdatastream.h ksockaddr.h kextso
ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h ignore = ksycocaentry.h ksycocafactory.h ksycocatype.h ksycoca.h kapp.h kstandarddirs.h
ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h ignore = kgenericfactory.h ktypelist.h kvmallocator.h ksortablevaluelist.h
ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h ignore = kextendedsocket.h klargefile.h kdebug.h kdebugclasses.h kxmessages.h kaccelmanager.h
ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h kdelibs_export.h ignore = kdemacros.h kxerrorhandler.h fixx11.h kuser.h kuniqueapp.h kde_file.h tdelibs_export.h
ignore = kswap.h ignore = kswap.h
compare = $COMP $DST/extra/kde353 compare = $COMP $DST/extra/kde353
subst = $DST/extra/kde353 subst = $DST/extra/kde353

@ -32,7 +32,7 @@ _pkg_config = {
'kde_version_extra': 'kde353', 'kde_version_extra': 'kde353',
'kde_version_sfx': '-kde353.diff', 'kde_version_sfx': '-kde353.diff',
'kde_version_str': '3.5.3', 'kde_version_str': '3.5.3',
'kdebasedir': '/opt/trinity', 'tdebasedir': '/opt/trinity',
'kdeincdir': '/opt/trinity/include', 'kdeincdir': '/opt/trinity/include',
'kdelibdir': '/opt/trinity/lib', 'kdelibdir': '/opt/trinity/lib',
'libdir': 'lib', 'libdir': 'lib',

@ -24,7 +24,7 @@
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
%ModuleHeaderCode %ModuleHeaderCode
#include <kdeversion.h> #include <tdeversion.h>
%End %End

@ -1,3 +1,3 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kurldrag.sip + %Include kurldrag.sip

@ -1,3 +1,3 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kurldrag.sip + %Include kurldrag.sip

@ -3,7 +3,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip
+ %Include kmountpoint.sip + %Include kmountpoint.sip

@ -3,7 +3,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip
+ %Include kmountpoint.sip + %Include kmountpoint.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip
+ %Include kmountpoint.sip + %Include kmountpoint.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip
+ %Include kmountpoint.sip + %Include kmountpoint.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

@ -4,7 +4,7 @@
+ %Include kclipboard.sip + %Include kclipboard.sip
+ %Include kconfigdialogmanager.sip + %Include kconfigdialogmanager.sip
+ %Include kconfigskeleton.sip + %Include kconfigskeleton.sip
+ %Include kdeversion.sip + %Include tdeversion.sip
+ %Include kidna.sip + %Include kidna.sip
+ %Include klockfile.sip + %Include klockfile.sip
+ %Include kmacroexpander.sip + %Include kmacroexpander.sip

Loading…
Cancel
Save