summaryrefslogtreecommitdiffstats
path: root/pytdeconfig.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'pytdeconfig.py.in')
-rw-r--r--pytdeconfig.py.in32
1 files changed, 16 insertions, 16 deletions
diff --git a/pytdeconfig.py.in b/pytdeconfig.py.in
index 252184c..611113d 100644
--- a/pytdeconfig.py.in
+++ b/pytdeconfig.py.in
@@ -23,14 +23,14 @@
import sip_tqt_config
-from PyTQt import pyqtconfig
+from PyTQt import pytqtconfig
# These are installation specific values created when PyTQt was configured.
# @SIP_CONFIGURATION@
-class Configuration(pyqtconfig.Configuration):
+class Configuration(pytqtconfig.Configuration):
"""The class that represents PyTQt configuration values.
"""
def __init__(self, sub_cfg=None):
@@ -46,10 +46,10 @@ class Configuration(pyqtconfig.Configuration):
cfg.append(_pkg_config)
- pyqtconfig.Configuration.__init__(self, cfg)
+ pytqtconfig.Configuration.__init__(self, cfg)
-class DCOPModuleMakefile(pyqtconfig.TQtModuleMakefile):
+class DCOPModuleMakefile(pytqtconfig.TQtModuleMakefile):
"""The Makefile class for modules that %Import DCOP.
"""
def finalise(self):
@@ -62,7 +62,7 @@ class DCOPModuleMakefile(pyqtconfig.TQtModuleMakefile):
self.LIBDIR.append(self.config.pytde_lib_dir)
self.extra_libs.append(self.module_as_lib("DCOP"))
- pyqtconfig.TQtModuleMakefile.finalise(self)
+ pytqtconfig.TQtModuleMakefile.finalise(self)
class KdecoreModuleMakefile(DCOPModuleMakefile):
"""The Makefile class for modules that %Import tdecore.
@@ -73,7 +73,7 @@ class KdecoreModuleMakefile(DCOPModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdecore"))
DCOPModuleMakefile.finalise(self)
@@ -87,7 +87,7 @@ class KdesuModuleMakefile(KdecoreModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdesu"))
KdecoreModuleMakefile.finalise(self)
@@ -101,7 +101,7 @@ class KdefxModuleMakefile(KdecoreModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdefx"))
KdecoreModuleMakefile.finalise(self)
@@ -115,11 +115,11 @@ class KdeuiModuleMakefile(KdefxModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdeui"))
if self.config.sip_version < 0x040000:
- self.extra_libs.append(self.module_as_lib("qtxml"))
+ self.extra_libs.append(self.module_as_lib("tqtxml"))
KdefxModuleMakefile.finalise(self)
@@ -132,7 +132,7 @@ class KioModuleMakefile(KdeuiModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdeio"))
KdeuiModuleMakefile.finalise(self)
@@ -146,7 +146,7 @@ class KfileModuleMakefile(KioModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdefile"))
KioModuleMakefile.finalise(self)
@@ -160,7 +160,7 @@ class KpartsModuleMakefile(KfileModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdeparts"))
KfileModuleMakefile.finalise(self)
@@ -174,7 +174,7 @@ class KhtmlModuleMakefile(KpartsModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdehtml"))
KpartsModuleMakefile.finalise(self)
@@ -188,7 +188,7 @@ class KjsModuleMakefile(KhtmlModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("kjs"))
KjsModuleMakefile.finalise(self)
@@ -202,7 +202,7 @@ class KdeprintModuleMakefile(KdeuiModuleMakefile):
if self.config.sip_version < 0x040000:
# Note that we don't use self.extra_lib_dirs because we don't want
# it to be added to the rpath.
- self.LIBDIR.append(self.config.pyqt_mod_dir)
+ self.LIBDIR.append(self.config.pytqt_mod_dir)
self.extra_libs.append(self.module_as_lib("tdeprint"))
KdeuiModuleMakefile.finalise(self)