diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2004-02-05 01:23:10 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2004-02-05 01:23:10 +0000 |
commit | 38a92d46fecb74d6b431e72fb051d4852ae09192 (patch) | |
tree | 9175166a8d864537bf06b6192f8990ba59164986 /x11/kdebase4-workspace/files/patch-kcontrol-arts.cpp | |
parent | baa573cc0f3c67d02f961def5da5d4b3fccc5e54 (diff) | |
download | freebsd-ports-38a92d46fecb74d6b431e72fb051d4852ae09192.zip |
Update to KDE 3.2.0
Important changes:
==================
- Kmail and knode have been moved from kdenetwork to kdepim. This
means you will have to install kdepim if you want to continue using
kmail or knode. This is to ease integration with korganizer, in
the new 'Kontact' application.
- The arabic translations for KDE and KOffice have been moved from
misc to the arabic category.
- There is a new module called kdeaccessibility in the accessibility
category. It contains a few utilities for disabled users like a
magnification lens and a text-to-speech frontend.
- In KDM, you need to select the 'CUSTOM' session profile in order
to have your .xsession executed. This is particularly important if
you're using the aegypten tools
(http://freebsd.kde.org/howtos/aegypten-kmail.php).
- We have started making more parts of the ports optional. In kdepim,
both Kandy and KPilot can be turned off with ports-knobs. This
process will continue in the 3.2 series.
Diffstat (limited to 'x11/kdebase4-workspace/files/patch-kcontrol-arts.cpp')
-rw-r--r-- | x11/kdebase4-workspace/files/patch-kcontrol-arts.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11/kdebase4-workspace/files/patch-kcontrol-arts.cpp b/x11/kdebase4-workspace/files/patch-kcontrol-arts.cpp new file mode 100644 index 000000000000..e0e5a92ce25d --- /dev/null +++ b/x11/kdebase4-workspace/files/patch-kcontrol-arts.cpp @@ -0,0 +1,39 @@ +Index: kcontrol/arts/arts.cpp +=================================================================== +RCS file: /home/kde/kdebase/kcontrol/arts/arts.cpp,v +retrieving revision 1.100 +diff -u -3 -p -r1.100 arts.cpp +--- kcontrol/arts/arts.cpp 8 Nov 2003 23:43:47 -0000 1.100 ++++ kcontrol/arts/arts.cpp 29 Jan 2004 11:59:29 -0000 +@@ -51,6 +51,7 @@ + //#include <kparts/componentfactory.h> + //#include "midi.h" + #include "arts.h" ++#include <arts/artsversion.h> + + extern "C" { + void init_arts(); +@@ -601,7 +602,11 @@ void init_arts() + config->setGroup("Arts"); + bool startServer = config->readBoolEntry("StartServer",true); + bool startRealtime = config->readBoolEntry("StartRealtime",true); ++#if ARTS_MAJOR_VERSION >= 1 && ARTS_MINOR_VERSION >= 2 + QString args = config->readEntry("Arguments","-F 10 -S 4096 -s 60 -m artsmessage -c drkonqi -l 3 -f"); ++#else ++ QString args = config->readEntry("Arguments","-F 10 -S 4096 -s 60 -m artsmessage -l 3 -f"); ++#endif + + delete config; + +@@ -652,7 +657,11 @@ QString KArtsModule::createArgs(bool net + args += QChar(' ') + addOptions; + + args += QString::fromLatin1(" -m artsmessage"); ++ ++#if ARTS_MAJOR_VERSION >= 1 && ARTS_MINOR_VERSION >= 2 + args += QString::fromLatin1(" -c drkonqi"); ++#endif ++ + args += QString::fromLatin1(" -l 3"); + args += QString::fromLatin1(" -f"); + |