summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-01-08 11:50:42 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-01-08 11:50:42 +0000
commit9db2181134d684d78ac79b3cc18fb018e6c1005a (patch)
treea0168c6cbd88183f5f4aa2b1b656016a5fc9c84c /kde-base/kalgebra
parentRemove unused patches. (diff)
downloadgentoo-2-9db2181134d684d78ac79b3cc18fb018e6c1005a.tar.gz
gentoo-2-9db2181134d684d78ac79b3cc18fb018e6c1005a.tar.bz2
gentoo-2-9db2181134d684d78ac79b3cc18fb018e6c1005a.zip
Remove unused patches.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'kde-base/kalgebra')
-rw-r--r--kde-base/kalgebra/ChangeLog7
-rw-r--r--kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patch22
2 files changed, 5 insertions, 24 deletions
diff --git a/kde-base/kalgebra/ChangeLog b/kde-base/kalgebra/ChangeLog
index c029f060cd46..402263f4420a 100644
--- a/kde-base/kalgebra/ChangeLog
+++ b/kde-base/kalgebra/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for kde-base/kalgebra
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/kde-base/kalgebra/ChangeLog,v 1.151 2013/01/05 20:18:55 creffett Exp $
+# $Header: /var/cvsroot/gentoo-x86/kde-base/kalgebra/ChangeLog,v 1.152 2013/01/08 11:50:41 kensington Exp $
+
+ 08 Jan 2013; Michael Palimaka <kensington@gentoo.org>
+ -files/kalgebra-4.5.73-solaris-graph2d.patch:
+ Remove unused patches.
*kalgebra-4.9.5 (05 Jan 2013)
@@ -615,4 +619,3 @@
17 Jan 2008; Wulf C. Krueger <philantrop@gentoo.org>
+kalgebra-4.0.0.ebuild:
Added KDE 4.0.0's kalgebra.
-
diff --git a/kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patch b/kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patch
deleted file mode 100644
index d7fbcbfdb13b..000000000000
--- a/kde-base/kalgebra/files/kalgebra-4.5.73-solaris-graph2d.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Desc: Fix missing isinf() for Solaris (same way as for kcalc).
-Author: Heiko Przybyl <zuxez@cs.tu-berlin.de>
---- kalgebra-4.3.2/kalgebra/analitzagui/graph2d.cpp.orig 2009-10-16 15:31:29.804959916 +0200
-+++ kalgebra-4.3.2/kalgebra/analitzagui/graph2d.cpp 2009-10-16 15:35:36.879338408 +0200
-@@ -38,6 +38,17 @@
- #include "analitza.h"
- #include "functionsmodel.h"
-
-+// Stolen from kcalc.
-+#if defined(Q_OS_SOLARIS)
-+// Strictly by the standard, ininf() is a c99-ism which
-+// is unavailable in C++. The IEEE FP headers provide
-+// a function with similar functionality, so use that instead.
-+// However, !finite(a) == isinf(a) || isnan(a), so it's
-+// not 100% correct.
-+#include <ieeefp.h>
-+#define isinf(a) !finite(a)
-+#endif
-+
- // #define DEBUG_GRAPH
-
- using namespace std;