diff options
author | Timothy Pearson <[email protected]> | 2011-11-22 14:10:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-22 14:10:43 -0600 |
commit | e9402471a2f87071f972ec8a19be33716d5ada5d (patch) | |
tree | bb6b28ece0c391fe5b54495fefff8221c2355741 /bksys/kde.py | |
parent | 81282044b92b5fa3c433f243ebe1fc82188750fd (diff) | |
download | abakus-e9402471a2f87071f972ec8a19be33716d5ada5d.tar.gz abakus-e9402471a2f87071f972ec8a19be33716d5ada5d.zip |
Fix FTBFS
Diffstat (limited to 'bksys/kde.py')
-rw-r--r-- | bksys/kde.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/bksys/kde.py b/bksys/kde.py index 0efe843..fd1a7e3 100644 --- a/bksys/kde.py +++ b/bksys/kde.py @@ -103,13 +103,8 @@ def detect_kde(env): env['KDEDIR'] = os.popen('kde-config -prefix').read().strip() print "Checking for kde version : ", - kde_version = os.popen("kde-config --version|grep KDE").read().strip().split()[1] - if int(kde_version[0]) != 3 or int(kde_version[2]) < 2: - print RED+kde_version - print RED+"Your kde version can be too old"+NORMAL - print RED+"Please make sure kde is at least 3.2"+NORMAL - else: - print GREEN+kde_version+NORMAL + kde_version = os.popen("kde-config --version|grep TDE|sed 's/R//g'").read().strip().split()[1] + print GREEN+kde_version+NORMAL ## Detect the qt library print "Checking for the qt library : ", @@ -158,6 +153,9 @@ def detect_kde(env): moc = os.popen("which moc 2>/dev/null").read().strip() if len(moc): print YELLOW + "moc was found as " + moc + NORMAL + elif os.path.isfile("/usr/share/tqt3/bin/moc"): + moc = "/usr/share/tqt3/bin/moc" + print YELLOW + "moc was found as " + moc + NORMAL elif os.path.isfile("/usr/share/qt3/bin/moc"): moc = "/usr/share/qt3/bin/moc" print YELLOW + "moc was found as " + moc + NORMAL @@ -176,6 +174,10 @@ def detect_kde(env): # Automatic detection print GREEN + "ok " + qtdir + "/include/ " + NORMAL qtincludes = qtdir + "/include/" + elif os.path.isfile("/usr/include/tqt3/qlayout.h"): + # Debian probably + print YELLOW + "the native tqt headers were found in /usr/include/tqt3/ " + NORMAL + qtincludes = "/usr/include/tqt3" elif os.path.isfile("/usr/include/qt3/qlayout.h"): # Debian probably print YELLOW + "the qt headers were found in /usr/include/qt3/ " + NORMAL |