Additional renaming of kde to tde

pull/1/head
Timothy Pearson 13 years ago
parent b53f796aec
commit e91a07ec04

@ -3,7 +3,7 @@
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Project related configuration options # Project related configuration options
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
PROJECT_NAME = kstreamripper.kdevelop PROJECT_NAME = kstreamripper.tdevelop
PROJECT_NUMBER = 0.1 PROJECT_NUMBER = 0.1
OUTPUT_DIRECTORY = OUTPUT_DIRECTORY =
OUTPUT_LANGUAGE = English OUTPUT_LANGUAGE = English

@ -4,7 +4,7 @@ sctest REQUIREMENTS
kde >= 3.2 is needed to run sctest kde >= 3.2 is needed to run sctest
To compile sctest, the kde development packages To compile sctest, the kde development packages
are needed: kdelibs-devel, kdebase-devel and python are needed: tdelibs-devel, tdebase-devel and python
scons is also needed http://www.scons.org scons is also needed http://www.scons.org
(this tool also used by Blender, ..) (this tool also used by Blender, ..)

@ -57,7 +57,7 @@ datadir
libdir libdir
kdeincludes kdeincludes
qtincludes qtincludes
kdelibs tdelibs
qtlibs qtlibs
extraincludes (a list of paths separated by ':') extraincludes (a list of paths separated by ':')

@ -37,7 +37,7 @@ def detect_kde(env):
datadir = env['ARGS'].get('datadir', None) datadir = env['ARGS'].get('datadir', None)
libdir = env['ARGS'].get('libdir', None) libdir = env['ARGS'].get('libdir', None)
kdeincludes= env['ARGS'].get('kdeincludes', 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) qtincludes = env['ARGS'].get('qtincludes', None)
qtlibs = env['ARGS'].get('qtlibs', None) qtlibs = env['ARGS'].get('qtlibs', None)
@ -49,7 +49,7 @@ def detect_kde(env):
else: else:
print RED + "kde-config was NOT found in your PATH"+ NORMAL print RED + "kde-config was NOT found in your PATH"+ NORMAL
print "Make sure kde is installed properly" print "Make sure kde is installed properly"
print "(missing package kdebase-devel?)" print "(missing package tdebase-devel?)"
env.Exit(1) env.Exit(1)
env['KDEDIR'] = os.popen('kde-config -prefix').read().strip() env['KDEDIR'] = os.popen('kde-config -prefix').read().strip()
@ -193,9 +193,9 @@ def detect_kde(env):
## kde libs and includes ## kde libs and includes
env['KDEINCLUDEPATH']= kdeincludes env['KDEINCLUDEPATH']= kdeincludes
if not kdelibs: if not tdelibs:
kdelibs = os.popen('kde-config --expandvars --install lib').read().strip() tdelibs = os.popen('kde-config --expandvars --install lib').read().strip()
env['KDELIBPATH']= kdelibs env['KDELIBPATH']= tdelibs
## qt libs and includes ## qt libs and includes
env['QTINCLUDEPATH']= qtincludes env['QTINCLUDEPATH']= qtincludes
@ -253,7 +253,7 @@ def generate(env):
"""+BOLD+"""* libdir """+NORMAL+""": install path for the libs, ie: /usr/lib """+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+"""* 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+"""* 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 """+BOLD+"""* qtlibs """+NORMAL+""": same punishment, for qt libraries
ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt
"""+NORMAL) """+NORMAL)

@ -35,7 +35,7 @@ def detect_kde(env):
libdir = env['ARGS'].get('libdir', None) libdir = env['ARGS'].get('libdir', None)
libsuffix = env['ARGS'].get('libsuffix', '') libsuffix = env['ARGS'].get('libsuffix', '')
kdeincludes = env['ARGS'].get('kdeincludes', 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) qtincludes = env['ARGS'].get('qtincludes', None)
qtlibs = env['ARGS'].get('qtlibs', None) qtlibs = env['ARGS'].get('qtlibs', None)
@ -50,7 +50,7 @@ def detect_kde(env):
else: else:
print RED+"kde-config was NOT found in your PATH"+NORMAL print RED+"kde-config was NOT found in your PATH"+NORMAL
print "Make sure kde is installed properly" print "Make sure kde is installed properly"
print "(missing package kdebase-devel?)" print "(missing package tdebase-devel?)"
env.Exit(1) env.Exit(1)
env['KDEDIR'] = os.popen('kde-config -prefix').read().strip() env['KDEDIR'] = os.popen('kde-config -prefix').read().strip()
@ -209,9 +209,9 @@ def detect_kde(env):
## kde libs and includes ## kde libs and includes
env['KDEINCLUDEPATH']=kdeincludes env['KDEINCLUDEPATH']=kdeincludes
if not kdelibs: if not tdelibs:
kdelibs=os.popen('kde-config --expandvars --install lib').read().strip() tdelibs=os.popen('kde-config --expandvars --install lib').read().strip()
env['KDELIBPATH']=kdelibs env['KDELIBPATH']=tdelibs
## qt libs and includes ## qt libs and includes
env['QTINCLUDEPATH']=qtincludes env['QTINCLUDEPATH']=qtincludes
@ -233,7 +233,7 @@ def generate(env):
"""+BOLD+"""* libsuffix """+NORMAL+""": suffix of libraries on amd64, ie: 64, 32 """+BOLD+"""* libsuffix """+NORMAL+""": suffix of libraries on amd64, ie: 64, 32
"""+BOLD+"""* kdeincludes"""+NORMAL+""": path to the kde includes (/usr/include/kde on debian, ...) """+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+"""* 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 """+BOLD+"""* qtlibs """+NORMAL+""": same punishment, for qt libraries
ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt
"""+NORMAL) """+NORMAL)

@ -1,5 +1,5 @@
<?xml version = '1.0'?> <?xml version = '1.0'?>
<kdevelop> <tdevelop>
<general> <general>
<author>Michael Goettsche</author> <author>Michael Goettsche</author>
<email>mail@tuxipuxi.de</email> <email>mail@tuxipuxi.de</email>
@ -203,4 +203,4 @@
<diffoptions>-u3 -p</diffoptions> <diffoptions>-u3 -p</diffoptions>
<rshoptions/> <rshoptions/>
</kdevcvs> </kdevcvs>
</kdevelop> </tdevelop>

@ -39,7 +39,7 @@
#include <tqtimer.h> #include <tqtimer.h>
#include <kmessagebox.h> #include <kmessagebox.h>
#include <kstandarddirs.h> #include <kstandarddirs.h>
#include <kdeversion.h> #include <tdeversion.h>
#include "kstreamripper.h" #include "kstreamripper.h"
#include "addnewstreamimpl.h" #include "addnewstreamimpl.h"

@ -21,7 +21,7 @@
#ifndef KSTREAMRIPPER_H #ifndef KSTREAMRIPPER_H
#define KSTREAMRIPPER_H #define KSTREAMRIPPER_H
#include <kdeversion.h> #include <tdeversion.h>
#include "kstreamripperbase.h" #include "kstreamripperbase.h"
#if KDE_IS_VERSION(3,3,90) #if KDE_IS_VERSION(3,3,90)
#include <dnssd/servicebrowser.h> #include <dnssd/servicebrowser.h>

@ -25,7 +25,7 @@
#include <tqstring.h> #include <tqstring.h>
#include <tqtimer.h> #include <tqtimer.h>
#include <tqobject.h> #include <tqobject.h>
#include <kdeversion.h> #include <tdeversion.h>
#if KDE_IS_VERSION(3,3,90) #if KDE_IS_VERSION(3,3,90)
#include <dnssd/remoteservice.h> #include <dnssd/remoteservice.h>
#endif #endif

Loading…
Cancel
Save