diff options
author | Timothy Pearson <[email protected]> | 2011-11-16 13:36:45 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-16 13:36:45 -0600 |
commit | 760e089b23b74f1bae7153d181bc0b518db5ddeb (patch) | |
tree | 4d33a3e00e8e377c07116680ef8f54f9bd06319d /bksys | |
parent | f1a3e17267e1e5642e2baf01a21a8ea1f8695869 (diff) | |
download | abakus-760e089b23b74f1bae7153d181bc0b518db5ddeb.tar.gz abakus-760e089b23b74f1bae7153d181bc0b518db5ddeb.zip |
Additional renaming of kde to tde
Diffstat (limited to 'bksys')
-rw-r--r-- | bksys/kde.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bksys/kde.py b/bksys/kde.py index 625e4ca..0efe843 100644 --- a/bksys/kde.py +++ b/bksys/kde.py @@ -82,7 +82,7 @@ def detect_kde(env): datadir = getpath('datadir') libdir = getpath('libdir') kdeincludes = getpath('kdeincludes') - kdelibs = getpath('kdelibs') + tdelibs = getpath('tdelibs') qtincludes = getpath('qtincludes') qtlibs = getpath('qtlibs') libsuffix = '' @@ -98,7 +98,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() @@ -245,9 +245,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 @@ -270,7 +270,7 @@ b[* libdir ]: install path for the libs, ie: /usr/lib b[* libsuffix ]: suffix of libraries on amd64, ie: 64, 32 b[* kdeincludes]: path to the kde includes (/usr/include/kde on debian, ...) b[* qtincludes ]: path to the for qt includes (/usr/include/qt on debian, ...) -b[* kdelibs ]: path to the kde libs, for linking the programs +b[* tdelibs ]: path to the kde libs, for linking the programs b[* qtlibs ]: path to the qt libs, for linking the programs ie: b[scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt] |