diff options
author | Andreas Proschofsky <suka@gentoo.org> | 2006-01-21 21:00:42 +0000 |
---|---|---|
committer | Andreas Proschofsky <suka@gentoo.org> | 2006-01-21 21:00:42 +0000 |
commit | 19202626dd487d4744a6f7f98e8f373cf104f4bc (patch) | |
tree | 17fb024831f600ab76f80933ae8804b553a20bc8 /app-office/oooqs | |
parent | Stable on ppc; bug #112742. (diff) | |
download | historical-19202626dd487d4744a6f7f98e8f373cf104f4bc.tar.gz historical-19202626dd487d4744a6f7f98e8f373cf104f4bc.tar.bz2 historical-19202626dd487d4744a6f7f98e8f373cf104f4bc.zip |
cleanup
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'app-office/oooqs')
-rw-r--r-- | app-office/oooqs/Manifest | 13 | ||||
-rw-r--r-- | app-office/oooqs/files/digest-oooqs-2.0.3-r1 | 1 | ||||
-rw-r--r-- | app-office/oooqs/files/fixxooo.patch | 82 | ||||
-rw-r--r-- | app-office/oooqs/oooqs-2.0.3-r1.ebuild | 32 |
4 files changed, 0 insertions, 128 deletions
diff --git a/app-office/oooqs/Manifest b/app-office/oooqs/Manifest index e64bdbc0b916..10c703a0e4bd 100644 --- a/app-office/oooqs/Manifest +++ b/app-office/oooqs/Manifest @@ -1,20 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 d2a17f5db506b6f48f49fc32257a8e62 ChangeLog 2518 MD5 b96223d4f6f3f644e5a345c12982ab72 files/digest-oooqs-2.0.3 63 -MD5 b96223d4f6f3f644e5a345c12982ab72 files/digest-oooqs-2.0.3-r1 63 MD5 b96223d4f6f3f644e5a345c12982ab72 files/digest-oooqs-2.0.3-r2 63 -MD5 d5a62d4399d509af355598951028ec8f files/fixxooo.patch 3350 MD5 700208645159ca465baafc9e22eacde7 files/oooqs-20.patch 2256 MD5 d89f6d524fdd9cce162c5959fa9fed1b metadata.xml 269 -MD5 f3855b265eefcd0fa1f90489b077cf74 oooqs-2.0.3-r1.ebuild 971 MD5 6d26b6f7360070119788d19ccf962e1b oooqs-2.0.3-r2.ebuild 622 MD5 1b4a6eb83c4267e11b9089d34206029b oooqs-2.0.3.ebuild 664 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2-ecc0.1.6 (GNU/Linux) - -iD8DBQFDzT+pKRy60XGEcJIRAiP/AJ9acgY+0kPW7nmUt1kuXRndCKxTUgCeOTDr -CZiAoVLAeEtAwCls259hyk8= -=PBhx ------END PGP SIGNATURE----- diff --git a/app-office/oooqs/files/digest-oooqs-2.0.3-r1 b/app-office/oooqs/files/digest-oooqs-2.0.3-r1 deleted file mode 100644 index 5d78f6742d54..000000000000 --- a/app-office/oooqs/files/digest-oooqs-2.0.3-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 5d401aa7250f80734d785d4c286f635b oooqs-2.0.3.tar.gz 584849 diff --git a/app-office/oooqs/files/fixxooo.patch b/app-office/oooqs/files/fixxooo.patch deleted file mode 100644 index a1c2d609b14e..000000000000 --- a/app-office/oooqs/files/fixxooo.patch +++ /dev/null @@ -1,82 +0,0 @@ -diff -ru oooqs-2.0.3/src/oooqs.cpp oooqs-2.0.3-fixed/src/oooqs.cpp ---- oooqs-2.0.3/src/oooqs.cpp 2005-06-01 20:08:30.000000000 +0300 -+++ oooqs-2.0.3-fixed/src/oooqs.cpp 2005-06-01 20:07:55.000000000 +0300 -@@ -3,6 +3,7 @@ - */ - - #include <qdir.h> -+#include <qfile.h> - #include <qmap.h> - - #include <kaboutdata.h> -@@ -44,21 +45,36 @@ - */ - KPopupMenu* menu = contextMenu(); - -- ( new KAction( i18n( "Textdocument" ), -- "ooo_writer", 0, this, -- SLOT( startWriter() ), this ) ) ->plug( menu ); -- ( new KAction( i18n( "Spreadsheet" ), -- "ooo_calc", 0, this, -- SLOT( startCalc() ), this ) ) ->plug( menu ); -- ( new KAction( i18n( "Presentation" ), -- "ooo_impress", 0, this, -- SLOT( startImpress() ), this ) ) ->plug( menu ); -- ( new KAction( i18n( "Drawing" ), -- "ooo_draw", 0, this, -- SLOT( startDraw() ), this ) ) ->plug( menu ); -- ( new KAction( i18n( "From Template" ), -- "wizard", 0, this, -- SLOT( startTemplate() ), this ) ) ->plug( menu ); -+ if ( QFile::exists( QDir::homeDirPath() + QDir::separator() + ".xversionrc" ) ) { -+ ( new KAction( i18n( "Textdocument" ), -+ "ximian-openoffice-writer", 0, this, -+ SLOT( startWriter() ), this ) ) ->plug( menu ); -+ ( new KAction( i18n( "Spreadsheet" ), -+ "ximian-openoffice-calc", 0, this, -+ SLOT( startCalc() ), this ) ) ->plug( menu ); -+ ( new KAction( i18n( "Presentation" ), -+ "ximian-openoffice-impress", 0, this, -+ SLOT( startImpress() ), this ) ) ->plug( menu ); -+ ( new KAction( i18n( "Drawing" ), -+ "ximian-openoffice-draw", 0, this, -+ SLOT( startDraw() ), this ) ) ->plug( menu ); -+ } else { -+ ( new KAction( i18n( "Textdocument" ), -+ "ooo_writer", 0, this, -+ SLOT( startWriter() ), this ) ) ->plug( menu ); -+ ( new KAction( i18n( "Spreadsheet" ), -+ "ooo_calc", 0, this, -+ SLOT( startCalc() ), this ) ) ->plug( menu ); -+ ( new KAction( i18n( "Presentation" ), -+ "ooo_impress", 0, this, -+ SLOT( startImpress() ), this ) ) ->plug( menu ); -+ ( new KAction( i18n( "Drawing" ), -+ "ooo_draw", 0, this, -+ SLOT( startDraw() ), this ) ) ->plug( menu ); -+ } -+ ( new KAction( i18n( "From Template" ), -+ "wizard", 0, this, -+ SLOT( startTemplate() ), this ) ) ->plug( menu ); - menu->insertSeparator(); - ( new KAction( i18n( "Open Document" ), - "fileopen", 0, this, -@@ -92,9 +108,15 @@ - 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 ); -+ if ( QFile::exists( QDir::homeDirPath() + QDir::separator() + ".xversionrc" ) ) { -+ oooConfig = new KSimpleConfig( -+ QDir::homeDirPath() + QDir::separator() -+ + ".xversionrc", true ); -+ } else { -+ oooConfig = new KSimpleConfig( -+ QDir::homeDirPath() + QDir::separator() -+ + ".sversionrc", true ); -+ } - oooConfig->setGroup( "Versions" ); - versions = oooConfig->entryMap( "Versions" ); - /** diff --git a/app-office/oooqs/oooqs-2.0.3-r1.ebuild b/app-office/oooqs/oooqs-2.0.3-r1.ebuild deleted file mode 100644 index 7cd0ce080fb6..000000000000 --- a/app-office/oooqs/oooqs-2.0.3-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/oooqs/oooqs-2.0.3-r1.ebuild,v 1.2 2005/01/01 15:37:51 eradicator Exp $ - -inherit kde eutils - -need-kde 3 - -DESCRIPTION="OpenOffice.org Quickstarter, runs in the KDE SystemTray" -HOMEPAGE="http://segfaultskde.berlios.de/index.php" -SRC_URI="http://download.berlios.de/segfaultskde/${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~x86 ~sparc ~amd64 ~ppc" -IUSE="" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/fixxooo.patch -} - -pkg_postinst() -{ - einfo "If upgrading from version 2.0, please remove the oooqs.desktop file from" - einfo "your "Autostart" directory (linked in the "Goto" menu in Konqueror)." - einfo - einfo "If you want to use this for openoffice-ximian and already had it installed" - einfo "for vanilla openoffice.org before, make sure to delete the old config file in" - einfo "~/.kde/share/config/oooqsrc" - -} |