diff options
author | Jonathan Callen <abcd@gentoo.org> | 2009-11-01 09:28:29 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2009-11-01 09:28:29 +0000 |
commit | 2bf8f6010ac4bc2f2c2b89a053199d0a00e43651 (patch) | |
tree | 4f464e6e1256d84cfeb265b2055acd96d8598e5e /app-office/krita | |
parent | Drop old version (diff) | |
download | gentoo-2-2bf8f6010ac4bc2f2c2b89a053199d0a00e43651.tar.gz gentoo-2-2bf8f6010ac4bc2f2c2b89a053199d0a00e43651.tar.bz2 gentoo-2-2bf8f6010ac4bc2f2c2b89a053199d0a00e43651.zip |
Drop old version
(Portage version: -svn/cvs/Linux i686)
Diffstat (limited to 'app-office/krita')
-rw-r--r-- | app-office/krita/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/krita/files/krita-1.6.3+gcc-4.3.patch | 77 | ||||
-rw-r--r-- | app-office/krita/krita-1.6.3.ebuild | 80 |
3 files changed, 5 insertions, 158 deletions
diff --git a/app-office/krita/ChangeLog b/app-office/krita/ChangeLog index 78fa3a1f22c2..94c002834cf0 100644 --- a/app-office/krita/ChangeLog +++ b/app-office/krita/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/krita # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/krita/ChangeLog,v 1.99 2009/09/27 12:35:29 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/krita/ChangeLog,v 1.100 2009/11/01 09:28:19 abcd Exp $ + + 01 Nov 2009; Jonathan Callen <abcd@gentoo.org> -krita-1.6.3.ebuild, + -files/krita-1.6.3+gcc-4.3.patch: + Drop old version 27 Sep 2009; Brent Baude <ranger@gentoo.org> krita-1.6.3_p20090204.ebuild: Marking krita-1.6.3_p20090204 ppc64 stable for bug 276008 diff --git a/app-office/krita/files/krita-1.6.3+gcc-4.3.patch b/app-office/krita/files/krita-1.6.3+gcc-4.3.patch deleted file mode 100644 index 916354f373ea..000000000000 --- a/app-office/krita/files/krita-1.6.3+gcc-4.3.patch +++ /dev/null @@ -1,77 +0,0 @@ -diff -Nrua koffice-1.6.3/krita/core/kis_perspective_math.cpp koffice/krita/core/kis_perspective_math.cpp ---- koffice-1.6.3/krita/core/kis_perspective_math.cpp 2007-05-30 23:40:31.000000000 +0200 -+++ koffice/krita/core/kis_perspective_math.cpp 2008-03-12 00:56:21.000000000 +0100 -@@ -24,7 +24,7 @@ - - #if 1 - --#include <iostream.h> -+#include <iostream> - #include <stdlib.h> - #include <math.h> - //#define NDEBUG // uncomment to remove checking of assert() -@@ -57,9 +57,9 @@ - void rprint()const; //print entries on a single line - void resize(int n); - int operator==(const vector<ElType>& v)const; -- friend vector<ElType> operator*(ElType c,vector<ElType>& v ); -- friend vector<ElType> operator*(vector<ElType>& v,ElType c ); -- friend ostream& operator<<(ostream& s,vector<ElType>& v); -+ friend vector<ElType> operator* (ElType c,vector<ElType>& v ); -+ friend vector<ElType> operator*(vector<ElType>& v,ElType c ); -+ friend std::ostream& operator<<(std::ostream& s,vector<ElType>& v); - }; - template <class ElType> - void vector<ElType>::zero() -@@ -129,10 +129,10 @@ - void vector<ElType>::rprint()const //print entries on a single line - { - int i; -- cout << "VECTOR: "; -- cout << "("; -- for(i=0;i<len-1;i++) cout << data[i] << ","; -- cout << data[len-1] << ")" << endl; -+ std::cout << "VECTOR: "; -+ std::cout << "("; -+ for(i=0;i<len-1;i++) std::cout << data[i] << ","; -+ std::cout << data[len-1] << ")" << std::endl; - return; - } - template <class ElType> -@@ -164,7 +164,7 @@ - return ans; - } - template <class ElType> -- ostream& operator<<(ostream& s,vector<ElType>& v) -+ std::ostream& operator<<(std::ostream& s,vector<ElType>& v) - { - s << "("; - for(int i=0;i<v.len-1;i++) s << v.data[i] << ", "; -@@ -192,7 +192,7 @@ - matrix<ElType> operator-(const matrix<ElType>& a); - matrix<ElType> transpose(); - //matrix<ElType> inverse(); -- friend ostream& operator<<(ostream& s,matrix<ElType>& m); -+ friend std::ostream& operator<<(std::ostream& s,matrix<ElType>& m); - friend void ludcmp(matrix<ElType>& a,vector<int>& indx,double &d); - friend void lubksb(matrix<ElType>&a,vector<int>& indx,vector<ElType>&b); - }; -@@ -357,7 +357,7 @@ - return ans; - } - template <class ElType> -- ostream& operator<<(ostream& s,matrix<ElType>& m) -+ std::ostream& operator<<(std::ostream& s,matrix<ElType>& m) - { - for(int i=0; i<m.rows;i++) s << m[i]; - return s; -@@ -381,7 +381,7 @@ - // kdDebug() << "new search" << endl; - for (j=0;j<n;j++) { if ((temp=fabs(a[i][j])) > big) big=temp; - /* kdDebug() << temp << " " << fabs(a[i][j]) << " "<< big <<endl; */} -- if (big == 0.0) { cerr << "Singular matrix in routine LUDCMP" << endl; big = TINY;} -+ if (big == 0.0) { std::cerr << "Singular matrix in routine LUDCMP" << std::endl; big = TINY;} - vv[i]=1.0/big; - } - for (j=0;j<n;j++) - diff --git a/app-office/krita/krita-1.6.3.ebuild b/app-office/krita/krita-1.6.3.ebuild deleted file mode 100644 index aa4faab1f361..000000000000 --- a/app-office/krita/krita-1.6.3.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/krita/krita-1.6.3.ebuild,v 1.11 2009/06/30 21:24:06 tampakrap Exp $ - -MAXKOFFICEVER=${PV} -KMNAME=koffice -inherit kde-meta eutils - -DESCRIPTION="KOffice image manipulation program." -HOMEPAGE="http://www.koffice.org/" -LICENSE="GPL-2 LGPL-2" - -SLOT="3.5" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" -# See bug #130442. -#IUSE="opengl" -IUSE="" - -DEPEND="$(deprange $PV $MAXKOFFICEVER app-office/koffice-libs) - >=media-gfx/imagemagick-6.2.5.5 - >=media-libs/lcms-1.15 - media-libs/tiff - media-libs/jpeg - >=media-libs/openexr-1.2.2-r2 - media-libs/libpng - >=media-libs/libexif-0.6.13-r1 - virtual/opengl - virtual/glu" -RDEPEND="${DEPEND}" - -#opengl? ( virtual/opengl virtual/glu )" - -KMCOPYLIB="libkformula lib/kformula - libkofficecore lib/kofficecore - libkofficeui lib/kofficeui - libkopainter lib/kopainter - libkopalette lib/kopalette - libkotext lib/kotext - libkwmf lib/kwmf - libkowmf lib/kwmf - libkstore lib/store - libkrossapi lib/kross/api/ - libkrossmain lib/kross/main/" - -KMEXTRACTONLY="lib/" - -KMEXTRA="filters/krita" - -PATCHES=( "${FILESDIR}/${P}+gcc-4.3.patch" ) - -need-kde 3.5 - -pkg_setup() { - # use opengl && - if ! built_with_use =x11-libs/qt-3* opengl ; then - eerror "You need to build x11-libs/qt with opengl use flag enabled." - die - fi -} - -src_unpack() { - kde-meta_src_unpack - # FIXME - disable broken tests for now - sed -i -e "s:TESTSDIR =.*:TESTSDIR=:" "${S}"/krita/core/Makefile.am \ - $(ls "${S}"/krita/colorspaces/*/Makefile.am) - - # Fixing the desktop file, cf. bug 190006. - sed -i -e "/^R/{ /[^Y]$/{ s/$/Y/g; } }" "${S}"/krita/krita.desktop - sed -i -e "/^MimeType/{ /[^;]$/{ s/$/;/ } }" "${S}"/krita/krita.desktop -} - -src_compile() { -# local myconf="$(use_with opengl gl)" - - for i in $(find "${S}"/lib -iname "*\.ui"); do - ${QTDIR}/bin/uic ${i} > ${i%.ui}.h - done - - kde-meta_src_compile -} |