summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:42:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:42:16 -0600
commite91a07ec04736a4dbb004d71a31ea610b1141775 (patch)
tree4c3a7386f49b17fdcd1df3c6669499c44008c742 /admin
parentb53f796aecd0115fbf7f3794599b92ee02b95035 (diff)
downloadkstreamripper-e91a07ec04736a4dbb004d71a31ea610b1141775.tar.gz
kstreamripper-e91a07ec04736a4dbb004d71a31ea610b1141775.zip
Additional renaming of kde to tde
Diffstat (limited to 'admin')
-rw-r--r--admin/kde.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/admin/kde.py b/admin/kde.py
index 2133cd2..a563ce9 100644
--- a/admin/kde.py
+++ b/admin/kde.py
@@ -37,7 +37,7 @@ def detect_kde(env):
datadir = env['ARGS'].get('datadir', None)
libdir = env['ARGS'].get('libdir', None)
kdeincludes= env['ARGS'].get('kdeincludes', None)
- kdelibs = env['ARGS'].get('kdelibs', None)
+ tdelibs = env['ARGS'].get('tdelibs', None)
qtincludes = env['ARGS'].get('qtincludes', None)
qtlibs = env['ARGS'].get('qtlibs', None)
@@ -49,7 +49,7 @@ def detect_kde(env):
else:
print RED + "kde-config was NOT found in your PATH"+ NORMAL
print "Make sure kde is installed properly"
- print "(missing package kdebase-devel?)"
+ print "(missing package tdebase-devel?)"
env.Exit(1)
env['KDEDIR'] = os.popen('kde-config -prefix').read().strip()
@@ -193,9 +193,9 @@ def detect_kde(env):
## kde libs and includes
env['KDEINCLUDEPATH']= kdeincludes
- if not kdelibs:
- kdelibs = os.popen('kde-config --expandvars --install lib').read().strip()
- env['KDELIBPATH']= kdelibs
+ if not tdelibs:
+ tdelibs = os.popen('kde-config --expandvars --install lib').read().strip()
+ env['KDELIBPATH']= tdelibs
## qt libs and includes
env['QTINCLUDEPATH']= qtincludes
@@ -253,7 +253,7 @@ def generate(env):
"""+BOLD+"""* libdir """+NORMAL+""": install path for the libs, ie: /usr/lib
"""+BOLD+"""* kdeincludes"""+NORMAL+""": path to the kde includes (/usr/include/kde on debian, ...)
"""+BOLD+"""* qtincludes """+NORMAL+""": same punishment, for qt includes (/usr/include/qt on debian, ...)
-"""+BOLD+"""* kdelibs """+NORMAL+""": path to the kde libs, for linking the programs
+"""+BOLD+"""* tdelibs """+NORMAL+""": path to the kde libs, for linking the programs
"""+BOLD+"""* qtlibs """+NORMAL+""": same punishment, for qt libraries
ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt
"""+NORMAL)