summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2005-01-17 14:40:06 +0000
committerDan Armak <danarmak@gentoo.org>2005-01-17 14:40:06 +0000
commit4e6c1be7f1501caf3c6517b3725d8c809d1d7de9 (patch)
tree933c626f3aaf089df062362770c83af6e3cc0553 /kde-base
parentFixed file collision with kdelibs. (Manifest recommit) (diff)
downloadgentoo-2-4e6c1be7f1501caf3c6517b3725d8c809d1d7de9.tar.gz
gentoo-2-4e6c1be7f1501caf3c6517b3725d8c809d1d7de9.tar.bz2
gentoo-2-4e6c1be7f1501caf3c6517b3725d8c809d1d7de9.zip
removing kde 3.1.x
(Portage version: 2.0.51-r13)
Diffstat (limited to 'kde-base')
-rw-r--r--kde-base/kdelibs/files/digest-kdelibs-3.1.5-r11
-rw-r--r--kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch19
-rw-r--r--kde-base/kdelibs/files/post-3.1.5-kdelibs-kapplication.patch11
-rw-r--r--kde-base/kdelibs/files/post-3.1.5-kdelibs-ktelnetservice.patch29
-rw-r--r--kde-base/kdelibs/kdelibs-3.1.5-r1.ebuild62
5 files changed, 0 insertions, 122 deletions
diff --git a/kde-base/kdelibs/files/digest-kdelibs-3.1.5-r1 b/kde-base/kdelibs/files/digest-kdelibs-3.1.5-r1
deleted file mode 100644
index c5a8b320325e..000000000000
--- a/kde-base/kdelibs/files/digest-kdelibs-3.1.5-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 6e33c0f7c124e77d807da0ddb537b369 kdelibs-3.1.5.tar.bz2 10549741
diff --git a/kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch b/kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch
deleted file mode 100644
index 930776d23a51..000000000000
--- a/kde-base/kdelibs/files/kdelibs-3.1.5-kjs-alphaev6-gcc3-workaround.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- kjs/ustring.cpp.orig 2003-01-23 15:49:49.000000000 -0500
-+++ kjs/ustring.cpp 2003-01-27 19:49:00.000000000 -0500
-@@ -421,8 +421,15 @@
- {
- double d = toDouble();
- bool b = true;
-+ /* useless temporary variable to work around gcc optimization bug */
-+ bool nan = false;
-
-- if (isNaN(d) || d != static_cast<unsigned long>(d)) {
-+ if (isNaN(d)) {
-+ d = 0;
-+ nan = true;
-+ }
-+
-+ if (nan || d != static_cast<unsigned long>(d)) {
- b = false;
- d = 0;
- }
diff --git a/kde-base/kdelibs/files/post-3.1.5-kdelibs-kapplication.patch b/kde-base/kdelibs/files/post-3.1.5-kdelibs-kapplication.patch
deleted file mode 100644
index 5faf96350812..000000000000
--- a/kde-base/kdelibs/files/post-3.1.5-kdelibs-kapplication.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- kdecore/kapplication.cpp 11 Jan 2004 15:45:02 -0000 1.545.2.21
-+++ kdecore/kapplication.cpp 14 May 2004 12:27:23 -0000
-@@ -1907,7 +1907,7 @@ void KApplication::invokeMailer(const QS
-
- if (command.isEmpty() || command == QString::fromLatin1("kmail")
- || command.right(6) == "/kmail")
-- command = QString::fromLatin1("kmail --composer -s %s -c %c -b %b --body %B --attach %A %t");
-+ command = QString::fromLatin1("kmail --composer -s %s -c %c -b %b --body %B --attach %A -- %t");
-
- // TODO: Take care of the preferred terminal app (instead of hardcoding
- // Konsole), this will probably require a rewrite of the configurable
diff --git a/kde-base/kdelibs/files/post-3.1.5-kdelibs-ktelnetservice.patch b/kde-base/kdelibs/files/post-3.1.5-kdelibs-ktelnetservice.patch
deleted file mode 100644
index af7855465949..000000000000
--- a/kde-base/kdelibs/files/post-3.1.5-kdelibs-ktelnetservice.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Index: ktelnetservice.cpp
-===================================================================
-RCS file: /home/kde/kdelibs/kio/misc/ktelnetservice.cpp,v
-retrieving revision 1.3.2.2
-diff -u -p -r1.3.2.2 ktelnetservice.cpp
---- kio/misc/ktelnetservice.cpp 31 Mar 2003 09:13:55 -0000 1.3.2.2
-+++ kio/misc/ktelnetservice.cpp 13 May 2004 15:12:00 -0000
-@@ -68,10 +68,19 @@ int main(int argc, char **argv)
- cmd << url.user();
- }
-
-+ QString host;
- if (!url.host().isEmpty())
-- cmd << url.host(); // telnet://host
-+ host = url.host(); // telnet://host
- else if (!url.path().isEmpty())
-- cmd << url.path(); // telnet:host
-+ host = url.path(); // telnet:host
-+
-+ if (host.isEmpty() || host.startsWith("-"))
-+ {
-+ kdError() << "Invalid hostname " << host << endl;
-+ return 2;
-+ }
-+
-+ cmd << host;
-
- if (url.port())
- cmd << QString::number(url.port());
diff --git a/kde-base/kdelibs/kdelibs-3.1.5-r1.ebuild b/kde-base/kdelibs/kdelibs-3.1.5-r1.ebuild
deleted file mode 100644
index 88c97be06152..000000000000
--- a/kde-base/kdelibs/kdelibs-3.1.5-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-3.1.5-r1.ebuild,v 1.6 2005/01/03 16:56:49 caleb Exp $
-inherit kde eutils
-#don't inherit kde-base or kde-dist! it calls need-kde which adds kdelibs to depend!
-
-IUSE="alsa cups doc ipv6 ssl"
-DESCRIPTION="KDE libraries needed by all kde programs"
-KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64"
-HOMEPAGE="http://www.kde.org/"
-SLOT="3.1"
-LICENSE="GPL-2 LGPL-2"
-SRC_URI="mirror://kde/stable/$PV/src/${P}.tar.bz2"
-
-DEPEND=">=sys-devel/autoconf-2.58
- >=app-arch/bzip2-1.0.1
- >=dev-libs/libxslt-1.0.7
- >=dev-libs/libpcre-3.5
- >=dev-libs/libxml2-2.4.10
- ssl? ( >=dev-libs/openssl-0.9.6 )
- alsa? ( media-libs/alsa-lib virtual/alsa )
- cups? ( >=net-print/cups-1.1.14 )
- >=media-libs/tiff-3.5.5
- app-admin/fam
- virtual/ghostscript
- media-libs/libart_lgpl
- sys-devel/gettext
- >=x11-libs/qt-3.1.0
- ~kde-base/arts-1.1.5"
-
-RDEPEND="$DEPEND
- doc? ( ~app-doc/kdelibs-apidocs-$PV )
- app-text/sgml-common
- cups? ( net-print/cups )
- dev-lang/python"
-
-myconf="$myconf --with-distribution=Gentoo --enable-libfam --enable-dnotify"
-use ipv6 || myconf="$myconf --with-ipv6-lookup=no"
-use ssl && myconf="$myconf --with-ssl-dir=/usr" || myconf="$myconf --without-ssl"
-use alsa && myconf="$myconf --with-alsa" || myconf="$myconf --without-alsa"
-use cups && myconf="$myconf --enable-cups" || myconf="$myconf --disable-cups"
-
-use x86 && myconf="$myconf --enable-fast-malloc=full"
-
-set-kdedir $PV
-
-src_unpack() {
- kde_src_unpack
- epatch ${FILESDIR}/post-3.1.5-kdelibs-kapplication.patch
- epatch ${FILESDIR}/post-3.1.5-kdelibs-ktelnetservice.patch
- use alpha && cd ${S} && epatch ${FILESDIR}/${P}-kjs-alphaev6-gcc3-workaround.patch
- kde_sandbox_patch ${S}/kio/misc/kpac
-}
-
-src_install() {
- kde_src_install
- dohtml *.html
-
- # kdelibs-apidocs is provided by kdelibs-apidocs ebuild, kdelibs ebuild
- # shouldn't install anything into kdelibs-apidocs (bug #15102)
- rm -r ${D}/$KDEDIR/share/doc/HTML/en/kdelibs-apidocs
-}