summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregorio Guidi <greg_g@gentoo.org>2005-08-27 09:58:32 +0000
committerGregorio Guidi <greg_g@gentoo.org>2005-08-27 09:58:32 +0000
commit9b939621cd18e1dd2123a1b71999a5a58388a532 (patch)
treee29a6b69b521757399bbcdf246de859d35b54178 /app-office/koffice-libs
parentKOffice 1.4.1 stable on x86. (diff)
downloadgentoo-2-9b939621cd18e1dd2123a1b71999a5a58388a532.tar.gz
gentoo-2-9b939621cd18e1dd2123a1b71999a5a58388a532.tar.bz2
gentoo-2-9b939621cd18e1dd2123a1b71999a5a58388a532.zip
Remove old ebuilds.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-office/koffice-libs')
-rw-r--r--app-office/koffice-libs/files/digest-koffice-libs-1.4.0-r11
-rw-r--r--app-office/koffice-libs/files/koffice-1.4.0-save.patch15
-rw-r--r--app-office/koffice-libs/koffice-libs-1.4.0-r1.ebuild65
3 files changed, 0 insertions, 81 deletions
diff --git a/app-office/koffice-libs/files/digest-koffice-libs-1.4.0-r1 b/app-office/koffice-libs/files/digest-koffice-libs-1.4.0-r1
deleted file mode 100644
index aada0edc41ee..000000000000
--- a/app-office/koffice-libs/files/digest-koffice-libs-1.4.0-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 3e6fd9f92024de68e5879c22d02a33c5 koffice-1.4.0.tar.bz2 19730186
diff --git a/app-office/koffice-libs/files/koffice-1.4.0-save.patch b/app-office/koffice-libs/files/koffice-1.4.0-save.patch
deleted file mode 100644
index 40772ef93525..000000000000
--- a/app-office/koffice-libs/files/koffice-1.4.0-save.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -Nur koffice-1.4.0.orig/lib/kofficecore/koDocument.cc koffice-1.4.0/lib/kofficecore/koDocument.cc
---- koffice-1.4.0.orig/lib/kofficecore/koDocument.cc 2005-06-15 15:39:33.000000000 +0200
-+++ koffice-1.4.0/lib/kofficecore/koDocument.cc 2005-06-22 14:58:03.000000000 +0200
-@@ -354,11 +354,6 @@
- bool KoDocument::saveFile()
- {
- kdDebug(30003) << "KoDocument::saveFile() doc='" << url().url() <<"'"<< endl;
-- if ( !kapp->inherits( "KoApplication" ) )
-- {
-- d->lastErrorMessage = i18n( "Internal error: not a KOffice application, saving not allowed." );
-- return false;
-- }
-
- // Save it to be able to restore it after a failed save
- const bool wasModified = isModified ();
diff --git a/app-office/koffice-libs/koffice-libs-1.4.0-r1.ebuild b/app-office/koffice-libs/koffice-libs-1.4.0-r1.ebuild
deleted file mode 100644
index 7b8204cc13bf..000000000000
--- a/app-office/koffice-libs/koffice-libs-1.4.0-r1.ebuild
+++ /dev/null
@@ -1,65 +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/koffice-libs/koffice-libs-1.4.0-r1.ebuild,v 1.3 2005/07/04 23:49:23 weeve Exp $
-
-MAXKOFFICEVER=${PV}
-KMNAME=koffice
-KMMODULE=lib
-inherit kde-meta eutils
-
-DESCRIPTION="Shared KOffice libraries."
-HOMEPAGE="http://www.koffice.org/"
-LICENSE="GPL-2 LGPL-2"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc"
-
-RDEPEND="$(deprange $PV $MAXKOFFICEVER app-office/koffice-data)"
-
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- dev-util/pkgconfig"
-
-KMEXTRA="
- interfaces/
- plugins/
- tools/
- filters/olefilters/
- filters/xsltfilter/
- filters/generic_wrapper/
- kounavail/
- doc/api/
- doc/koffice/
- doc/thesaurus/"
-
-KMEXTRACTONLY="
- kchart/kdchart/"
-
-need-kde 3.3
-
-src_unpack() {
- kde-meta_src_unpack unpack
-
- # Fix problem when saving from koshell. Applied for 1.4.1.
- epatch "${FILESDIR}/koffice-1.4.0-save.patch"
-
- # Force the compilation of libkopainter.
- sed -i 's:$(KOPAINTERDIR):kopainter:' $S/lib/Makefile.am
-
- kde-meta_src_unpack makefiles
-}
-
-src_compile() {
- kde-meta_src_compile
- if use doc; then
- make apidox || die
- fi
-}
-
-src_install() {
- kde-meta_src_install
- if use doc; then
- make DESTDIR=${D} install-apidox || die
- fi
-}