diff options
Diffstat (limited to 'sci-visualization/labplot/files')
4 files changed, 65 insertions, 0 deletions
diff --git a/sci-visualization/labplot/files/digest-labplot-1.4.0 b/sci-visualization/labplot/files/digest-labplot-1.4.0 new file mode 100644 index 000000000000..076a796384ca --- /dev/null +++ b/sci-visualization/labplot/files/digest-labplot-1.4.0 @@ -0,0 +1 @@ +MD5 479e417cad0b9b7bbbffeb1c505074ac LabPlot-1.4.0.tar.gz 7928234 diff --git a/sci-visualization/labplot/files/digest-labplot-1.5.0.5 b/sci-visualization/labplot/files/digest-labplot-1.5.0.5 new file mode 100644 index 000000000000..dad30316c521 --- /dev/null +++ b/sci-visualization/labplot/files/digest-labplot-1.5.0.5 @@ -0,0 +1 @@ +MD5 aa5b7ae0c10a3a75bb100cacb2a53bf3 LabPlot-1.5.0.5.tar.gz 10304752 diff --git a/sci-visualization/labplot/files/getversion.patch b/sci-visualization/labplot/files/getversion.patch new file mode 100644 index 000000000000..5e96534ea373 --- /dev/null +++ b/sci-visualization/labplot/files/getversion.patch @@ -0,0 +1,41 @@ +--- src/LabPlotDialog.cc 2004-10-28 23:18:53.000000000 +0200 ++++ ../LabPlot-1.4.0-new/src/LabPlotDialog.cc 2005-01-05 14:04:35.017794811 +0100 +@@ -21,7 +21,7 @@ + #endif + + #ifdef HAVE_FFTW +-#include <fftw-config.h> ++#include <fftw.h> + #endif + + #ifdef HAVE_MAGICK +@@ -33,10 +33,6 @@ + #include <qsaglobal.h> + #endif + +-#ifdef HAVE_CDF +-#include <cdfrev.h> +-#endif +- + LabPlotDialog::LabPlotDialog(const char *name) + : Dialog(0, name) + { +@@ -82,7 +78,7 @@ + #ifdef HAVE_FFTW3 + s="not used"; + #elif HAVE_FFTW +- s=FFTW_VERSION; ++ s=fftw_version; + #endif + tmp = new QLabel(s,hb); + tmp->setAlignment(Qt::AlignRight); +@@ -132,8 +128,7 @@ + new QLabel(i18n("Common Data Form library (CDF) : "),hb); + s = "no"; + #ifdef HAVE_CDF +- s = QString::number(CDF_LIBRARY_VERSION)+'.'+QString::number(CDF_LIBRARY_RELEASE)+'.'+ +- QString::number(CDF_LIBRARY_INCREMENT); ++ s = CDF_VERSION; + #endif + tmp = new QLabel(s,hb); + tmp->setAlignment(Qt::AlignRight); diff --git a/sci-visualization/labplot/files/labplot-1.3.0-amd64.patch b/sci-visualization/labplot/files/labplot-1.3.0-amd64.patch new file mode 100644 index 000000000000..5bbadac00eeb --- /dev/null +++ b/sci-visualization/labplot/files/labplot-1.3.0-amd64.patch @@ -0,0 +1,22 @@ +--- libjasper/include/jasper/jas_types.h.old 2004-08-20 22:27:33.831853344 +0200 ++++ libjasper/include/jasper/jas_types.h 2004-08-20 22:27:56.952338496 +0200 +@@ -178,7 +178,7 @@ + + #endif + +-#if defined(HAVE_STDINT_H) ++#if defined(HAVE_STDINT_H) || defined (_STDINT_H) + /* + * The C language implementation does correctly provide the standard header + * file "stdint.h". +--- src/Plot2DSurface.cc.old 2004-08-20 22:28:48.961431912 +0200 ++++ src/Plot2DSurface.cc 2004-08-20 22:57:09.291942384 +0200 +@@ -195,7 +195,7 @@ + // kdDebug()<<"a = "<<a[j-1+NX*(i-1)]<<endl; + // kdDebug()<<" color value ("<<i<<"/"<<j<<") = "<<value<<endl; + +- QBrush brush(getColor(value,palette),(Qt::BrushStyle)brush); ++ QBrush brush(getColor(value,palette)/*,(Qt::BrushStyle)brush*/); + p->setBrush(brush); + if(mesh) + p->setPen( Qt::black ); |