summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Proschofsky <suka@gentoo.org>2006-07-07 20:07:37 +0000
committerAndreas Proschofsky <suka@gentoo.org>2006-07-07 20:07:37 +0000
commit78c6721d13baca08a0f78e9e47e3eb75d289baae (patch)
treedf6edd4e9ae743d6d4e5eb0b5787c3d4f2e892f2 /app-office/oooqs/files
parentMarked ppc stable for bug #128691. (diff)
downloadgentoo-2-78c6721d13baca08a0f78e9e47e3eb75d289baae.tar.gz
gentoo-2-78c6721d13baca08a0f78e9e47e3eb75d289baae.tar.bz2
gentoo-2-78c6721d13baca08a0f78e9e47e3eb75d289baae.zip
clean out old and heavily crappy version
(Portage version: 2.1.1_pre2-r4)
Diffstat (limited to 'app-office/oooqs/files')
-rw-r--r--app-office/oooqs/files/digest-oooqs-2.0.3-r23
-rw-r--r--app-office/oooqs/files/oooqs-20.patch86
2 files changed, 0 insertions, 89 deletions
diff --git a/app-office/oooqs/files/digest-oooqs-2.0.3-r2 b/app-office/oooqs/files/digest-oooqs-2.0.3-r2
deleted file mode 100644
index de68b0eeb5c7..000000000000
--- a/app-office/oooqs/files/digest-oooqs-2.0.3-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 5d401aa7250f80734d785d4c286f635b oooqs-2.0.3.tar.gz 584849
-RMD160 8c6ad3c82038e620bbd9f9577bb26343cd2f3826 oooqs-2.0.3.tar.gz 584849
-SHA256 d3585c669f9a081a5bc84dd1df8af1e7c53deaad0ee765b747e3d23874943e9a oooqs-2.0.3.tar.gz 584849
diff --git a/app-office/oooqs/files/oooqs-20.patch b/app-office/oooqs/files/oooqs-20.patch
deleted file mode 100644
index 7f62486a6672..000000000000
--- a/app-office/oooqs/files/oooqs-20.patch
+++ /dev/null
@@ -1,86 +0,0 @@
---- src/oooqs.cpp
-+++ src/oooqs.cpp
-@@ -18,17 +18,12 @@
- #include <ksimpleconfig.h>
-
- #include "oooqs.h"
--#include "oooqsselectordialog.h"
-
- OOoQs::OOoQs()
- : KSystemTray( 0, "OOoQs" ),
- _quickProcess( 0 ), _okToRun( true ) {
-
- QMap<QString, QString> versions;
--
-- KConfig* oooConfig = 0;
--
-- OOoQsSelectorDialog* selector = 0;
-
- /**
- Get the global config-object.
-@@ -86,51 +81,11 @@
- Read the configuration.
- */
- _autostart->setChecked( _config->readBoolEntry( "Autostart", true ) );
-- _exec = _config->readEntry( "Exec" );
--
-- /**
-- Try to autodetect settings if they aren't found in our own config.
-- */
-- if ( _exec.length() < 2 ) {
-- oooConfig = new KSimpleConfig(
-- QDir::homeDirPath() + QDir::separator()
-- + ".sversionrc", true );
-- oooConfig->setGroup( "Versions" );
-- versions = oooConfig->entryMap( "Versions" );
-- /**
-- If there are more than one possible configurations,
-- ask the user which one to use.
-- */
-- if ( versions.count() > 1 ) {
-- selector = new OOoQsSelectorDialog( versions, this );
-- if ( selector->exec() == QDialog::Accepted ) {
-- _exec = versions[ selector->selected() ];
-- _exec = _exec.section( ':', 1 );
-- _exec += QDir::separator();
-- _exec += "soffice";
-- _exec = QDir::cleanDirPath( _exec );
-- _config->writeEntry( "Exec", _exec );
-- } else {
-- /**
-- Kill the app here if the user hadn't chosen a configuration.
-- */
-- _okToRun = false;
-- return ;
-- }
-- /**
-- Added by Sergio Visinoni <piffio@piffio.org>
--
-- I (Christian) simply forgot it (shame on me!)
-- */
-- } else {
-- _exec = versions.begin().data();
-- _exec = _exec.section( ':', 1 );
-- _exec += QDir::separator();
-- _exec += "soffice";
-- _exec = QDir::cleanDirPath( _exec );
-- _config->writeEntry( "Exec", _exec );
-- }
-- }
-+
-+ /**
-+ Fixed place for the exec now
-+ */
-+ _exec += "/usr/bin/ooffice2";
-
- /**
- Make sure that OpenOffice.org is killed
-@@ -182,7 +137,7 @@
- */
- process->setExecutable( _exec );
- ( *process ) << "-plugin";
-- ( *process ) << "-quickstart";
-+ ( *process ) << "-nologo" << "-nodefault";
- connect ( process, SIGNAL( processExited( KProcess* ) ),
- this, SLOT( restartQuickInstance( KProcess* ) ) );
- /**