summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt1
-rw-r--r--ConfigureChecks.cmake2
m---------admin0
-rw-r--r--doc/kicker-applets/ktimemon.docbook12
-rw-r--r--kate/filetemplates/plugin/filetemplates.cpp2
-rw-r--r--kate/insertcommand/plugin_kateinsertcommand.cpp2
-rw-r--r--kate/make/plugin_katemake.h2
-rw-r--r--kate/textfilter/plugin_katetextfilter.h2
-rw-r--r--kate/xmlcheck/plugin_katexmlcheck.h2
-rw-r--r--kicker-applets/kbinaryclock/kbinaryclock.cpp2
-rw-r--r--kicker-applets/ktimemon/README11
-rw-r--r--kicker-applets/ktimemon/sample.cpp45
-rw-r--r--kicker-applets/ktimemon/sample.h2
-rw-r--r--kicker-applets/ktimemon/timemon.cpp2
-rw-r--r--konq-plugins/akregator/konqfeedicon.cpp2
-rw-r--r--konq-plugins/akregator/pluginbase.cpp2
-rw-r--r--konq-plugins/microformat/pluginbase.cpp2
-rw-r--r--konq-plugins/rellinks/rellinks.tdevelop157
-rw-r--r--konq-plugins/rsync/rsyncplugin.h2
-rw-r--r--konq-plugins/searchbar/searchbar.cpp2
-rw-r--r--konq-plugins/sidebar/metabar/metabar.kdevses47
-rw-r--r--konq-plugins/sidebar/metabar/metabar.tdevelop213
-rw-r--r--ksig/ksig.spec45
-rw-r--r--noatun-plugins/dub/dub.kdevprj198
-rw-r--r--noatun-plugins/nexscope/noatunplugin.cpp2
-rw-r--r--noatun-plugins/nexscope/noatunplugin.h2
-rw-r--r--noatun-plugins/synaescope/synaescope.h2
-rw-r--r--noatun-plugins/tippercanoe/synaescope.cpp2
-rw-r--r--noatun-plugins/tippercanoe/synaescope.h2
-rw-r--r--noatun-plugins/tyler/tyler.cpp2
-rw-r--r--noatun-plugins/tyler/tyler.h2
-rw-r--r--tdefile-plugins/html/tdefile_html.cpp2
32 files changed, 36 insertions, 737 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5cba5a8..3f47fac 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,6 +25,7 @@ project( tdeaddons )
##### include essential cmake modules ###########
include( FindPkgConfig )
+include( FindThreads )
include( CheckIncludeFile )
include( CheckLibraryExists )
include( CheckSymbolExists )
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 9a1f20c..3f7d582 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -72,7 +72,7 @@ if( BUILD_NOATUN_PLUGINS )
tde_message_fatal( "SDL is requested, but was not found on your system" )
endif ( )
set ( SDL_INCLUDE_DIRS /usr/include/SDL )
- set ( SDL_LIBRARIES SDL pthread )
+ set ( SDL_LIBRARIES SDL ${CMAKE_THREAD_LIBS_INIT} )
endif( )
endif( WITH_SDL )
diff --git a/admin b/admin
-Subproject 85116532467b2bb4c73caf54c106c91a22dbe37
+Subproject 12bb2cad8e2982bd842d168158e391d6c12fb6a
diff --git a/doc/kicker-applets/ktimemon.docbook b/doc/kicker-applets/ktimemon.docbook
index da4958a..da9a4fc 100644
--- a/doc/kicker-applets/ktimemon.docbook
+++ b/doc/kicker-applets/ktimemon.docbook
@@ -39,10 +39,8 @@ graphical user interface. It also supports <emphasis>docking</emphasis>,
<note>
<para>Currently, &ktimemon; only supports a limited number of systems:
&Linux; based installations with the <filename>/proc</filename> file
-system, &Solaris; based installations with the
-<filename>kstat</filename> library, and Digital &UNIX; (formerly
-DEC/OSF1) based installations with the
-<command>table</command>(2) system call. Help with
+system and &Solaris; based installations with the
+<filename>kstat</filename> library. Help with
porting it to other platforms is most welcome.
</para>
</note>
@@ -302,10 +300,8 @@ linkend="fund">Onscreen Fundamentals</link>).</para>
<answer>
<para>
&ktimemon; supports &Linux; based systems with the <filename
-class="devicefile">/proc</filename> file system, &Solaris; based
-systems with the <filename>kstat</filename> library, and Digital
-&UNIX; (formerly DEC/OSF1) systems with the
-<command>table</command>(2) system call interface. Only the &Linux;
+class="devicefile">/proc</filename> file system and &Solaris; based
+systems with the <filename>kstat</filename> library. Only the &Linux;
version has been thoroughly tested, if you experience any problems
with the &Solaris;/Digital &UNIX; port, please do not hesitate to
contact me.
diff --git a/kate/filetemplates/plugin/filetemplates.cpp b/kate/filetemplates/plugin/filetemplates.cpp
index 47a2db4..31d1745 100644
--- a/kate/filetemplates/plugin/filetemplates.cpp
+++ b/kate/filetemplates/plugin/filetemplates.cpp
@@ -40,7 +40,7 @@
#include <tdemessagebox.h>
#include <tdenewstuff/knewstuff.h>
#include <tdenewstuff/entry.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kstandarddirs.h>
#include <kstandarddirs.h>
#include <tdetempfile.h>
diff --git a/kate/insertcommand/plugin_kateinsertcommand.cpp b/kate/insertcommand/plugin_kateinsertcommand.cpp
index c83a751..5351795 100644
--- a/kate/insertcommand/plugin_kateinsertcommand.cpp
+++ b/kate/insertcommand/plugin_kateinsertcommand.cpp
@@ -38,7 +38,7 @@
#include <kiconloader.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kstandarddirs.h>
#include <kgenericfactory.h>
#include <tdeapplication.h>
diff --git a/kate/make/plugin_katemake.h b/kate/make/plugin_katemake.h
index ac06b73..d406174 100644
--- a/kate/make/plugin_katemake.h
+++ b/kate/make/plugin_katemake.h
@@ -45,7 +45,7 @@ class TQRegExp;
#include <kdockwidget.h>
#include <kiconloader.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdetempfile.h>
class PluginKateMakeView : public TQListView, public KXMLGUIClient
diff --git a/kate/textfilter/plugin_katetextfilter.h b/kate/textfilter/plugin_katetextfilter.h
index f939e4d..87a6050 100644
--- a/kate/textfilter/plugin_katetextfilter.h
+++ b/kate/textfilter/plugin_katetextfilter.h
@@ -28,7 +28,7 @@
#include <kate/mainwindow.h>
#include <kate/viewmanager.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
class PluginKateTextFilter : public Kate::Plugin, public Kate::PluginViewInterface, public Kate::Command
{
diff --git a/kate/xmlcheck/plugin_katexmlcheck.h b/kate/xmlcheck/plugin_katexmlcheck.h
index 441d233..52a4f74 100644
--- a/kate/xmlcheck/plugin_katexmlcheck.h
+++ b/kate/xmlcheck/plugin_katexmlcheck.h
@@ -38,7 +38,7 @@
#include <kdockwidget.h>
#include <kiconloader.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdetempfile.h>
class PluginKateXMLCheckView : public TQListView, public KXMLGUIClient
diff --git a/kicker-applets/kbinaryclock/kbinaryclock.cpp b/kicker-applets/kbinaryclock/kbinaryclock.cpp
index 5661729..192c781 100644
--- a/kicker-applets/kbinaryclock/kbinaryclock.cpp
+++ b/kicker-applets/kbinaryclock/kbinaryclock.cpp
@@ -34,7 +34,7 @@
#include <tqtooltip.h>
#include <tqlabel.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kstandarddirs.h>
#include <tqclipboard.h>
#include <kled.h>
diff --git a/kicker-applets/ktimemon/README b/kicker-applets/ktimemon/README
index 5bf223f..e5f3777 100644
--- a/kicker-applets/ktimemon/README
+++ b/kicker-applets/ktimemon/README
@@ -32,21 +32,20 @@ context switch activity. It is well integrated in KDE and can be
configured graphically. For more information, see the associated
documentation (before installation it can be found in ktimemon/doc/*.html)
-KTimemon works on Linux using the /proc filesystem, on Solaris using the
-kstat interface, and on Digital Unix (formerly known as DEC/OSF1) using
-the table() system call interface. If you can help me to port it to other
+KTimemon works on Linux using the /proc filesystem and on Solaris using the
+kstat interface. If you can help me to port it to other
platforms, please drop me a note!
-While I was able to test the system interface on Solaris and DEC/OSF1 in
+While I was able to test the system interface on Solaris in
isolation, I could not test the whole application for lack of KDE on the
machines I have access to. Hence I have no idea whether this thing
actually compiles, let alone works on these platforms. The machines I tested
-were running DEC/OSF V4.0 and Solaris 2.5.1 respectively. If you get it to
+were running Solaris 2.5.1. If you get it to
work (or not) on such a system, please let me know!
Noteworthy changes from version 0.2:
-- Port to DEC/OSF1 and Solaris
+- Port to Solaris
- Configurable mouse bindings
- Slight rearrangement of memory information
- Bars can be displayed vertically
diff --git a/kicker-applets/ktimemon/sample.cpp b/kicker-applets/ktimemon/sample.cpp
index 5864583..a57a7c6 100644
--- a/kicker-applets/ktimemon/sample.cpp
+++ b/kicker-applets/ktimemon/sample.cpp
@@ -24,9 +24,7 @@
#include <fstream>
#include <stdio.h>
-#ifdef __osf__
-#include <sys/table.h>
-#elif defined(USE_SOLARIS)
+#if defined(USE_SOLARIS)
#include <kstat.h>
#include <sys/sysinfo.h>
#include <sys/stat.h>
@@ -42,7 +40,7 @@
// -- global definitions -------------------------------------------------
-#if defined(__osf__) || defined(USE_SOLARIS)
+#if defined(USE_SOLARIS)
extern "C" int getpagesize(); // argh, have to define prototype!
#endif
@@ -130,7 +128,7 @@ KSample::KSample(KTimeMon *t, bool a, unsigned p, unsigned s, unsigned c) :
}
#endif
-#if defined(USE_SOLARIS) || defined(__osf__)
+#if defined(USE_SOLARIS)
pagesPerMB = (1024*1024) / getpagesize();
if (pagesPerMB == 0) pagesPerMB = 1; // paranoia sanity check
#endif
@@ -261,41 +259,6 @@ void KSample::readSample()
}
sample.cpus = l;
-#elif defined(__osf__) // in OSF/2, we can use table()
-
- TQString msg = i18n("Unable to obtain system information.\n"
- "The table(2) system call returned an error "
- "for table %1.\n"
- "Please contact the maintainer at mueller@kde.org "
- "who will try to figure out what went wrong.");
-
- struct tbl_sysinfo sysinfo;
- if (table(TBL_SYSINFO, 0, &sysinfo, 1, sizeof(sysinfo)) != 1)
- fatal(msg.arg("TBL_SYSINFO"));
-
- sample.user = sysinfo.si_user;
- sample.nice = sysinfo.si_nice;
- sample.kernel = sysinfo.si_sys;
- sample.iowait = sysinfo.wait;
- sample.idle = sysinfo.si_idle;
-
- struct tbl_vmstats vmstats;
- if (table(TBL_VMSTATS, 0, &vmstats, 1, sizeof(vmstats)) != 1)
- fatal(msg.arg("TBL_VMSTATS"));
-
- sample.mtotal = vmstats.free_count + vmstats.active_count +
- vmstats.inactive_count + vmstats.wire_count;
- sample.free = vmstats.free_count;
- sample.buffers = vmstats.inactive_count; // pages not used for some time
- sample.cached = vmstats.wire_count; // kernel/driver memory
-
- struct tbl_swapinfo swapinfo;
- if (table(TBL_SWAPINFO, -1, &swapinfo, 1, sizeof(swapinfo)) != 1)
- fatal(msg.arg("TBL_SWAPINFO"));
-
- sample.stotal = swapinfo.size;
- sample.sfree = swapinfo.free;
-
#elif defined(USE_SOLARIS)
kstat_t *ksp;
@@ -441,7 +404,7 @@ inline void KSample::makeMBytes(unsigned long &v)
{
#ifdef __linux__
v /= 1024; // can it be simpler ;-)
-#elif defined (__osf__) || defined(USE_SOLARIS)
+#elif defined(USE_SOLARIS)
v /= pagesPerMB;
#endif
}
diff --git a/kicker-applets/ktimemon/sample.h b/kicker-applets/ktimemon/sample.h
index 6ebe77d..2a79ad9 100644
--- a/kicker-applets/ktimemon/sample.h
+++ b/kicker-applets/ktimemon/sample.h
@@ -80,7 +80,7 @@ private:
struct kstat_ctl *kc;
bool warned;
#endif
-#if defined(USE_SOLARIS) || defined(__osf__)
+#if defined(USE_SOLARIS)
unsigned long pagesPerMB;
#endif
Sample sample, oldSample;
diff --git a/kicker-applets/ktimemon/timemon.cpp b/kicker-applets/ktimemon/timemon.cpp
index de3d826..ccd092f 100644
--- a/kicker-applets/ktimemon/timemon.cpp
+++ b/kicker-applets/ktimemon/timemon.cpp
@@ -22,7 +22,7 @@
#include <tdelocale.h>
#include <khelpmenu.h>
#include <tdepopupmenu.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdemessagebox.h>
#include <kdebug.h>
diff --git a/konq-plugins/akregator/konqfeedicon.cpp b/konq-plugins/akregator/konqfeedicon.cpp
index a5e26e3..beaf7f1 100644
--- a/konq-plugins/akregator/konqfeedicon.cpp
+++ b/konq-plugins/akregator/konqfeedicon.cpp
@@ -35,7 +35,7 @@
#include <klibloader.h>
#include <tdemessagebox.h>
#include <tdeparts/statusbarextension.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kstandarddirs.h>
#include <kstatusbar.h>
#include <kurllabel.h>
diff --git a/konq-plugins/akregator/pluginbase.cpp b/konq-plugins/akregator/pluginbase.cpp
index 2086a1c..bada93a 100644
--- a/konq-plugins/akregator/pluginbase.cpp
+++ b/konq-plugins/akregator/pluginbase.cpp
@@ -23,7 +23,7 @@
*/
#include <kurl.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <dcopref.h>
#include <tdehtml_part.h>
#include <tdelocale.h>
diff --git a/konq-plugins/microformat/pluginbase.cpp b/konq-plugins/microformat/pluginbase.cpp
index 61d2a1f..91ad9aa 100644
--- a/konq-plugins/microformat/pluginbase.cpp
+++ b/konq-plugins/microformat/pluginbase.cpp
@@ -21,7 +21,7 @@
without including the source code for TQt in the source distribution.
*/
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <dcopref.h>
#include <tdelocale.h>
diff --git a/konq-plugins/rellinks/rellinks.tdevelop b/konq-plugins/rellinks/rellinks.tdevelop
deleted file mode 100644
index 55aa56c..0000000
--- a/konq-plugins/rellinks/rellinks.tdevelop
+++ /dev/null
@@ -1,157 +0,0 @@
-<?xml version = '1.0'?>
-<tdevelop>
- <general>
- <author>Franck Quélain</author>
- <email>shift@free.fr</email>
- <version>0.3</version>
- <projectmanagement>KDevKDEAutoProject</projectmanagement>
- <primarylanguage>C++</primarylanguage>
- <keywords>
- <keyword>C++</keyword>
- <keyword>Code</keyword>
- <keyword>Qt</keyword>
- <keyword>KDE</keyword>
- </keywords>
- <projectdirectory>../..</projectdirectory>
- <absoluteprojectpath>false</absoluteprojectpath>
- <description/>
- <ignoreparts/>
- <secondaryLanguages/>
- </general>
- <kdevautoproject>
- <general>
- <activetarget>konq_plugins/rellinks/librellinksplugin.la</activetarget>
- <useconfiguration>debug</useconfiguration>
- </general>
- <configurations>
- <optimized>
- <builddir>optimized</builddir>
- <ccompiler>GccOptions</ccompiler>
- <cxxcompiler>GppOptions</cxxcompiler>
- <f77compiler>G77Options</f77compiler>
- <cxxflags>-O2 -g0</cxxflags>
- </optimized>
- <debug>
- <configargs>--enable-debug=full --prefix=/usr/local/kde</configargs>
- <builddir>debug</builddir>
- <ccompiler>kdevgccoptions</ccompiler>
- <cxxcompiler>kdevgppoptions</cxxcompiler>
- <f77compiler>kdevg77options</f77compiler>
- <cxxflags>-O0 -g3</cxxflags>
- <topsourcedir/>
- <cppflags/>
- <ldflags/>
- <ccompilerbinary/>
- <cxxcompilerbinary/>
- <f77compilerbinary/>
- <cflags/>
- <f77flags/>
- </debug>
- </configurations>
- <make>
- <envvars>
- <envvar value="1" name="WANT_AUTOCONF_2_5" />
- <envvar value="1" name="WANT_AUTOMAKE_1_6" />
- </envvars>
- <abortonerror>false</abortonerror>
- <numberofjobs>1</numberofjobs>
- <dontact>false</dontact>
- <makebin/>
- </make>
- <run>
- <directoryradio>executable</directoryradio>
- <customdirectory>/</customdirectory>
- <mainprogram/>
- <programargs/>
- <terminal>false</terminal>
- <autocompile>true</autocompile>
- <envvars/>
- </run>
- </kdevautoproject>
- <kdevfileview>
- <groups>
- <group pattern="*.cpp;*.cxx;*.h" name="Sources" />
- <group pattern="*.ui" name="User Interface" />
- <group pattern="*.png" name="Icons" />
- <group pattern="*.po;*.ts" name="Translations" />
- <group pattern="*" name="Others" />
- <hidenonprojectfiles>false</hidenonprojectfiles>
- <hidenonlocation>false</hidenonlocation>
- </groups>
- <tree>
- <hidepatterns>*.o,*.lo,CVS</hidepatterns>
- <hidenonprojectfiles>false</hidenonprojectfiles>
- <showvcsfields>false</showvcsfields>
- </tree>
- </kdevfileview>
- <kdevdoctreeview>
- <ignoretocs>
- <toc>gtk</toc>
- <toc>gnustep</toc>
- <toc>python</toc>
- <toc>php</toc>
- <toc>perl</toc>
- </ignoretocs>
- <projectdoc>
- <userdocDir>html/</userdocDir>
- <apidocDir>html/</apidocDir>
- </projectdoc>
- <ignoreqt_xml/>
- <ignoredoxygen/>
- <ignorekdocs/>
- <ignoredevhelp/>
- </kdevdoctreeview>
- <kdevdebugger>
- <general>
- <dbgshell>libtool</dbgshell>
- <programargs/>
- <gdbpath/>
- <configGdbScript/>
- <runShellScript/>
- <runGdbScript/>
- <breakonloadinglibs>true</breakonloadinglibs>
- <separatetty>false</separatetty>
- <floatingtoolbar>false</floatingtoolbar>
- </general>
- <display>
- <staticmembers>false</staticmembers>
- <demanglenames>true</demanglenames>
- </display>
- </kdevdebugger>
- <kdevfilecreate>
- <filetypes/>
- <useglobaltypes>
- <type ext="ui" />
- <type ext="cpp" />
- <type ext="h" />
- </useglobaltypes>
- </kdevfilecreate>
- <kdevcppsupport>
- <references/>
- <codecompletion>
- <includeGlobalFunctions>true</includeGlobalFunctions>
- <includeTypes>true</includeTypes>
- <includeEnums>true</includeEnums>
- <includeTypedefs>false</includeTypedefs>
- <automaticCodeCompletion>true</automaticCodeCompletion>
- <automaticArgumentsHint>true</automaticArgumentsHint>
- <automaticHeaderCompletion>true</automaticHeaderCompletion>
- <codeCompletionDelay>250</codeCompletionDelay>
- <argumentsHintDelay>400</argumentsHintDelay>
- <headerCompletionDelay>250</headerCompletionDelay>
- </codecompletion>
- </kdevcppsupport>
- <cppsupportpart>
- <filetemplates>
- <interfacesuffix>.h</interfacesuffix>
- <implementationsuffix>.cpp</implementationsuffix>
- </filetemplates>
- </cppsupportpart>
- <kdevcvsservice>
- <recursivewhenupdate>true</recursivewhenupdate>
- <prunedirswhenupdate>true</prunedirswhenupdate>
- <createdirswhenupdate>true</createdirswhenupdate>
- <recursivewhencommitremove>true</recursivewhencommitremove>
- <revertoptions>-C</revertoptions>
- </kdevcvsservice>
-</tdevelop>
diff --git a/konq-plugins/rsync/rsyncplugin.h b/konq-plugins/rsync/rsyncplugin.h
index cb6c78b..5f1a43d 100644
--- a/konq-plugins/rsync/rsyncplugin.h
+++ b/konq-plugins/rsync/rsyncplugin.h
@@ -23,7 +23,7 @@
#include <tqstringlist.h>
#include <kurl.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdefileitem.h>
#include <klibloader.h>
#include <tdeparts/plugin.h>
diff --git a/konq-plugins/searchbar/searchbar.cpp b/konq-plugins/searchbar/searchbar.cpp
index ab20a38..842b256 100644
--- a/konq-plugins/searchbar/searchbar.cpp
+++ b/konq-plugins/searchbar/searchbar.cpp
@@ -34,7 +34,7 @@
#include <klineedit.h>
#include <tdelocale.h>
#include <kmimetype.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kprotocolinfo.h>
#include <tdeprotocolmanager.h>
#include <kstandarddirs.h>
diff --git a/konq-plugins/sidebar/metabar/metabar.kdevses b/konq-plugins/sidebar/metabar/metabar.kdevses
deleted file mode 100644
index 83dabf2..0000000
--- a/konq-plugins/sidebar/metabar/metabar.kdevses
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version = '1.0' encoding = 'UTF-8'?>
-<!DOCTYPE KDevPrjSession>
-<KDevPrjSession>
- <DocsAndViews NumberOfDocuments="8" >
- <Doc0 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/metabarwidget.cpp" >
- <View0 Type="Source" />
- </Doc0>
- <Doc1 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/metabarwidget.h" >
- <View0 line="84" Type="Source" />
- </Doc1>
- <Doc2 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/configdialog.cpp" >
- <View0 line="109" Type="Source" />
- </Doc2>
- <Doc3 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/configdialog.h" >
- <View0 line="69" Type="Source" />
- </Doc3>
- <Doc4 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/protocolplugin.cpp" >
- <View0 line="69" Type="Source" />
- </Doc4>
- <Doc5 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/defaultplugin.cpp" >
- <View0 line="343" Type="Source" />
- </Doc5>
- <Doc6 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/httpplugin.cpp" >
- <View0 line="76" Type="Source" />
- </Doc6>
- <Doc7 NumberOfViews="1" URL="file:///home/florian/metabar/metabar/src/httpplugin.h" >
- <View0 line="22" Type="Source" />
- </Doc7>
- </DocsAndViews>
- <pluginList>
- <kdevdebugger>
- <breakpointList/>
- </kdevdebugger>
- <kdevbookmarks>
- <bookmarks/>
- </kdevbookmarks>
- <kdevsubversion>
- <subversion recurseresolve="1" recurserelocate="1" recursemerge="1" recursecommit="1" base="" recursepropget="1" recurseswitch="1" recurseupdate="1" recursepropset="1" recursediff="1" recurserevert="1" forcemove="1" recursecheckout="1" forceremove="1" recurseadd="1" recurseproplist="1" forcemerge="1" />
- </kdevsubversion>
- <kdevvalgrind>
- <executable path="" params="" />
- <valgrind path="" params="" />
- <calltree path="calltree" params="" />
- <tdecachegrind path="/usr/kde/3.4/bin/tdecachegrind" />
- </kdevvalgrind>
- </pluginList>
-</KDevPrjSession>
diff --git a/konq-plugins/sidebar/metabar/metabar.tdevelop b/konq-plugins/sidebar/metabar/metabar.tdevelop
deleted file mode 100644
index 1deb045..0000000
--- a/konq-plugins/sidebar/metabar/metabar.tdevelop
+++ /dev/null
@@ -1,213 +0,0 @@
-<?xml version = '1.0'?>
-<tdevelop>
- <general>
- <author>Florian Roth</author>
- <email>florian@synatic.net</email>
- <version>0.1</version>
- <projectmanagement>KDevKDEAutoProject</projectmanagement>
- <primarylanguage>C++</primarylanguage>
- <keywords>
- <keyword>C++</keyword>
- <keyword>Code</keyword>
- <keyword>Qt</keyword>
- <keyword>KDE</keyword>
- <keyword>Kicker</keyword>
- </keywords>
- <ignoreparts/>
- <projectdirectory>.</projectdirectory>
- <absoluteprojectpath>false</absoluteprojectpath>
- <description/>
- <versioncontrol>kdevsubversion</versioncontrol>
- </general>
- <kdevautoproject>
- <general>
- <activetarget>src/konqsidebar_metabar.la</activetarget>
- <useconfiguration>debug</useconfiguration>
- </general>
- <configurations>
- <optimized>
- <builddir>optimized</builddir>
- <ccompiler>kdevgccoptions</ccompiler>
- <cxxcompiler>kdevgppoptions</cxxcompiler>
- <f77compiler>kdevg77options</f77compiler>
- <cxxflags>-O2 -g0</cxxflags>
- </optimized>
- <debug>
- <configargs>--enable-debug=full --prefix=`tde-config --prefix`</configargs>
- <builddir>debug</builddir>
- <ccompiler>kdevgccoptions</ccompiler>
- <cxxcompiler>kdevgppoptions</cxxcompiler>
- <f77compiler>kdevg77options</f77compiler>
- <cxxflags>-O0 -g3</cxxflags>
- <envvars/>
- <topsourcedir/>
- <cppflags/>
- <ldflags/>
- <ccompilerbinary/>
- <cxxcompilerbinary/>
- <f77compilerbinary/>
- <cflags/>
- <f77flags/>
- </debug>
- </configurations>
- <make>
- <envvars>
- <envvar value="1" name="WANT_AUTOCONF_2_5" />
- <envvar value="1" name="WANT_AUTOMAKE_1_6" />
- </envvars>
- <abortonerror>true</abortonerror>
- <numberofjobs>1</numberofjobs>
- <dontact>false</dontact>
- <makebin/>
- <prio>0</prio>
- </make>
- <run>
- <directoryradio>executable</directoryradio>
- <customdirectory>/</customdirectory>
- <mainprogram/>
- <programargs/>
- <terminal>false</terminal>
- <autocompile>true</autocompile>
- <envvars/>
- </run>
- </kdevautoproject>
- <kdevfileview>
- <groups>
- <group pattern="*.cpp;*.cxx;*.h" name="Sources" />
- <group pattern="*.ui" name="User Interface" />
- <group pattern="*.png" name="Icons" />
- <group pattern="*.po;*.ts" name="Translations" />
- <group pattern="*" name="Others" />
- <hidenonprojectfiles>false</hidenonprojectfiles>
- <hidenonlocation>false</hidenonlocation>
- </groups>
- <tree>
- <hidepatterns>*.o,*.lo,CVS</hidepatterns>
- <hidenonprojectfiles>false</hidenonprojectfiles>
- <showvcsfields>false</showvcsfields>
- </tree>
- </kdevfileview>
- <kdevdoctreeview>
- <ignoretocs>
- <toc>ada</toc>
- <toc>ada_bugs_gcc</toc>
- <toc>bash</toc>
- <toc>bash_bugs</toc>
- <toc>clanlib</toc>
- <toc>fortran_bugs_gcc</toc>
- <toc>gnome1</toc>
- <toc>gnustep</toc>
- <toc>gtk</toc>
- <toc>gtk_bugs</toc>
- <toc>haskell</toc>
- <toc>haskell_bugs_ghc</toc>
- <toc>java_bugs_gcc</toc>
- <toc>java_bugs_sun</toc>
- <toc>opengl</toc>
- <toc>pascal_bugs_fp</toc>
- <toc>php</toc>
- <toc>php_bugs</toc>
- <toc>perl</toc>
- <toc>perl_bugs</toc>
- <toc>python</toc>
- <toc>python_bugs</toc>
- <toc>ruby</toc>
- <toc>ruby_bugs</toc>
- <toc>sdl</toc>
- <toc>stl</toc>
- <toc>sw</toc>
- <toc>w3c-dom-level2-html</toc>
- <toc>w3c-svg</toc>
- <toc>w3c-uaag10</toc>
- <toc>wxwidgets_bugs</toc>
- </ignoretocs>
- <ignoreqt_xml>
- <toc>qmake User Guide</toc>
- </ignoreqt_xml>
- </kdevdoctreeview>
- <kdevdebugger>
- <general>
- <dbgshell>libtool</dbgshell>
- <programargs/>
- <gdbpath/>
- <configGdbScript/>
- <runShellScript/>
- <runGdbScript/>
- <breakonloadinglibs>true</breakonloadinglibs>
- <separatetty>false</separatetty>
- <floatingtoolbar>false</floatingtoolbar>
- </general>
- <display>
- <staticmembers>false</staticmembers>
- <demanglenames>true</demanglenames>
- <outputradix>10</outputradix>
- </display>
- </kdevdebugger>
- <kdevfilecreate>
- <filetypes/>
- <useglobaltypes>
- <type ext="ui" />
- <type ext="cpp" />
- <type ext="h" />
- </useglobaltypes>
- </kdevfilecreate>
- <kdevdocumentation>
- <projectdoc>
- <docsystem>Doxygen-Dokumentation</docsystem>
- <docurl>sidebar.tag</docurl>
- <usermanualurl/>
- </projectdoc>
- </kdevdocumentation>
- <substmap>
- <APPNAME>sidebar</APPNAME>
- <APPNAMELC>sidebar</APPNAMELC>
- <APPNAMESC>Sidebar</APPNAMESC>
- <APPNAMEUC>SIDEBAR</APPNAMEUC>
- <AUTHOR>Florian Roth</AUTHOR>
- <EMAIL>florian@synatic.net</EMAIL>
- <LICENSE>GPL</LICENSE>
- <LICENSEFILE>COPYING</LICENSEFILE>
- <VERSION>0.1</VERSION>
- <YEAR>2005</YEAR>
- <dest>/home/florian/sidebar</dest>
- </substmap>
- <cppsupportpart>
- <filetemplates>
- <interfacesuffix>.h</interfacesuffix>
- <implementationsuffix>.cpp</implementationsuffix>
- </filetemplates>
- </cppsupportpart>
- <kdevcppsupport>
- <codecompletion>
- <includeGlobalFunctions>true</includeGlobalFunctions>
- <includeTypes>true</includeTypes>
- <includeEnums>true</includeEnums>
- <includeTypedefs>false</includeTypedefs>
- <automaticCodeCompletion>true</automaticCodeCompletion>
- <automaticArgumentsHint>true</automaticArgumentsHint>
- <automaticHeaderCompletion>true</automaticHeaderCompletion>
- <codeCompletionDelay>250</codeCompletionDelay>
- <argumentsHintDelay>400</argumentsHintDelay>
- <headerCompletionDelay>250</headerCompletionDelay>
- </codecompletion>
- <creategettersetter>
- <prefixGet/>
- <prefixSet>set</prefixSet>
- <prefixVariable>m_,_</prefixVariable>
- <parameterName>theValue</parameterName>
- <inlineGet>true</inlineGet>
- <inlineSet>true</inlineSet>
- </creategettersetter>
- <references/>
- <designerintegration>
- <tqtdesigner>
- <implementation class="ThemeEditor" path="src/editor/themeeditor.ui" implementationpath="src/editor/themeeditor.h" />
- <implementation class="ThemeEditor" path="src/editor/themeeditorui.ui" implementationpath="src/editor/themeeditor.h" />
- </tqtdesigner>
- </designerintegration>
- </kdevcppsupport>
- <ctagspart>
- <customArguments/>
- <customTagfilePath/>
- </ctagspart>
-</tdevelop>
diff --git a/ksig/ksig.spec b/ksig/ksig.spec
deleted file mode 100644
index bb8c0e7..0000000
--- a/ksig/ksig.spec
+++ /dev/null
@@ -1,45 +0,0 @@
-%define distversion %( perl -e '$_=\<\>;/(\\d+)\\.(\\d)\\.?(\\d)?/; print "$1$2".($3||0)' /etc/*-release)
-Name: ksmssend
-Summary: %{name} -- A frontend to smssend for KDE
-Version: 3.0.8
-Release: %{_vendor}_%{distversion}
-Copyright: GPL
-Group: X11/KDE/Utilities
-Source: ftp://ftp.kde.org/pub/kde/unstable/apps/utils/%{name}-%{version}.tar.gz
-Packager: ian reinhart geiser <geiseri@kde.org>
-BuildRoot: /tmp/%{name}-%{version}
-Prefix: `tde-config --prefix`
-
-%description
-A signature management utility. This version is compiled for %{_vendor} %{distversion}.
-
-%prep
-rm -rf $RPM_BUILD_ROOT
-%setup -n %{name}-%{version}
-WANT_AUTOCONF_2_5=1 make -f admin/Makefile.common
-CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure \
- --disable-debug --enable-final --prefix=%{prefix} \
- -with-install-root=$RPM_BUILD_ROOT
-
-%build
-# Setup for parallel builds
-numprocs=`egrep -c ^cpu[0-9]+ /proc/stat || :`
-if [ "$numprocs" = "0" ]; then
- numprocs=1
-fi
-
-make -j$numprocs
-
-%install
-make prefix=$RPM_BUILD_ROOT%{prefix} install
-cd $RPM_BUILD_ROOT
-find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > $RPM_BUILD_DIR/%{name}-master.list
-find . -type f -o -type l | sed 's|^\.||' >> $RPM_BUILD_DIR/%{name}-master.list
-
-%clean
-#rm -rf $RPM_BUILD_ROOT
-rm -rf $RPM_BUILD_DIR/%{name}-%{version}
-rm -rf $RPM_BUILD_DIR/%{name}-master.list
-
-%files -f ../%{name}-master.list
-
diff --git a/noatun-plugins/dub/dub.kdevprj b/noatun-plugins/dub/dub.kdevprj
deleted file mode 100644
index 8bef2aa..0000000
--- a/noatun-plugins/dub/dub.kdevprj
+++ /dev/null
@@ -1,198 +0,0 @@
-[AUTHORS]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[BUGS]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[COPYING]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[ChangeLog]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[Config for BinMakefileAm]
-addcxxflags=
-bin_program=dub
-cflags=
-cppflags=
-cxxflags=\s-O0 -g3 -Wall
-ldadd=\s-ltdefile -ltdeui -ltdecore -lqt
-ldflags=\s \s
-
-[General]
-AMChanged=false
-author=Eray Ozkural (exa)
-configure_args=\s--build=i386-linux --host=i386-linux --target=i386-linux --prefix=/usr/local/trinity --with-qt-dir=/usr/local/qt --enable-debug --disable-fast-perl --disable-rpath
-email=erayo@cs.bilkent.edu.tr
-kdevprj_version=1.3
-lfv_open_groups=Headers,Sources,User Interface
-make_options=\s-j1
-makefiles=Makefile.am,dub/Makefile.am
-modifyMakefiles=true
-project_name=Dub
-project_type=kde2_normal
-sgml_file=/home/exa/code/projects/kde/dub/doc/en/index.docbook
-short_info=Dub is a playlist plugin for noatun
-sub_dir=dub/
-version=0.1
-version_control=CVS
-workspace=1
-
-[INSTALL]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[LFV Groups]
-GNU=AUTHORS,COPYING,ChangeLog,INSTALL,README,TODO,NEWS
-Headers=*.h,*.hh,*.hxx,*.hpp,*.H
-Others=*
-Sources=*.cpp,*.c,*.cc,*.C,*.cxx,*.ec,*.ecpp,*.lxx,*.l++,*.ll,*.l
-Translations=*.po
-User Interface=*.kdevdlg,*.ui,*.rc
-groups=Headers,Sources,User Interface,Translations,GNU,Others
-
-[Makefile.am]
-files=dub.kdevprj,AUTHORS,COPYING,ChangeLog,INSTALL,README,TODO,BUGS
-sub_dirs=dub
-type=normal
-
-[README]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[TODO]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[dub.kdevprj]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[dub/BUGS]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[dub/Makefile.am]
-files=dub/main.cpp,dub/dub.cpp,dub/dub.h,dub/dubdoc.cpp,dub/dubdoc.h,dub/dubview.cpp,dub/dubview.h,dub/dubui.rc,dub/dub.plugin,dub/fileselectorwidget.cpp,dub/fileselectorwidget.h,dub/dubplaylist.cpp,dub/dubplaylist.h,dub/dubplaylistitem.cpp,dub/dubplaylistitem.h,dub/BUGS,dub/dubprefs.ui
-sharedlib_LDFLAGS=
-sharedlib_rootname=noatundub
-sub_dirs=
-type=shared_library
-
-[dub/dub.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-
-[dub/dub.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-
-[dub/dub.plugin]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[dub/dubdoc.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-
-[dub/dubdoc.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-
-[dub/dubplaylist.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-
-[dub/dubplaylist.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-
-[dub/dubplaylistitem.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-
-[dub/dubplaylistitem.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-
-[dub/dubprefs.ui]
-dist=true
-install=false
-install_location=
-type=SOURCE
-
-[dub/dubui.rc]
-dist=true
-install=false
-install_location=
-type=DATA
-
-[dub/dubview.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-
-[dub/dubview.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-
-[dub/fileselectorwidget.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
-
-[dub/fileselectorwidget.h]
-dist=true
-install=false
-install_location=
-type=HEADER
-
-[dub/main.cpp]
-dist=true
-install=false
-install_location=
-type=SOURCE
diff --git a/noatun-plugins/nexscope/noatunplugin.cpp b/noatun-plugins/nexscope/noatunplugin.cpp
index 5c27cef..a9659bf 100644
--- a/noatun-plugins/nexscope/noatunplugin.cpp
+++ b/noatun-plugins/nexscope/noatunplugin.cpp
@@ -1,7 +1,7 @@
#include "nex.h"
#include "noatunplugin.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdemessagebox.h>
#include <tdelocale.h>
#include <kstandarddirs.h>
diff --git a/noatun-plugins/nexscope/noatunplugin.h b/noatun-plugins/nexscope/noatunplugin.h
index 33a6e15..11a122e 100644
--- a/noatun-plugins/nexscope/noatunplugin.h
+++ b/noatun-plugins/nexscope/noatunplugin.h
@@ -1,7 +1,7 @@
#ifndef NEXPLUG_H
#define NEXPLUG_H
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <noatun/plugin.h>
class NexPlugin : public TQObject, public Plugin
diff --git a/noatun-plugins/synaescope/synaescope.h b/noatun-plugins/synaescope/synaescope.h
index 1659b62..c5c44f2 100644
--- a/noatun-plugins/synaescope/synaescope.h
+++ b/noatun-plugins/synaescope/synaescope.h
@@ -9,7 +9,7 @@
#define SYNABLEH_H
#include "syna.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
class SynaePrefs;
class TDEProcess;
diff --git a/noatun-plugins/tippercanoe/synaescope.cpp b/noatun-plugins/tippercanoe/synaescope.cpp
index dfe6b17..a3c4219 100644
--- a/noatun-plugins/tippercanoe/synaescope.cpp
+++ b/noatun-plugins/tippercanoe/synaescope.cpp
@@ -11,7 +11,7 @@
#include <kiconloader.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kstandarddirs.h>
#include <tqframe.h>
#include <tqregexp.h>
diff --git a/noatun-plugins/tippercanoe/synaescope.h b/noatun-plugins/tippercanoe/synaescope.h
index 84701c3..d8ff60e 100644
--- a/noatun-plugins/tippercanoe/synaescope.h
+++ b/noatun-plugins/tippercanoe/synaescope.h
@@ -12,7 +12,7 @@
#include <noatun/conversion.h>
#include "syna.h"
#include <noatun/plugin.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqwidget.h>
#include <qxembed.h>
diff --git a/noatun-plugins/tyler/tyler.cpp b/noatun-plugins/tyler/tyler.cpp
index d50bc30..7213eb3 100644
--- a/noatun-plugins/tyler/tyler.cpp
+++ b/noatun-plugins/tyler/tyler.cpp
@@ -7,7 +7,7 @@
#include <kiconloader.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kstandarddirs.h>
#include <noatun/app.h>
#include <kdebug.h>
diff --git a/noatun-plugins/tyler/tyler.h b/noatun-plugins/tyler/tyler.h
index 95f3a7c..f3d1792 100644
--- a/noatun-plugins/tyler/tyler.h
+++ b/noatun-plugins/tyler/tyler.h
@@ -6,7 +6,7 @@
#include <noatun/conversion.h>
#include <noatun/plugin.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqwidget.h>
class Tyler : public TQObject, public StereoScope, public Plugin
diff --git a/tdefile-plugins/html/tdefile_html.cpp b/tdefile-plugins/html/tdefile_html.cpp
index be6f24c..a06ad07 100644
--- a/tdefile-plugins/html/tdefile_html.cpp
+++ b/tdefile-plugins/html/tdefile_html.cpp
@@ -23,7 +23,7 @@
#include <kgenericfactory.h>
#include <kmimetype.h>
#include <kurl.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <kdebug.h>
#include <tqcstring.h>
#include <tqfile.h>