summaryrefslogtreecommitdiffstats
path: root/pykdeconfig.py.in
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:25:51 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:25:51 -0600
commit10d461f8a8b11ea740680361c20c4a378811e8a4 (patch)
treefb43cedf9cd3b06209af237c3cbbc9c0a8fb0896 /pykdeconfig.py.in
parent23c5b612d95f27d80c70adef92890955574a94bf (diff)
downloadpytde-10d461f8a8b11ea740680361c20c4a378811e8a4.tar.gz
pytde-10d461f8a8b11ea740680361c20c4a378811e8a4.zip
Additional kde to tde renaming
Diffstat (limited to 'pykdeconfig.py.in')
-rw-r--r--pykdeconfig.py.in20
1 files changed, 10 insertions, 10 deletions
diff --git a/pykdeconfig.py.in b/pykdeconfig.py.in
index 18661c7..96b985b 100644
--- a/pykdeconfig.py.in
+++ b/pykdeconfig.py.in
@@ -64,7 +64,7 @@ class DCOPModuleMakefile(pyqtconfig.QtModuleMakefile):
pyqtconfig.QtModuleMakefile.finalise(self)
class KdecoreModuleMakefile(DCOPModuleMakefile):
- """The Makefile class for modules that %Import kdecore.
+ """The Makefile class for modules that %Import tdecore.
"""
def finalise(self):
"""Finalise the macros.
@@ -73,12 +73,12 @@ class KdecoreModuleMakefile(DCOPModuleMakefile):
# 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.extra_libs.append(self.module_as_lib("kdecore"))
+ self.extra_libs.append(self.module_as_lib("tdecore"))
DCOPModuleMakefile.finalise(self)
class KdesuModuleMakefile(KdecoreModuleMakefile):
- """The Makefile class for modules that %Import kdesu.
+ """The Makefile class for modules that %Import tdesu.
"""
def finalise(self):
"""Finalise the macros.
@@ -87,12 +87,12 @@ class KdesuModuleMakefile(KdecoreModuleMakefile):
# 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.extra_libs.append(self.module_as_lib("kdesu"))
+ self.extra_libs.append(self.module_as_lib("tdesu"))
KdecoreModuleMakefile.finalise(self)
class KdefxModuleMakefile(KdecoreModuleMakefile):
- """The Makefile class for modules that %Import kdefx.
+ """The Makefile class for modules that %Import tdefx.
"""
def finalise(self):
"""Finalise the macros.
@@ -101,12 +101,12 @@ class KdefxModuleMakefile(KdecoreModuleMakefile):
# 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.extra_libs.append(self.module_as_lib("kdefx"))
+ self.extra_libs.append(self.module_as_lib("tdefx"))
KdecoreModuleMakefile.finalise(self)
class KdeuiModuleMakefile(KdefxModuleMakefile):
- """The Makefile class for modules that %Import kdeui.
+ """The Makefile class for modules that %Import tdeui.
"""
def finalise(self):
"""Finalise the macros.
@@ -115,7 +115,7 @@ class KdeuiModuleMakefile(KdefxModuleMakefile):
# 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.extra_libs.append(self.module_as_lib("kdeui"))
+ self.extra_libs.append(self.module_as_lib("tdeui"))
if self.config.sip_version < 0x040000:
self.extra_libs.append(self.module_as_lib("qtxml"))
@@ -193,7 +193,7 @@ class KjsModuleMakefile(KhtmlModuleMakefile):
KjsModuleMakefile.finalise(self)
class KdeprintModuleMakefile(KdeuiModuleMakefile):
- """The Makefile class for modules that %Import kdeprint.
+ """The Makefile class for modules that %Import tdeprint.
"""
def finalise(self):
"""Finalise the macros.
@@ -202,6 +202,6 @@ class KdeprintModuleMakefile(KdeuiModuleMakefile):
# 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.extra_libs.append(self.module_as_lib("kdeprint"))
+ self.extra_libs.append(self.module_as_lib("tdeprint"))
KdeuiModuleMakefile.finalise(self)