From 78c6721d13baca08a0f78e9e47e3eb75d289baae Mon Sep 17 00:00:00 2001 From: Andreas Proschofsky Date: Fri, 7 Jul 2006 20:07:37 +0000 Subject: clean out old and heavily crappy version (Portage version: 2.1.1_pre2-r4) --- app-office/oooqs/files/digest-oooqs-2.0.3-r2 | 3 - app-office/oooqs/files/oooqs-20.patch | 86 ---------------------------- 2 files changed, 89 deletions(-) delete mode 100644 app-office/oooqs/files/digest-oooqs-2.0.3-r2 delete mode 100644 app-office/oooqs/files/oooqs-20.patch (limited to 'app-office/oooqs/files') 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 - - #include "oooqs.h" --#include "oooqsselectordialog.h" - - OOoQs::OOoQs() - : KSystemTray( 0, "OOoQs" ), - _quickProcess( 0 ), _okToRun( true ) { - - QMap 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 -- -- 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* ) ) ); - /** -- cgit v1.2.3-65-gdbad