Additional renaming of kde to tde

pull/1/head
Timothy Pearson il y a 13 ans
Parent b53f796aec
révision e91a07ec04

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

@ -4,7 +4,7 @@ sctest REQUIREMENTS
kde >= 3.2 is needed to run sctest
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
(this tool also used by Blender, ..)

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

@ -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)

@ -35,7 +35,7 @@ def detect_kde(env):
libdir = env['ARGS'].get('libdir', None)
libsuffix = env['ARGS'].get('libsuffix', '')
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)
@ -50,7 +50,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()
@ -209,9 +209,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
@ -233,7 +233,7 @@ def generate(env):
"""+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+"""* 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)

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

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

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

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

Chargement…
Annuler
Enregistrer