rpms/koffice/F-10 koffice-1.6.3-dejavu_fonts.patch, NONE, 1.1 koffice-1.6.3-glibc_strrchr.patch, NONE, 1.1 koffice-1.6.3-no_local_fonts.patch, NONE, 1.1 koffice-1.6.3-quint32.patch, NONE, 1.1 koffice-20090306svn.patch, NONE, 1.1 koffice-svn_checkout.sh, NONE, 1.1 koffice.spec, 1.82, 1.83

Rex Dieter rdieter at fedoraproject.org
Tue Jul 28 20:53:21 UTC 2009


Author: rdieter

Update of /cvs/pkgs/rpms/koffice/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32094

Modified Files:
	koffice.spec 
Added Files:
	koffice-1.6.3-dejavu_fonts.patch 
	koffice-1.6.3-glibc_strrchr.patch 
	koffice-1.6.3-no_local_fonts.patch koffice-1.6.3-quint32.patch 
	koffice-20090306svn.patch koffice-svn_checkout.sh 
Log Message:
* Tue Jul 28 2009 Rex Dieter <rdieter at fedoraproject.org> 2:1.6.3-22.20090306svn
- -kformula: omit bundled fonts
- koffice kword crash with formulas (#514217)


koffice-1.6.3-dejavu_fonts.patch:
 Makefile.am     |    2 +-
 contextstyle.cc |    2 +-
 fontstyle.cc    |    8 +++++++-
 symboltable.cc  |    2 +-
 4 files changed, 10 insertions(+), 4 deletions(-)

--- NEW FILE koffice-1.6.3-dejavu_fonts.patch ---
diff -up koffice-1.6.3/lib/kformula/contextstyle.cc.dejavu koffice-1.6.3/lib/kformula/contextstyle.cc
--- koffice-1.6.3/lib/kformula/contextstyle.cc.dejavu	2007-05-30 16:38:26.000000000 -0500
+++ koffice-1.6.3/lib/kformula/contextstyle.cc	2009-07-28 15:29:06.420292073 -0500
@@ -106,7 +106,7 @@ void ContextStyle::readConfig( KConfig* 
     if ( ! FontStyle::missingFonts( init ).isEmpty() ) {
         kdWarning( DEBUGID) << "Not all basic fonts found\n";
     }
-    mathFont.fromString("Arev Sans");
+    mathFont.fromString("DejaVu Sans");
     bracketFont.fromString("cmex10");
 
 
diff -up koffice-1.6.3/lib/kformula/fontstyle.cc.dejavu koffice-1.6.3/lib/kformula/fontstyle.cc
--- koffice-1.6.3/lib/kformula/fontstyle.cc.dejavu	2007-05-30 16:38:26.000000000 -0500
+++ koffice-1.6.3/lib/kformula/fontstyle.cc	2009-07-28 15:35:51.457543630 -0500
@@ -102,7 +102,7 @@ QStringList FontStyle::missingFontsInter
     QStringList missing;
 
     testFont( missing, "cmex10" );
-    testFont( missing, "arev sans");
+    testFont( missing, "dejavu sans");
 
     return missing;
 }
@@ -111,9 +111,12 @@ void FontStyle::installFonts()
 {
     if (m_installed)
         return;
+
     QStringList missing = missingFontsInternal();
     if (!missing.isEmpty())
     {
+// don't install local copies of fonts -- Rex
+/*
         QStringList urlList;
         for (QStringList::iterator it = missing.begin(); it != missing.end(); ++it)
         {
@@ -135,6 +138,9 @@ void FontStyle::installFonts()
         KIO::copy(urlList, "fonts:/Personal/", false);
         KMessageBox::information(qApp->mainWidget(), 
                                  i18n("Some fonts have been installed to assure that symbols in formulas are properly visualized. You must restart the application in order so that changes take effect"));
+*/
+        KMessageBox::information(qApp->mainWidget(),
+                                 i18n("Some symbol fonts for formulas was font to be missing")); 
     }
     m_installed = true;
 }
diff -up koffice-1.6.3/lib/kformula/Makefile.am.dejavu koffice-1.6.3/lib/kformula/Makefile.am
--- koffice-1.6.3/lib/kformula/Makefile.am.dejavu	2007-05-30 16:38:26.000000000 -0500
+++ koffice-1.6.3/lib/kformula/Makefile.am	2009-07-28 15:41:35.306393788 -0500
@@ -1,7 +1,7 @@
 
 INCLUDES= $(KOFFICE_INCLUDES) $(KOTEXT_INCLUDES) $(all_includes)
 
-SUBDIRS = pics fonts dtd
+SUBDIRS = pics dtd
 
 ####### 
 # We have to name it kformulalib, not just kformula, since that's the name of the kdeinit module for kformula.
diff -up koffice-1.6.3/lib/kformula/symboltable.cc.dejavu koffice-1.6.3/lib/kformula/symboltable.cc
--- koffice-1.6.3/lib/kformula/symboltable.cc.dejavu	2007-05-30 16:38:26.000000000 -0500
+++ koffice-1.6.3/lib/kformula/symboltable.cc	2009-07-28 15:29:06.421292200 -0500
@@ -101,7 +101,7 @@ QFont SymbolTable::font( QChar symbol, c
     if ( fm.inFont( symbol ) ) {
         return f;
     }
-    return QFont("Arev Sans");
+    return QFont("DejaVu Sans");
 }
 
 CharClass SymbolTable::charClass( QChar symbol ) const

koffice-1.6.3-glibc_strrchr.patch:
 gfile.cc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE koffice-1.6.3-glibc_strrchr.patch ---
diff -up koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc.glibc koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc
--- koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc.glibc	2007-05-30 16:39:18.000000000 -0500
+++ koffice-1.6.3/filters/kword/pdf/xpdf/goo/gfile.cc	2009-03-06 15:56:35.000000000 -0600
@@ -315,7 +315,7 @@ GString *grabPath(const char *fileName) 
 
 #else
   //---------- Unix ----------
-  char *p;
+  const char *p;
 
   if ((p = strrchr(fileName, '/')))
     return new GString(fileName, p - fileName);

koffice-1.6.3-no_local_fonts.patch:
 fontstyle.cc |    3 +++
 1 file changed, 3 insertions(+)

--- NEW FILE koffice-1.6.3-no_local_fonts.patch ---
diff -up koffice-1.6.3/lib/kformula/fontstyle.cc.no_local_fonts koffice-1.6.3/lib/kformula/fontstyle.cc
--- koffice-1.6.3/lib/kformula/fontstyle.cc.no_local_fonts	2007-05-30 16:38:26.000000000 -0500
+++ koffice-1.6.3/lib/kformula/fontstyle.cc	2009-07-28 15:14:57.879543856 -0500
@@ -111,6 +111,8 @@ void FontStyle::installFonts()
 {
     if (m_installed)
         return;
+// don't depend on installing fonts locally -- Rex
+/*
     QStringList missing = missingFontsInternal();
     if (!missing.isEmpty())
     {
@@ -136,6 +138,7 @@ void FontStyle::installFonts()
         KMessageBox::information(qApp->mainWidget(), 
                                  i18n("Some fonts have been installed to assure that symbols in formulas are properly visualized. You must restart the application in order so that changes take effect"));
     }
+*/
     m_installed = true;
 }
 

koffice-1.6.3-quint32.patch:
 kis_tiff_converter.cc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE koffice-1.6.3-quint32.patch ---
diff -up koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc.quint32 koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc
--- koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc.quint32	2009-03-06 15:55:16.000000000 -0600
+++ koffice-1.6.3/filters/krita/tiff/kis_tiff_converter.cc	2009-03-07 13:42:40.000000000 -0600
@@ -242,7 +242,7 @@ KisImageBuilder_Result KisTIFFConverter:
     // Read image profile
     kdDebug() << "Reading profile" << endl;
     KisProfile* profile = 0;
-    quint32 EmbedLen;
+    DWORD EmbedLen;
     LPBYTE EmbedBuffer;
 
     if (TIFFGetField(image, TIFFTAG_ICCPROFILE, &EmbedLen, &EmbedBuffer)) {

koffice-20090306svn.patch:
 koffice-1.6-branch/admin/Doxyfile.am                                                                   |    4 
 koffice-1.6-branch/admin/acinclude.m4.in                                                               |   39 
 koffice-1.6-branch/admin/cvs.sh                                                                        |    2 
 koffice-1.6-branch/admin/detect-autoconf.pl                                                            |  107 +
 koffice-1.6-branch/configure.in.in                                                                     |    4 
 koffice-1.6-branch/doc/Makefile.am                                                                     |    4 
 koffice-1.6-branch/doc/koffice.desktop                                                                 |    1 
 koffice-1.6-branch/doc/krita/dialogs-imagerestoration.png                                              |binary
 koffice-1.6-branch/doc/krita/tutorial-select-layer.docbook                                             |    6 
 koffice-1.6-branch/example/example.desktop                                                             |    6 
 koffice-1.6-branch/example/examplepart.desktop                                                         |    3 
 koffice-1.6-branch/example/x-vnd.kde.example.desktop                                                   |    1 
 koffice-1.6-branch/filters/generic_wrapper/generic_filter.desktop                                      |    9 
 koffice-1.6-branch/filters/karbon/ai/karbon_ai_import.desktop                                          |    6 
 koffice-1.6-branch/filters/karbon/applixgraphics/kontour_applixgraphic_import.desktop                  |    7 
 koffice-1.6-branch/filters/karbon/eps/karbon_eps_export.desktop                                        |    6 
 koffice-1.6-branch/filters/karbon/eps/karbon_eps_import.desktop                                        |    6 
 koffice-1.6-branch/filters/karbon/eps/karbon_ps_import.desktop                                         |    6 
 koffice-1.6-branch/filters/karbon/kontour/karbon_kontour_import.desktop                                |    8 
 koffice-1.6-branch/filters/karbon/msod/karbon_msod_import.desktop                                      |    7 
 koffice-1.6-branch/filters/karbon/oodraw/karbon_oodraw_import.desktop                                  |    7 
 koffice-1.6-branch/filters/karbon/png/karbon_png_export.desktop                                        |    6 
 koffice-1.6-branch/filters/karbon/svg/karbon_svg_export.desktop                                        |    6 
 koffice-1.6-branch/filters/karbon/svg/karbon_svg_import.desktop                                        |    7 
 koffice-1.6-branch/filters/karbon/wmf/karbon_wmf_export.desktop                                        |    7 
 koffice-1.6-branch/filters/karbon/wmf/karbon_wmf_import.desktop                                        |    6 
 koffice-1.6-branch/filters/karbon/xaml/karbon_xaml_export.desktop                                      |    8 
 koffice-1.6-branch/filters/karbon/xaml/karbon_xaml_import.desktop                                      |    8 
 koffice-1.6-branch/filters/karbon/xcf/karbon_xcf_export.desktop                                        |    6 
 koffice-1.6-branch/filters/karbon/xfig/karbon_xfig_import.desktop                                      |    7 
 koffice-1.6-branch/filters/kchart/bmp/kchart_bmp_export.desktop                                        |    8 
 koffice-1.6-branch/filters/kchart/jpeg/kchart_jpeg_export.desktop                                      |    8 
 koffice-1.6-branch/filters/kchart/mng/kchart_mng_export.desktop                                        |    8 
 koffice-1.6-branch/filters/kchart/png/kchart_png_export.desktop                                        |    9 
 koffice-1.6-branch/filters/kchart/svg/kchart_svg_export.desktop                                        |    9 
 koffice-1.6-branch/filters/kchart/xbm/kchart_xbm_export.desktop                                        |    8 
 koffice-1.6-branch/filters/kchart/xpm/kchart_xpm_export.desktop                                        |    8 
 koffice-1.6-branch/filters/kformula/latex/kformula_latex_export.desktop                                |    7 
 koffice-1.6-branch/filters/kformula/mathml/kformula_mathml_export.desktop                              |    7 
 koffice-1.6-branch/filters/kformula/mathml/kformula_mathml_import.desktop                              |    7 
 koffice-1.6-branch/filters/kformula/png/kformula_png_export.desktop                                    |    7 
 koffice-1.6-branch/filters/kformula/svg/kformula_svg_export.desktop                                    |    8 
 koffice-1.6-branch/filters/kivio/imageexport/kivio_image_export.desktop                                |    8 
 koffice-1.6-branch/filters/kpresenter/bmp/kpresenter_bmp_export.desktop                                |    8 
 koffice-1.6-branch/filters/kpresenter/jpeg/kpresenter_jpeg_export.desktop                              |    8 
 koffice-1.6-branch/filters/kpresenter/kword/kprkword.desktop                                           |    7 
 koffice-1.6-branch/filters/kpresenter/magicpoint/kpresenter_magicpoint_import.desktop                  |    7 
 koffice-1.6-branch/filters/kpresenter/mng/kpresenter_mng_export.desktop                                |    8 
 koffice-1.6-branch/filters/kpresenter/ooimpress/kpresenter_ooimpress_export.desktop                    |    6 
 koffice-1.6-branch/filters/kpresenter/ooimpress/kpresenter_ooimpress_import.desktop                    |    6 
 koffice-1.6-branch/filters/kpresenter/png/kpresenter_png_export.desktop                                |    8 
 koffice-1.6-branch/filters/kpresenter/powerpoint/import/kpresenter_powerpoint_import.desktop           |    7 
 koffice-1.6-branch/filters/kpresenter/svg/kpresenter_svg_export.desktop                                |    8 
 koffice-1.6-branch/filters/kpresenter/xbm/kpresenter_xbm_export.desktop                                |    8 
 koffice-1.6-branch/filters/kpresenter/xpm/kpresenter_xpm_export.desktop                                |    8 
 koffice-1.6-branch/filters/krita/gmagick/kis_image_magick_converter.cc                                 |   52 
 koffice-1.6-branch/filters/krita/gmagick/krita_magick.desktop                                          |    7 
 koffice-1.6-branch/filters/krita/gmagick/krita_magick_export.desktop                                   |   11 
 koffice-1.6-branch/filters/krita/gmagick/krita_magick_import.desktop                                   |    9 
 koffice-1.6-branch/filters/krita/jpeg/krita_jpeg.desktop                                               |    8 
 koffice-1.6-branch/filters/krita/jpeg/krita_jpeg_export.desktop                                        |    8 
 koffice-1.6-branch/filters/krita/jpeg/krita_jpeg_import.desktop                                        |    8 
 koffice-1.6-branch/filters/krita/magick/Makefile.am                                                    |    2 
 koffice-1.6-branch/filters/krita/magick/kis_image_magick_converter.cc                                  |    2 
 koffice-1.6-branch/filters/krita/magick/krita_magick.desktop                                           |    7 
 koffice-1.6-branch/filters/krita/magick/krita_magick_export.desktop                                    |    9 
 koffice-1.6-branch/filters/krita/magick/krita_magick_import.desktop                                    |    9 
 koffice-1.6-branch/filters/krita/openexr/krita_openexr.desktop                                         |    7 
 koffice-1.6-branch/filters/krita/openexr/krita_openexr_export.desktop                                  |    8 
 koffice-1.6-branch/filters/krita/openexr/krita_openexr_import.desktop                                  |    8 
 koffice-1.6-branch/filters/krita/pdf/krita_pdf.desktop                                                 |    7 
 koffice-1.6-branch/filters/krita/pdf/krita_pdf_import.desktop                                          |   11 
 koffice-1.6-branch/filters/krita/png/krita_png.desktop                                                 |    7 
 koffice-1.6-branch/filters/krita/png/krita_png_export.desktop                                          |    8 
 koffice-1.6-branch/filters/krita/png/krita_png_import.desktop                                          |    8 
 koffice-1.6-branch/filters/krita/raw/krita_raw.desktop                                                 |    7 
 koffice-1.6-branch/filters/krita/raw/krita_raw_import.desktop                                          |    8 
 koffice-1.6-branch/filters/krita/tiff/kis_tiff_converter.cc                                            |    8 
 koffice-1.6-branch/filters/krita/tiff/krita_tiff.desktop                                               |    7 
 koffice-1.6-branch/filters/krita/tiff/krita_tiff_export.desktop                                        |    8 
 koffice-1.6-branch/filters/krita/tiff/krita_tiff_import.desktop                                        |    8 
 koffice-1.6-branch/filters/krita/xcf/krita_xcf_export.desktop                                          |    8 
 koffice-1.6-branch/filters/krita/xcf/krita_xcf_import.desktop                                          |    8 
 koffice-1.6-branch/filters/kspread/applixspread/kspread_applixspread_import.desktop                    |    9 
 koffice-1.6-branch/filters/kspread/csv/kspread_csv_export.desktop                                      |    9 
 koffice-1.6-branch/filters/kspread/csv/kspread_csv_import.desktop                                      |    9 
 koffice-1.6-branch/filters/kspread/dbase/kspread_dbase_import.desktop                                  |   12 
 koffice-1.6-branch/filters/kspread/excel/import/kspread_excel_import.desktop                           |    9 
 koffice-1.6-branch/filters/kspread/excel/kspread_excel_export.desktop                                  |    9 
 koffice-1.6-branch/filters/kspread/gnumeric/gnumericimport.cc                                          |  118 -
 koffice-1.6-branch/filters/kspread/gnumeric/kspread_gnumeric_export.desktop                            |    9 
 koffice-1.6-branch/filters/kspread/gnumeric/kspread_gnumeric_import.desktop                            |    9 
 koffice-1.6-branch/filters/kspread/html/kspread_html_export.desktop                                    |    9 
 koffice-1.6-branch/filters/kspread/kexi/kspread_kexi_import.desktop                                    |   10 
 koffice-1.6-branch/filters/kspread/latex/export/kspread_latex_export.desktop                           |    9 
 koffice-1.6-branch/filters/kspread/opencalc/kspread_opencalc_export.desktop                            |   11 
 koffice-1.6-branch/filters/kspread/opencalc/kspread_opencalc_import.desktop                            |   11 
 koffice-1.6-branch/filters/kspread/qpro/kspread_qpro_import.desktop                                    |    9 
 koffice-1.6-branch/filters/kugar/kugarnop/kugar_kugar_import.desktop                                   |    7 
 koffice-1.6-branch/filters/kword/abiword/kword_abiword_export.desktop                                  |    7 
 koffice-1.6-branch/filters/kword/abiword/kword_abiword_import.desktop                                  |    7 
 koffice-1.6-branch/filters/kword/amipro/kword_amipro_export.desktop                                    |    7 
 koffice-1.6-branch/filters/kword/amipro/kword_amipro_import.desktop                                    |    7 
 koffice-1.6-branch/filters/kword/applixword/kword_applixword_import.desktop                            |    7 
 koffice-1.6-branch/filters/kword/ascii/kword_ascii_export.desktop                                      |    9 
 koffice-1.6-branch/filters/kword/ascii/kword_ascii_import.desktop                                      |    7 
 koffice-1.6-branch/filters/kword/docbook/kword_docbook_export.desktop                                  |    7 
 koffice-1.6-branch/filters/kword/hancomword/kword_hancomword_import.desktop                            |    8 
 koffice-1.6-branch/filters/kword/html/export/kword_html_export.desktop                                 |    7 
 koffice-1.6-branch/filters/kword/html/import/kword_html_import.desktop                                 |    7 
 koffice-1.6-branch/filters/kword/kword1.3/import/kword_kword1dot3_import.desktop                       |    7 
 koffice-1.6-branch/filters/kword/kword1.3/import/uninstall.desktop                                     |    1 
 koffice-1.6-branch/filters/kword/latex/export/kword_latex_export.desktop                               |    7 
 koffice-1.6-branch/filters/kword/latex/import/kword_latex_import.desktop                               |   11 
 koffice-1.6-branch/filters/kword/msword/kword_msword_import.desktop                                    |    9 
 koffice-1.6-branch/filters/kword/mswrite/IMPERFECT                                                     |    2 
 koffice-1.6-branch/filters/kword/mswrite/ROADMAP                                                       |    5 
 koffice-1.6-branch/filters/kword/mswrite/config.libmswrite.h                                           |   35 
 koffice-1.6-branch/filters/kword/mswrite/kword_mswrite_export.desktop                                  |    9 
 koffice-1.6-branch/filters/kword/mswrite/kword_mswrite_import.desktop                                  |    9 
 koffice-1.6-branch/filters/kword/mswrite/libmswrite.cpp                                                |   90 +
 koffice-1.6-branch/filters/kword/mswrite/libmswrite.h                                                  |   44 
 koffice-1.6-branch/filters/kword/mswrite/libmswrite_defs.cpp                                           |   37 
 koffice-1.6-branch/filters/kword/mswrite/libmswrite_defs.h                                             |   99 -
 koffice-1.6-branch/filters/kword/mswrite/list.h                                                        |   45 
 koffice-1.6-branch/filters/kword/mswrite/mswriteexport.cc                                              |   36 
 koffice-1.6-branch/filters/kword/mswrite/mswriteexport.h                                               |   32 
 koffice-1.6-branch/filters/kword/mswrite/mswriteimport.cc                                              |   36 
 koffice-1.6-branch/filters/kword/mswrite/mswriteimport.h                                               |   32 
 koffice-1.6-branch/filters/kword/mswrite/status.html                                                   |   25 
 koffice-1.6-branch/filters/kword/mswrite/structures.cpp                                                |  149 +-
 koffice-1.6-branch/filters/kword/mswrite/structures.h                                                  |   61 
 koffice-1.6-branch/filters/kword/mswrite/structures_generated.cpp                                      |   89 -
 koffice-1.6-branch/filters/kword/mswrite/structures_generated.h                                        |  100 -
 koffice-1.6-branch/filters/kword/mswrite/structures_private.cpp                                        |   47 
 koffice-1.6-branch/filters/kword/mswrite/structures_private.h                                          |   45 
 koffice-1.6-branch/filters/kword/oowriter/kword_oowriter_export.desktop                                |    7 
 koffice-1.6-branch/filters/kword/oowriter/kword_oowriter_import.desktop                                |    7 
 koffice-1.6-branch/filters/kword/palmdoc/kword_palmdoc_export.desktop                                  |    7 
 koffice-1.6-branch/filters/kword/palmdoc/kword_palmdoc_import.desktop                                  |    7 
 koffice-1.6-branch/filters/kword/pdf/kword_pdf_import.desktop                                          |    7 
 koffice-1.6-branch/filters/kword/pdf/pdfimport.cpp                                                     |   11 
 koffice-1.6-branch/filters/kword/pdf/xpdf/goo/gmem.c                                                   |   19 
 koffice-1.6-branch/filters/kword/pdf/xpdf/goo/gmem.h                                                   |    1 
 koffice-1.6-branch/filters/kword/pdf/xpdf/xpdf/Stream.cc                                               |  634 +++++++++-
 koffice-1.6-branch/filters/kword/pdf/xpdf/xpdf/Stream.h                                                |   12 
 koffice-1.6-branch/filters/kword/rtf/export/kword_rtf_export.desktop                                   |    7 
 koffice-1.6-branch/filters/kword/rtf/import/kword_rtf_import.desktop                                   |    7 
 koffice-1.6-branch/filters/kword/starwriter/kword_starwriter_import.desktop                            |    7 
 koffice-1.6-branch/filters/kword/wml/kword_wml_export.desktop                                          |    7 
 koffice-1.6-branch/filters/kword/wml/kword_wml_import.desktop                                          |    7 
 koffice-1.6-branch/filters/kword/wordperfect/export/kword_wp_export.desktop                            |    7 
 koffice-1.6-branch/filters/kword/wordperfect/import/TableStyle.cxx                                     |    2 
 koffice-1.6-branch/filters/kword/wordperfect/import/TextRunStyle.cxx                                   |    2 
 koffice-1.6-branch/filters/kword/wordperfect/import/kword_wp_import.desktop                            |    7 
 koffice-1.6-branch/filters/olefilters/powerpoint97/ole_powerpoint97_import.desktop                     |    8 
 koffice-1.6-branch/filters/xsltfilter/export/xslt_export.desktop                                       |    9 
 koffice-1.6-branch/filters/xsltfilter/import/xslt_import.desktop                                       |    9 
 koffice-1.6-branch/karbon/data/karbon.desktop                                                          |   11 
 koffice-1.6-branch/karbon/data/karbon_module.desktop                                                   |    5 
 koffice-1.6-branch/karbon/data/karbonpart.desktop                                                      |   16 
 koffice-1.6-branch/karbon/plugins/imagetool/karbonimagetool.desktop                                    |    7 
 koffice-1.6-branch/karbon/plugins/zoomtool/karbonzoomtool.desktop                                      |    8 
 koffice-1.6-branch/karbon/templates/basic/.directory                                                   |    6 
 koffice-1.6-branch/karbon/templates/basic/empty.desktop                                                |   14 
 koffice-1.6-branch/karbon/tools/karbondefaulttools.desktop                                             |    7 
 koffice-1.6-branch/kchart/kchart.desktop                                                               |   15 
 koffice-1.6-branch/kchart/kchartpart.desktop                                                           |   12 
 koffice-1.6-branch/kchart/templates/.directory                                                         |    7 
 koffice-1.6-branch/kchart/templates/BarChart.desktop                                                   |   14 
 koffice-1.6-branch/kchart/templates/Empty.desktop                                                      |    5 
 koffice-1.6-branch/kdgantt/KDGanttView.cpp                                                             |   35 
 koffice-1.6-branch/kdgantt/KDGanttView.h                                                               |   24 
 koffice-1.6-branch/kdgantt/KDGanttViewItem.cpp                                                         |   26 
 koffice-1.6-branch/kdgantt/KDGanttViewItem.h                                                           |   13 
 koffice-1.6-branch/kdgantt/KDGanttViewSubwidgets.cpp                                                   |  280 +++-
 koffice-1.6-branch/kdgantt/KDGanttViewSubwidgets.h                                                     |   59 
 koffice-1.6-branch/kdgantt/KDGanttViewTaskItem.h                                                       |    6 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/alter.c                                                  |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/analyze.c                                                |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/attach.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/auth.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/btree.c                                                  |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/btree.h                                                  |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/build.c                                                  |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/callback.c                                               |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/complete.c                                               |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/date.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/delete.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/expr.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/func.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/hash.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/hash.h                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/insert.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/legacy.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/main.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/pager.c                                                  |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/pager.h                                                  |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/patches/kexisql-3.2.8.patch                              |  469 ++++++-
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/patches/mk_patch.sh                                      |    3 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/pragma.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/prepare.c                                                |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/random.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/select.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/shell.c                                                  |    3 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/sqlite3.h                                                |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/sqliteInt.h                                              |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/tclsqlite.c                                              |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/tokenize.c                                               |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/update.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/utf.c                                                    |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/util.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/vacuum.c                                                 |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/vdbe.c                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/vdbe.h                                                   |    1 
 koffice-1.6-branch/kexi/3rdparty/kexisql3/src/where.c                                                  |    1 
 koffice-1.6-branch/kexi/Makefile.global                                                                |    2 
 koffice-1.6-branch/kexi/core/kexidbconnectionset.cpp                                                   |    2 
 koffice-1.6-branch/kexi/data/kde34compat/x-sqlite2.desktop                                             |    6 
 koffice-1.6-branch/kexi/data/kde34compat/x-sqlite3.desktop                                             |    6 
 koffice-1.6-branch/kexi/data/kexihandler.desktop                                                       |    3 
 koffice-1.6-branch/kexi/data/x-kexi-connectiondata.desktop                                             |    6 
 koffice-1.6-branch/kexi/data/x-kexiproject-shortcut.desktop                                            |    6 
 koffice-1.6-branch/kexi/data/x-kexiproject-sqlite.desktop                                              |    5 
 koffice-1.6-branch/kexi/data/x-kexiproject-sqlite2.desktop                                             |    5 
 koffice-1.6-branch/kexi/data/x-kexiproject-sqlite3.desktop                                             |    5 
 koffice-1.6-branch/kexi/doc/dev/CHANGELOG-Kexi-js                                                      |   83 +
 koffice-1.6-branch/kexi/doc/dev/TODO-Kexi-js                                                           |    4 
 koffice-1.6-branch/kexi/formeditor/factories/kformdesigner_containers.desktop                          |    3 
 koffice-1.6-branch/kexi/formeditor/factories/kformdesigner_stdwidgets.desktop                          |    6 
 koffice-1.6-branch/kexi/formeditor/kdevelop_plugin/kformdesigner_kdev_part.desktop                     |    9 
 koffice-1.6-branch/kexi/formeditor/test/kformdesigner.desktop                                          |    5 
 koffice-1.6-branch/kexi/formeditor/test/kformdesigner_part.desktop                                     |    5 
 koffice-1.6-branch/kexi/formeditor/widgetfactory.desktop                                               |    2 
 koffice-1.6-branch/kexi/formeditor/widgetlibrary.cpp                                                   |    2 
 koffice-1.6-branch/kexi/kexi.desktop                                                                   |   13 
 koffice-1.6-branch/kexi/kexidb/alter.cpp                                                               |    2 
 koffice-1.6-branch/kexi/kexidb/connection.cpp                                                          |   10 
 koffice-1.6-branch/kexi/kexidb/drivers/mySQL/kexidb_mysqldriver.desktop                                |    1 
 koffice-1.6-branch/kexi/kexidb/drivers/odbc/kexidb_odbcdriver.desktop                                  |    3 
 koffice-1.6-branch/kexi/kexidb/drivers/pqxx/kexidb_pqxxsqldriver.desktop                               |    1 
 koffice-1.6-branch/kexi/kexidb/drivers/pqxx/pqxxcursor.cpp                                             |    9 
 koffice-1.6-branch/kexi/kexidb/drivers/sqlite/kexidb_sqlite3driver.desktop                             |    2 
 koffice-1.6-branch/kexi/kexidb/drivers/sqlite/sqliteconnection.cpp                                     |    3 
 koffice-1.6-branch/kexi/kexidb/drivers/sqlite/sqlitecursor.cpp                                         |    8 
 koffice-1.6-branch/kexi/kexidb/drivers/sqlite2/kexidb_sqlite2driver.desktop                            |    2 
 koffice-1.6-branch/kexi/kexidb/expression.cpp                                                          |    8 
 koffice-1.6-branch/kexi/kexidb/field.cpp                                                               |    4 
 koffice-1.6-branch/kexi/kexidb/field.h                                                                 |    2 
 koffice-1.6-branch/kexi/kexidb/fieldlist.cpp                                                           |    2 
 koffice-1.6-branch/kexi/kexidb/fieldvalidator.cpp                                                      |    2 
 koffice-1.6-branch/kexi/kexidb/kexidb_driver.desktop                                                   |   11 
 koffice-1.6-branch/kexi/kexidb/queryschema.cpp                                                         |    7 
 koffice-1.6-branch/kexi/kexidb/queryschema.h                                                           |    3 
 koffice-1.6-branch/kexi/kexidb/relationship.cpp                                                        |    6 
 koffice-1.6-branch/kexi/kexidb/tableschema.cpp                                                         |    2 
 koffice-1.6-branch/kexi/kexiutils/utils.cpp                                                            |    3 
 koffice-1.6-branch/kexi/main/keximainwindowimpl.cpp                                                    |    9 
 koffice-1.6-branch/kexi/main/printing/kexisimpleprintingengine.cpp                                     |  236 +++
 koffice-1.6-branch/kexi/main/printing/kexisimpleprintingengine.h                                       |   39 
 koffice-1.6-branch/kexi/migration/keximigrate.cpp                                                      |    3 
 koffice-1.6-branch/kexi/migration/keximigration_driver.desktop                                         |    6 
 koffice-1.6-branch/kexi/migration/mysql/keximigrate_mysql.desktop                                      |    6 
 koffice-1.6-branch/kexi/migration/mysql/mysqlmigrate.cpp                                               |    5 
 koffice-1.6-branch/kexi/migration/pqxx/keximigrate_pqxx.desktop                                        |    6 
 koffice-1.6-branch/kexi/migration/pqxx/pqxxmigrate.cpp                                                 |    8 
 koffice-1.6-branch/kexi/plugins/forms/kexidataprovider.cpp                                             |    4 
 koffice-1.6-branch/kexi/plugins/forms/kexiformhandler.desktop                                          |   12 
 koffice-1.6-branch/kexi/plugins/forms/kformdesigner_kexidbfactory.desktop                              |    6 
 koffice-1.6-branch/kexi/plugins/forms/widgets/kexidblabel.cpp                                          |    2 
 koffice-1.6-branch/kexi/plugins/forms/widgets/kexiframe.cpp                                            |    2 
 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsv_importexporthandler.desktop                   |   13 
 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvexport.cpp                                     |    2 
 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportdialog.cpp                               |  168 +-
 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportdialog.h                                 |   15 
 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportoptionsdlg.cpp                           |   97 +
 koffice-1.6-branch/kexi/plugins/importexport/csv/kexicsvimportoptionsdlg.h                             |   17 
 koffice-1.6-branch/kexi/plugins/macros/kexipart/keximacrohandler.desktop                               |   13 
 koffice-1.6-branch/kexi/plugins/migration/keximigrationhandler.desktop                                 |   23 
 koffice-1.6-branch/kexi/plugins/queries/kexiquerydesignerguieditor.cpp                                 |    9 
 koffice-1.6-branch/kexi/plugins/queries/kexiqueryhandler.desktop                                       |   11 
 koffice-1.6-branch/kexi/plugins/relations/kexirelationhandler.desktop                                  |   11 
 koffice-1.6-branch/kexi/plugins/reports/kexireporthandler.desktop                                      |   13 
 koffice-1.6-branch/kexi/plugins/reports/kformdesigner_kexireportfactory.desktop                        |    6 
 koffice-1.6-branch/kexi/plugins/scripting/kexiscripting/kexiscripthandler.desktop                      |   13 
 koffice-1.6-branch/kexi/plugins/tables/kexitabledesignerview.cpp                                       |    2 
 koffice-1.6-branch/kexi/plugins/tables/kexitablehandler.desktop                                        |   13 
 koffice-1.6-branch/kexi/widget/relations/kexirelationviewconnection.cpp                                |    2 
 koffice-1.6-branch/kexi/widget/tableview/kexidataawarepropertyset.cpp                                  |    2 
 koffice-1.6-branch/kexi/widget/tableview/kexitableviewdata.cpp                                         |    2 
 koffice-1.6-branch/kexi/widget/utils/kexicomboboxdropdownbutton.cpp                                    |    1 
 koffice-1.6-branch/kexi/widget/utils/kexisharedactionclient.cpp                                        |    2 
 koffice-1.6-branch/kformula/kformula.desktop                                                           |    7 
 koffice-1.6-branch/kformula/kformulapart.desktop                                                       |   13 
 koffice-1.6-branch/kivio/kiviopart/kivio.desktop                                                       |    6 
 koffice-1.6-branch/kivio/kiviopart/kiviopart.desktop                                                   |   11 
 koffice-1.6-branch/kivio/plugins/kivioconnectortool/kivioconnectortool.desktop                         |    2 
 koffice-1.6-branch/kivio/plugins/kivioselecttool/kivioselecttool.desktop                               |    2 
 koffice-1.6-branch/kivio/plugins/kiviosmlconnector/kiviosmlconnector.desktop                           |    3 
 koffice-1.6-branch/kivio/plugins/kiviotargettool/kiviotargettool.desktop                               |    3 
 koffice-1.6-branch/kivio/plugins/kiviotexttool/kiviotexttool.desktop                                   |    5 
 koffice-1.6-branch/kivio/plugins/kiviozoomtool/kiviozoomtool.desktop                                   |    5 
 koffice-1.6-branch/kivio/templates/basic/.directory                                                    |    6 
 koffice-1.6-branch/kivio/templates/basic/basicflow.desktop                                             |    3 
 koffice-1.6-branch/kivio/templates/basic/empty.desktop                                                 |   10 
 koffice-1.6-branch/koshell/koshell.desktop                                                             |   11 
 koffice-1.6-branch/kounavail/kounavail.desktop                                                         |    7 
 koffice-1.6-branch/kplato/kplato.desktop                                                               |   11 
 koffice-1.6-branch/kplato/kplatopart.desktop                                                           |   15 
 koffice-1.6-branch/kplato/reports/resourcelist.desktop                                                 |    7 
 koffice-1.6-branch/kplato/reports/tasklist.desktop                                                     |    8 
 koffice-1.6-branch/kplato/templates/Simple/.directory                                                  |    5 
 koffice-1.6-branch/kplato/templates/Simple/8HourDay-40HourWeek.desktop                                 |    7 
 koffice-1.6-branch/kplato/templates/Simple/Plain.desktop                                               |    7 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/.directory                                              |   20 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowDown.desktop                                       |    6 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowLeft.desktop                                       |    6 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowLeftDown.desktop                                   |    6 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowLeftUp.desktop                                     |    6 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowRight.desktop                                      |    6 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowRightDown.desktop                                  |    6 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowRightUp.desktop                                    |    6 
 koffice-1.6-branch/kpresenter/autoforms/Arrows/ArrowUp.desktop                                         |    6 
 koffice-1.6-branch/kpresenter/autoforms/Connections/.directory                                         |   20 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection1.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection10.desktop                               |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection11.desktop                               |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection12.desktop                               |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection2.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection3.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection4.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection5.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection6.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection7.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection8.desktop                                |    5 
 koffice-1.6-branch/kpresenter/autoforms/Connections/Connection9.desktop                                |    5 
 koffice-1.6-branch/kpresenter/kpresenter.desktop                                                       |    7 
 koffice-1.6-branch/kpresenter/kpresenterpart.desktop                                                   |    7 
 koffice-1.6-branch/kpresenter/templates/Screen/.directory                                              |    5 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/.directory                                 |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/BlueBreezeDouble.desktop                   |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/BlueBreezePicture.desktop                  |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/BlueBreezeSingle.desktop                   |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/CopperPlain.desktop                        |    3 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/GradientBlueRed.desktop                    |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/SnowyMountains.desktop                     |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/TotallyNewProduct.desktop                  |    7 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/classroom.desktop                          |   12 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/kde.desktop                                |    5 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/kde2.desktop                               |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/kde3.desktop                               |    6 
 koffice-1.6-branch/kpresenter/templates/Screenpresentations/savannah.desktop                           |    9 
 koffice-1.6-branch/kpresenter/templates/common_desktop/OneColumnLandscape.desktop                      |    8 
 koffice-1.6-branch/kpresenter/templates/common_desktop/OneColumnPortrait.desktop                       |    8 
 koffice-1.6-branch/kpresenter/templates/common_desktop/TitleLandscape.desktop                          |    8 
 koffice-1.6-branch/kpresenter/templates/common_desktop/TitlePortrait.desktop                           |    8 
 koffice-1.6-branch/kpresenter/templates/common_desktop/TwoColumnLandscape.desktop                      |   10 
 koffice-1.6-branch/kpresenter/templates/common_desktop/TwoColumnPortrait.desktop                       |   10 
 koffice-1.6-branch/kpresenter/templates/common_desktop/emptyLandscape.desktop                          |   13 
 koffice-1.6-branch/kpresenter/templates/common_desktop/emptyPortrait.desktop                           |    9 
 koffice-1.6-branch/kpresenter/templates/letter/.directory                                              |    5 
 koffice-1.6-branch/krita/colorspaces/cmyk_u16/krita_cmyk_u16_plugin.desktop                            |   12 
 koffice-1.6-branch/krita/colorspaces/cmyk_u8/kritacmykplugin.desktop                                   |    9 
 koffice-1.6-branch/krita/colorspaces/cmyk_u8/templates/white_2000x800.desktop                          |   12 
 koffice-1.6-branch/krita/colorspaces/gray_u16/krita_gray_u16_plugin.desktop                            |   10 
 koffice-1.6-branch/krita/colorspaces/gray_u8/kritagrayplugin.desktop                                   |    8 
 koffice-1.6-branch/krita/colorspaces/gray_u8/templates/.directory                                      |    7 
 koffice-1.6-branch/krita/colorspaces/gray_u8/templates/white_640x480.desktop                           |   11 
 koffice-1.6-branch/krita/colorspaces/lms_f32/krita_lms_f32_plugin.desktop                              |    9 
 koffice-1.6-branch/krita/colorspaces/rgb_f16half/krita_rgb_f16half_plugin.desktop                      |    7 
 koffice-1.6-branch/krita/colorspaces/rgb_f32/krita_rgb_f32_plugin.desktop                              |    7 
 koffice-1.6-branch/krita/colorspaces/rgb_u16/kis_rgb_u16_colorspace.cc                                 |    4 
 koffice-1.6-branch/krita/colorspaces/rgb_u16/krita_rgb_u16_plugin.desktop                              |    8 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/kis_rgb_colorspace.cc                                      |    4 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/kritargbplugin.desktop                                     |    8 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_1024x768.desktop                     |   12 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_1280x1024.desktop                    |   13 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_1600x1200.desktop                    |   11 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/transparent_640x480.desktop                      |   13 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_1024x768.desktop                           |   15 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_1280x1024.desktop                          |   15 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_1600x1200.desktop                          |   15 
 koffice-1.6-branch/krita/colorspaces/rgb_u8/templates/white_640x480.desktop                            |   15 
 koffice-1.6-branch/krita/colorspaces/wet/kritawetplugin.desktop                                        |   10 
 koffice-1.6-branch/krita/colorspaces/wetsticky/brushop/kritawsbrushpaintop.desktop                     |    5 
 koffice-1.6-branch/krita/colorspaces/wetsticky/kritawsplugin.desktop                                   |    3 
 koffice-1.6-branch/krita/colorspaces/ycbcr_u16/krita_ycbcr_u16_plugin.desktop                          |    8 
 koffice-1.6-branch/krita/colorspaces/ycbcr_u8/krita_ycbcr_u8_plugin.desktop                            |    8 
 koffice-1.6-branch/krita/core/kis_paint_layer.cc                                                       |    4 
 koffice-1.6-branch/krita/core/kis_perspective_math.cpp                                                 |   22 
 koffice-1.6-branch/krita/data/brushes/Makefile.am                                                      |    2 
 koffice-1.6-branch/krita/data/krita_filter.desktop                                                     |   12 
 koffice-1.6-branch/krita/data/krita_paintop.desktop                                                    |    9 
 koffice-1.6-branch/krita/data/krita_plugin.desktop                                                     |    5 
 koffice-1.6-branch/krita/data/krita_tool.desktop                                                       |   14 
 koffice-1.6-branch/krita/data/palettes/Makefile.am                                                     |    2 
 koffice-1.6-branch/krita/data/templates/.directory                                                     |    6 
 koffice-1.6-branch/krita/krita.desktop                                                                 |   14 
 koffice-1.6-branch/krita/kritacolor/kis_abstract_colorspace.cc                                         |    4 
 koffice-1.6-branch/krita/kritacolor/krita_colorspace.desktop                                           |    2 
 koffice-1.6-branch/krita/kritapart.desktop                                                             |   12 
 koffice-1.6-branch/krita/plugins/filters/blur/kritablurfilter.desktop                                  |    2 
 koffice-1.6-branch/krita/plugins/filters/bumpmap/kritabumpmapfilter.desktop                            |    3 
 koffice-1.6-branch/krita/plugins/filters/cimg/kritacimg.desktop                                        |    3 
 koffice-1.6-branch/krita/plugins/filters/colorify/kritacolorifyfilter.desktop                          |    7 
 koffice-1.6-branch/krita/plugins/filters/colors/kritaextensioncolorsfilters.desktop                    |    7 
 koffice-1.6-branch/krita/plugins/filters/colorsfilters/kritacolorsfilter.desktop                       |   15 
 koffice-1.6-branch/krita/plugins/filters/convolutionfilters/kritaconvolutionfilters.desktop            |    9 
 koffice-1.6-branch/krita/plugins/filters/cubismfilter/kritacubismfilter.desktop                        |   15 
 koffice-1.6-branch/krita/plugins/filters/embossfilter/kritaembossfilter.desktop                        |    5 
 koffice-1.6-branch/krita/plugins/filters/example/kritaexample.desktop                                  |   12 
 koffice-1.6-branch/krita/plugins/filters/fastcolortransfer/kritafastcolortransfer.desktop              |   10 
 koffice-1.6-branch/krita/plugins/filters/imageenhancement/kritaimageenhancement.desktop                |   15 
 koffice-1.6-branch/krita/plugins/filters/lenscorrectionfilter/kritalenscorrectionfilter.desktop        |    7 
 koffice-1.6-branch/krita/plugins/filters/levelfilter/kritalevelfilter.desktop                          |    9 
 koffice-1.6-branch/krita/plugins/filters/noisefilter/kritanoisefilter.desktop                          |   13 
 koffice-1.6-branch/krita/plugins/filters/oilpaintfilter/kritaoilpaintfilter.desktop                    |    5 
 koffice-1.6-branch/krita/plugins/filters/pixelizefilter/kritapixelizefilter.desktop                    |   11 
 koffice-1.6-branch/krita/plugins/filters/raindropsfilter/kritaraindropsfilter.desktop                  |   13 
 koffice-1.6-branch/krita/plugins/filters/randompickfilter/kritarandompickfilter.desktop                |    3 
 koffice-1.6-branch/krita/plugins/filters/roundcorners/kis_round_corners_filter.cc                      |    5 
 koffice-1.6-branch/krita/plugins/filters/roundcorners/kritaroundcornersfilter.desktop                  |    3 
 koffice-1.6-branch/krita/plugins/filters/smalltilesfilter/kritasmalltilesfilter.desktop                |    2 
 koffice-1.6-branch/krita/plugins/filters/sobelfilter/kritasobelfilter.desktop                          |    3 
 koffice-1.6-branch/krita/plugins/filters/threadtest/kritathreadtest.desktop                            |    2 
 koffice-1.6-branch/krita/plugins/filters/unsharp/kritaunsharpfilter.desktop                            |    6 
 koffice-1.6-branch/krita/plugins/filters/wavefilter/kritawavefilter.desktop                            |    8 
 koffice-1.6-branch/krita/plugins/paintops/defaultpaintops/kis_smudgeop.cc                              |   15 
 koffice-1.6-branch/krita/plugins/paintops/defaultpaintops/kritadefaultpaintops.desktop                 |   11 
 koffice-1.6-branch/krita/plugins/tools/defaulttools/kritadefaulttools.desktop                          |    7 
 koffice-1.6-branch/krita/plugins/tools/selectiontools/kritaselectiontools.desktop                      |    7 
 koffice-1.6-branch/krita/plugins/tools/tool_crop/kritatoolcrop.desktop                                 |    7 
 koffice-1.6-branch/krita/plugins/tools/tool_curves/kritatoolcurves.desktop                             |    4 
 koffice-1.6-branch/krita/plugins/tools/tool_filter/kritatoolfilter.desktop                             |    8 
 koffice-1.6-branch/krita/plugins/tools/tool_perspectivegrid/kritatoolperspectivegrid.desktop           |    3 
 koffice-1.6-branch/krita/plugins/tools/tool_perspectivetransform/kritatoolperspectivetransform.desktop |    3 
 koffice-1.6-branch/krita/plugins/tools/tool_polygon/kritatoolpolygon.desktop                           |    7 
 koffice-1.6-branch/krita/plugins/tools/tool_polyline/kritatoolpolyline.desktop                         |    6 
 koffice-1.6-branch/krita/plugins/tools/tool_selectsimilar/kritatoolselectsimilar.desktop               |    4 
 koffice-1.6-branch/krita/plugins/tools/tool_star/kritatoolstar.desktop                                 |    7 
 koffice-1.6-branch/krita/plugins/tools/tool_transform/kritatooltransform.desktop                       |    7 
 koffice-1.6-branch/krita/plugins/viewplugins/colorrange/kritacolorrange.desktop                        |    4 
 koffice-1.6-branch/krita/plugins/viewplugins/colorspaceconversion/kritacolorspaceconversion.desktop    |    4 
 koffice-1.6-branch/krita/plugins/viewplugins/dropshadow/kritadropshadow.desktop                        |    8 
 koffice-1.6-branch/krita/plugins/viewplugins/filtersgallery/kritafiltersgallery.desktop                |    7 
 koffice-1.6-branch/krita/plugins/viewplugins/histogram/kritahistogram.desktop                          |   14 
 koffice-1.6-branch/krita/plugins/viewplugins/histogram_docker/kritahistogramdocker.desktop             |    6 
 koffice-1.6-branch/krita/plugins/viewplugins/history_docker/kritahistorydocker.desktop                 |    7 
 koffice-1.6-branch/krita/plugins/viewplugins/imagesize/kritaimagesize.desktop                          |    9 
 koffice-1.6-branch/krita/plugins/viewplugins/modify_selection/kritamodifyselection.desktop             |    3 
 koffice-1.6-branch/krita/plugins/viewplugins/performancetest/kritaperftest.desktop                     |    5 
 koffice-1.6-branch/krita/plugins/viewplugins/rotateimage/kritarotateimage.desktop                      |   11 
 koffice-1.6-branch/krita/plugins/viewplugins/screenshot/kritascreenshot.desktop                        |    7 
 koffice-1.6-branch/krita/plugins/viewplugins/scripting/kritascripting.desktop                          |   17 
 koffice-1.6-branch/krita/plugins/viewplugins/selectopaque/kritaselectopaque.desktop                    |    2 
 koffice-1.6-branch/krita/plugins/viewplugins/separate_channels/kritaseparatechannels.desktop           |   12 
 koffice-1.6-branch/krita/plugins/viewplugins/shearimage/kritashearimage.desktop                        |    8 
 koffice-1.6-branch/krita/plugins/viewplugins/substrate/kritasubstrate.desktop                          |    2 
 koffice-1.6-branch/krita/plugins/viewplugins/variations/kritavariations.desktop                        |   12 
 koffice-1.6-branch/krita/ui/squeezedcombobox.cpp                                                       |    3 
 koffice-1.6-branch/kspread/Makefile.am                                                                 |    2 
 koffice-1.6-branch/kspread/digest.cc                                                                   |    2 
 koffice-1.6-branch/kspread/digest.h                                                                    |    2 
 koffice-1.6-branch/kspread/kspread.desktop                                                             |   11 
 koffice-1.6-branch/kspread/kspreadpart.desktop                                                         |   15 
 koffice-1.6-branch/kspread/plugins/calculator/uninstall.desktop                                        |    1 
 koffice-1.6-branch/kspread/plugins/scripting/kspreadcore/krs_cell.cpp                                  |    9 
 koffice-1.6-branch/kspread/plugins/scripting/kspreadcore/krs_cell.h                                    |    7 
 koffice-1.6-branch/kspread/plugins/scripting/kspreadscripting.desktop                                  |   17 
 koffice-1.6-branch/kspread/templates/Business/.directory                                               |    4 
 koffice-1.6-branch/kspread/templates/Business/BalanceSheet.desktop                                     |    7 
 koffice-1.6-branch/kspread/templates/Business/ExpenseReport.desktop                                    |    5 
 koffice-1.6-branch/kspread/templates/Business/Invoice.desktop                                          |    2 
 koffice-1.6-branch/kspread/templates/Business/PackingSlip.desktop                                      |    7 
 koffice-1.6-branch/kspread/templates/Business/PriceQuotation.desktop                                   |    2 
 koffice-1.6-branch/kspread/templates/General/.directory                                                |    7 
 koffice-1.6-branch/kspread/templates/General/StudentIDCard.desktop                                     |    5 
 koffice-1.6-branch/kspread/templates/General/Worksheet.desktop                                         |    5 
 koffice-1.6-branch/kspread/templates/HomeFamily/.directory                                             |    9 
 koffice-1.6-branch/kspread/templates/HomeFamily/BMI.desktop                                            |    5 
 koffice-1.6-branch/kspread/templates/HomeFamily/CreditCardTracker.desktop                              |    3 
 koffice-1.6-branch/kspread/templates/HomeFamily/MenuPlan.desktop                                       |    9 
 koffice-1.6-branch/kspread/templates/HomeFamily/VacationChecklist.desktop                              |    6 
 koffice-1.6-branch/kugar/kudesigner/kudesigner.desktop                                                 |   17 
 koffice-1.6-branch/kugar/kudesigner/templates/General/.directory                                       |    7 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A0.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A1.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A2.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A3.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A4.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A5.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A6.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A7.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A8.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/A9.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B0.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B1.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B10.desktop                                      |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B2.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B3.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B4.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B5.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B6.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B7.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B8.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/B9.desktop                                       |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/C5E.desktop                                      |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/Comm10E.desktop                                  |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/DLE.desktop                                      |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/Executive.desktop                                |    3 
 koffice-1.6-branch/kugar/kudesigner/templates/General/Folio.desktop                                    |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/Ledger.desktop                                   |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/Legal.desktop                                    |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/Letter.desktop                                   |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/NPageSize.desktop                                |    1 
 koffice-1.6-branch/kugar/kudesigner/templates/General/Tabloid.desktop                                  |    1 
 koffice-1.6-branch/kugar/part/kugar.desktop                                                            |    6 
 koffice-1.6-branch/kugar/part/kugarpart.desktop                                                        |   10 
 koffice-1.6-branch/kword/KWAnchor.cpp                                                                  |    4 
 koffice-1.6-branch/kword/KWDocument.cpp                                                                |   20 
 koffice-1.6-branch/kword/kwmailmerge.desktop                                                           |    6 
 koffice-1.6-branch/kword/kword.desktop                                                                 |    7 
 koffice-1.6-branch/kword/kwordpart.desktop                                                             |   14 
 koffice-1.6-branch/kword/mailmerge/kabc/kwmailmerge_kabc.desktop                                       |   11 
 koffice-1.6-branch/kword/mailmerge/kspread/kwmailmerge_kspread.desktop                                 |   13 
 koffice-1.6-branch/kword/mailmerge/kwserialletter_classic.desktop                                      |    8 
 koffice-1.6-branch/kword/mailmerge/sql/kwserialletter_qtsqldb.desktop                                  |   11 
 koffice-1.6-branch/kword/mailmerge/sql/kwserialletter_qtsqldb_power.desktop                            |    6 
 koffice-1.6-branch/kword/templates/CardsAndLabels/.directory                                           |    6 
 koffice-1.6-branch/kword/templates/CardsAndLabels/BusinessCards10.desktop                              |    6 
 koffice-1.6-branch/kword/templates/CardsAndLabels/LabelsL16.desktop                                    |    5 
 koffice-1.6-branch/kword/templates/Envelopes/.directory                                                |    7 
 koffice-1.6-branch/kword/templates/Envelopes/EnvelopeC6.desktop                                        |    7 
 koffice-1.6-branch/kword/templates/Envelopes/EnvelopeDL.desktop                                        |    7 
 koffice-1.6-branch/kword/templates/Wordprocessing/.directory                                           |    7 
 koffice-1.6-branch/kword/templates/Wordprocessing/A4.desktop                                           |   17 
 koffice-1.6-branch/kword/templates/Wordprocessing/ColorfulA4.desktop                                   |   10 
 koffice-1.6-branch/kword/templates/Wordprocessing/ColorfulLetter.desktop                               |   10 
 koffice-1.6-branch/kword/templates/Wordprocessing/FaxA4.desktop                                        |    8 
 koffice-1.6-branch/kword/templates/Wordprocessing/FaxLetter.desktop                                    |    8 
 koffice-1.6-branch/kword/templates/Wordprocessing/Letter.desktop                                       |   14 
 koffice-1.6-branch/kword/templates/Wordprocessing/Memo.desktop                                         |    7 
 koffice-1.6-branch/kword/templates/Wordprocessing/ProfessionalA4.desktop                               |   14 
 koffice-1.6-branch/kword/templates/Wordprocessing/ProfessionalLetter.desktop                           |   14 
 koffice-1.6-branch/kword/templates/Wordprocessing/TwoColumns.desktop                                   |   15 
 koffice-1.6-branch/kword/templates/Wordprocessing/TwoColumnsLetter.desktop                             |   15 
 koffice-1.6-branch/lib/kofficecore/kodocinfopropspage.desktop                                          |    5 
 koffice-1.6-branch/lib/kotext/KoTextDocument.cpp                                                       |   10 
 koffice-1.6-branch/lib/kotext/KoTextObject.cpp                                                         |    5 
 koffice-1.6-branch/lib/kross/python/cxx/Objects.hxx                                                    |    9 
 koffice-1.6-branch/lib/kross/python/pythonconfig.h                                                     |    9 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.chart.desktop                                |    5 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.formula.desktop                              |    6 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.graphics-template.desktop                    |    6 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.graphics.desktop                             |    5 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.image.desktop                                |    6 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.presentation-template.desktop                |    6 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.presentation.desktop                         |    5 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.spreadsheet-template.desktop                 |    8 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.spreadsheet.desktop                          |    8 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.text-template.desktop                        |    6 
 koffice-1.6-branch/mimetypes/kde33/vnd.oasis.opendocument.text.desktop                                 |    6 
 koffice-1.6-branch/mimetypes/kde351/x-raw.desktop                                                      |    4 
 koffice-1.6-branch/servicetypes/kochart.desktop                                                        |    1 
 koffice-1.6-branch/servicetypes/kofficepart.desktop                                                    |    7 
 koffice-1.6-branch/servicetypes/kofilter.desktop                                                       |    7 
 koffice-1.6-branch/servicetypes/kofilterwrapper.desktop                                                |    3 
 koffice-1.6-branch/servicetypes/koplugin.desktop                                                       |    9 
 koffice-1.6-branch/templates/Illustration.desktop                                                      |   15 
 koffice-1.6-branch/templates/Presentation.desktop                                                      |   18 
 koffice-1.6-branch/templates/SpreadSheet.desktop                                                       |   21 
 koffice-1.6-branch/templates/TextDocument.desktop                                                      |   20 
 koffice-1.6-branch/tools/kfile-plugins/abiword/kfile_abiword.desktop                                   |    8 
 koffice-1.6-branch/tools/kfile-plugins/gnumeric/kfile_gnumeric.desktop                                 |   10 
 koffice-1.6-branch/tools/kfile-plugins/koffice/kfile_koffice.desktop                                   |    8 
 koffice-1.6-branch/tools/kfile-plugins/ooo/kfile_ooo.desktop                                           |    7 
 koffice-1.6-branch/tools/kthesaurus/KThesaurus.desktop                                                 |   10 
 koffice-1.6-branch/tools/quickprint/karbon_konqi.desktop                                               |   10 
 koffice-1.6-branch/tools/quickprint/kchart_konqi.desktop                                               |   10 
 koffice-1.6-branch/tools/quickprint/kexi_konqi.desktop                                                 |   10 
 koffice-1.6-branch/tools/quickprint/kformula_konqi.desktop                                             |   10 
 koffice-1.6-branch/tools/quickprint/kivio_konqi.desktop                                                |   10 
 koffice-1.6-branch/tools/quickprint/kpresenter_konqi.desktop                                           |   10 
 koffice-1.6-branch/tools/quickprint/krita_konqi.desktop                                                |   10 
 koffice-1.6-branch/tools/quickprint/kspread_konqi.desktop                                              |   10 
 koffice-1.6-branch/tools/quickprint/kword_konqi.desktop                                                |   10 
 koffice-1.6-branch/tools/spell/kspelltool.desktop                                                      |   10 
 koffice-1.6-branch/tools/spell/uninstall.desktop                                                       |    1 
 koffice-1.6-branch/tools/thesaurus/thesaurustool.desktop                                               |   18 
 koffice-1.6-branch/tools/thumbnail/clipartthumbnail.desktop                                            |    4 
 koffice-1.6-branch/tools/thumbnail/kofficethumbnail.desktop                                            |    7 
 koffice-1.6-branch/tools/thumbnail/otherofficethumbnail.desktop                                        |    7 
 koffice-1.6.3//Makefile.am                                                                             |only
 koffice-1.6.3//Makefile.in                                                                             |only
 koffice-1.6.3//acinclude.m4                                                                            |only
 koffice-1.6.3//aclocal.m4                                                                              |only
 koffice-1.6.3//config.h.in                                                                             |only
 koffice-1.6.3//configure                                                                               |only
 koffice-1.6.3//configure.files                                                                         |only
 koffice-1.6.3//configure.in                                                                            |only
 koffice-1.6.3//stamp-h.in                                                                              |only
 koffice-1.6.3//subdirs                                                                                 |only
 koffice-1.6.3/autocorrect/Makefile.in                                                                  |only
 koffice-1.6.3/doc/Makefile.in                                                                          |only
 koffice-1.6.3/doc/karbon/Makefile.in                                                                   |only
 koffice-1.6.3/doc/karbon/index.cache.bz2                                                               |only
 koffice-1.6.3/doc/kchart/Makefile.in                                                                   |only
 koffice-1.6.3/doc/kchart/index.cache.bz2                                                               |only
 koffice-1.6.3/doc/kexi/Makefile.in                                                                     |only
 koffice-1.6.3/doc/kexi/index.cache.bz2                                                                 |only
 koffice-1.6.3/doc/kformula/Makefile.in                                                                 |only
 koffice-1.6.3/doc/kformula/index.cache.bz2                                                             |only
 koffice-1.6.3/doc/kivio/Makefile.in                                                                    |only
 koffice-1.6.3/doc/kivio/index.cache.bz2                                                                |only
 koffice-1.6.3/doc/koffice/Makefile.in                                                                  |only
 koffice-1.6.3/doc/koffice/index.cache.bz2                                                              |only
 koffice-1.6.3/doc/koshell/Makefile.in                                                                  |only
 koffice-1.6.3/doc/koshell/index.cache.bz2                                                              |only
 koffice-1.6.3/doc/kplato/Makefile.in                                                                   |only
 koffice-1.6.3/doc/kplato/index.cache.bz2                                                               |only
 koffice-1.6.3/doc/kpresenter/Makefile.in                                                               |only
 koffice-1.6.3/doc/kpresenter/index.cache.bz2                                                           |only
 koffice-1.6.3/doc/krita/Makefile.in                                                                    |only
 koffice-1.6.3/doc/krita/index.cache.bz2                                                                |only
 koffice-1.6.3/doc/kspread/Makefile.in                                                                  |only
 koffice-1.6.3/doc/kspread/index.cache.bz2                                                              |only
 koffice-1.6.3/doc/kugar/Makefile.in                                                                    |only
 koffice-1.6.3/doc/kugar/index.cache.bz2                                                                |only
 koffice-1.6.3/doc/kword/Makefile.in                                                                    |only
 koffice-1.6.3/doc/kword/index.cache.bz2                                                                |only
 koffice-1.6.3/doc/thesaurus/Makefile.in                                                                |only
 koffice-1.6.3/doc/thesaurus/index.cache.bz2                                                            |only
 koffice-1.6.3/example/Makefile.in                                                                      |only
 koffice-1.6.3/filters/Makefile.in                                                                      |only
 koffice-1.6.3/filters/generic_wrapper/Makefile.in                                                      |only
 koffice-1.6.3/filters/karbon/Makefile.in                                                               |only
 koffice-1.6.3/filters/karbon/ai/Makefile.in                                                            |only
 koffice-1.6.3/filters/karbon/applixgraphics/Makefile.in                                                |only
 koffice-1.6.3/filters/karbon/eps/Makefile.in                                                           |only
 koffice-1.6.3/filters/karbon/kontour/Makefile.in                                                       |only
 koffice-1.6.3/filters/karbon/msod/Makefile.in                                                          |only
 koffice-1.6.3/filters/karbon/oodraw/Makefile.in                                                        |only
 koffice-1.6.3/filters/karbon/png/Makefile.in                                                           |only
 koffice-1.6.3/filters/karbon/svg/Makefile.in                                                           |only
 koffice-1.6.3/filters/karbon/wmf/Makefile.in                                                           |only
 koffice-1.6.3/filters/karbon/xaml/Makefile.in                                                          |only
 koffice-1.6.3/filters/karbon/xcf/Makefile.in                                                           |only
 koffice-1.6.3/filters/kchart/Makefile.in                                                               |only
 koffice-1.6.3/filters/kchart/bmp/Makefile.in                                                           |only
 koffice-1.6.3/filters/kchart/jpeg/Makefile.in                                                          |only
 koffice-1.6.3/filters/kchart/libimageexport/Makefile.in                                                |only
 koffice-1.6.3/filters/kchart/mng/Makefile.in                                                           |only
 koffice-1.6.3/filters/kchart/png/Makefile.in                                                           |only
 koffice-1.6.3/filters/kchart/svg/Makefile.in                                                           |only
 koffice-1.6.3/filters/kchart/xbm/Makefile.in                                                           |only
 koffice-1.6.3/filters/kchart/xpm/Makefile.in                                                           |only
 koffice-1.6.3/filters/kformula/Makefile.in                                                             |only
 koffice-1.6.3/filters/kformula/latex/Makefile.in                                                       |only
 koffice-1.6.3/filters/kformula/mathml/Makefile.in                                                      |only
 koffice-1.6.3/filters/kformula/png/Makefile.in                                                         |only
 koffice-1.6.3/filters/kformula/svg/Makefile.in                                                         |only
 koffice-1.6.3/filters/kivio/Makefile.in                                                                |only
 koffice-1.6.3/filters/kivio/imageexport/Makefile.in                                                    |only
 koffice-1.6.3/filters/kpresenter/Makefile.in                                                           |only
 koffice-1.6.3/filters/kpresenter/bmp/Makefile.in                                                       |only
 koffice-1.6.3/filters/kpresenter/jpeg/Makefile.in                                                      |only
 koffice-1.6.3/filters/kpresenter/kword/Makefile.in                                                     |only
 koffice-1.6.3/filters/kpresenter/libimageexport/Makefile.in                                            |only
 koffice-1.6.3/filters/kpresenter/magicpoint/Makefile.in                                                |only
 koffice-1.6.3/filters/kpresenter/mng/Makefile.in                                                       |only
 koffice-1.6.3/filters/kpresenter/ooimpress/Makefile.in                                                 |only
 koffice-1.6.3/filters/kpresenter/png/Makefile.in                                                       |only
 koffice-1.6.3/filters/kpresenter/powerpoint/Makefile.in                                                |only
 koffice-1.6.3/filters/kpresenter/powerpoint/import/Makefile.in                                         |only
 koffice-1.6.3/filters/kpresenter/powerpoint/libppt/Makefile.in                                         |only
 koffice-1.6.3/filters/kpresenter/svg/Makefile.in                                                       |only
 koffice-1.6.3/filters/kpresenter/xbm/Makefile.in                                                       |only
 koffice-1.6.3/filters/kpresenter/xpm/Makefile.in                                                       |only
 koffice-1.6.3/filters/krita/Makefile.in                                                                |only
 koffice-1.6.3/filters/krita/gmagick/Makefile.in                                                        |only
 koffice-1.6.3/filters/krita/jpeg/Makefile.in                                                           |only
 koffice-1.6.3/filters/krita/libkisexif/Makefile.in                                                     |only
 koffice-1.6.3/filters/krita/magick/Makefile.in                                                         |only
 koffice-1.6.3/filters/krita/openexr/Makefile.in                                                        |only
 koffice-1.6.3/filters/krita/pdf/Makefile.in                                                            |only
 koffice-1.6.3/filters/krita/png/Makefile.in                                                            |only
 koffice-1.6.3/filters/krita/raw/Makefile.in                                                            |only
 koffice-1.6.3/filters/krita/tiff/Makefile.in                                                           |only
 koffice-1.6.3/filters/krita/xcf/Makefile.in                                                            |only
 koffice-1.6.3/filters/kspread/Makefile.in                                                              |only
 koffice-1.6.3/filters/kspread/applixspread/Makefile.in                                                 |only
 koffice-1.6.3/filters/kspread/csv/Makefile.in                                                          |only
 koffice-1.6.3/filters/kspread/dbase/Makefile.in                                                        |only
 koffice-1.6.3/filters/kspread/excel/Makefile.in                                                        |only
 koffice-1.6.3/filters/kspread/excel/import/Makefile.in                                                 |only
 koffice-1.6.3/filters/kspread/excel/sidewinder/Makefile.in                                             |only
 koffice-1.6.3/filters/kspread/gnumeric/Makefile.in                                                     |only
 koffice-1.6.3/filters/kspread/html/Makefile.in                                                         |only
 koffice-1.6.3/filters/kspread/kexi/Makefile.in                                                         |only
 koffice-1.6.3/filters/kspread/latex/Makefile.in                                                        |only
 koffice-1.6.3/filters/kspread/latex/export/Makefile.in                                                 |only
 koffice-1.6.3/filters/kspread/libkspreadexport/Makefile.in                                             |only
 koffice-1.6.3/filters/kspread/opencalc/Makefile.in                                                     |only
 koffice-1.6.3/filters/kspread/qpro/Makefile.in                                                         |only
 koffice-1.6.3/filters/kspread/qpro/libqpro/Makefile.in                                                 |only
 koffice-1.6.3/filters/kspread/qpro/libqpro/qpro/Makefile.in                                            |only
 koffice-1.6.3/filters/kspread/qpro/libqpro/src/Makefile.in                                             |only
 koffice-1.6.3/filters/kugar/Makefile.in                                                                |only
 koffice-1.6.3/filters/kugar/kugarnop/Makefile.in                                                       |only
 koffice-1.6.3/filters/kword/Makefile.in                                                                |only
 koffice-1.6.3/filters/kword/abiword/Makefile.in                                                        |only
 koffice-1.6.3/filters/kword/amipro/Makefile.in                                                         |only
 koffice-1.6.3/filters/kword/applixword/Makefile.in                                                     |only
 koffice-1.6.3/filters/kword/ascii/Makefile.in                                                          |only
 koffice-1.6.3/filters/kword/docbook/Makefile.in                                                        |only
 koffice-1.6.3/filters/kword/hancomword/Makefile.in                                                     |only
 koffice-1.6.3/filters/kword/html/Makefile.in                                                           |only
 koffice-1.6.3/filters/kword/html/export/Makefile.in                                                    |only
 koffice-1.6.3/filters/kword/html/import/Makefile.in                                                    |only
 koffice-1.6.3/filters/kword/kword1.3/Makefile.in                                                       |only
 koffice-1.6.3/filters/kword/kword1.3/import/Makefile.in                                                |only
 koffice-1.6.3/filters/kword/latex/Makefile.in                                                          |only
 koffice-1.6.3/filters/kword/latex/export/Makefile.in                                                   |only
 koffice-1.6.3/filters/kword/latex/import/Makefile.in                                                   |only
 koffice-1.6.3/filters/kword/latex/import/generator/Makefile.in                                         |only
 koffice-1.6.3/filters/kword/latex/import/parser/Makefile.in                                            |only
 koffice-1.6.3/filters/kword/libexport/Makefile.in                                                      |only
 koffice-1.6.3/filters/kword/msword/Makefile.in                                                         |only
 koffice-1.6.3/filters/kword/mswrite/Makefile.in                                                        |only
 koffice-1.6.3/filters/kword/oowriter/Makefile.in                                                       |only
 koffice-1.6.3/filters/kword/palmdoc/Makefile.in                                                        |only
 koffice-1.6.3/filters/kword/pdf/Makefile.in                                                            |only
 koffice-1.6.3/filters/kword/pdf/xpdf/Makefile.in                                                       |only
 koffice-1.6.3/filters/kword/pdf/xpdf/goo/Makefile.in                                                   |only
 koffice-1.6.3/filters/kword/pdf/xpdf/xpdf/Makefile.in                                                  |only
 koffice-1.6.3/filters/kword/pdf/xpdf/xpdf/pdftops.cc                                                   |only
 koffice-1.6.3/filters/kword/rtf/Makefile.in                                                            |only
 koffice-1.6.3/filters/kword/rtf/export/Makefile.in                                                     |only
 koffice-1.6.3/filters/kword/rtf/import/Makefile.in                                                     |only
 koffice-1.6.3/filters/kword/starwriter/Makefile.in                                                     |only
 koffice-1.6.3/filters/kword/wml/Makefile.in                                                            |only
 koffice-1.6.3/filters/kword/wordperfect/Makefile.in                                                    |only
 koffice-1.6.3/filters/kword/wordperfect/export/Makefile.in                                             |only
 koffice-1.6.3/filters/kword/wordperfect/import/Makefile.in                                             |only
 koffice-1.6.3/filters/libdialogfilter/Makefile.in                                                      |only
 koffice-1.6.3/filters/liboofilter/Makefile.in                                                          |only
 koffice-1.6.3/filters/olefilters/Makefile.in                                                           |only
 koffice-1.6.3/filters/olefilters/lib/Makefile.in                                                       |only
 koffice-1.6.3/filters/olefilters/powerpoint97/Makefile.in                                              |only
 koffice-1.6.3/filters/xsltfilter/Makefile.in                                                           |only
 koffice-1.6.3/filters/xsltfilter/export/Makefile.in                                                    |only
 koffice-1.6.3/filters/xsltfilter/export/xsl/Makefile.in                                                |only
 koffice-1.6.3/filters/xsltfilter/export/xsl/kword/Makefile.in                                          |only
 koffice-1.6.3/filters/xsltfilter/export/xsl/kword/xslfo/Makefile.in                                    |only
 koffice-1.6.3/filters/xsltfilter/import/Makefile.in                                                    |only
 koffice-1.6.3/interfaces/Makefile.in                                                                   |only
 koffice-1.6.3/karbon/Makefile.in                                                                       |only
 koffice-1.6.3/karbon/commands/Makefile.in                                                              |only
 koffice-1.6.3/karbon/core/Makefile.in                                                                  |only
 koffice-1.6.3/karbon/data/Makefile.in                                                                  |only
 koffice-1.6.3/karbon/dialogs/Makefile.in                                                               |only
 koffice-1.6.3/karbon/dockers/Makefile.in                                                               |only
 koffice-1.6.3/karbon/pics/Makefile.in                                                                  |only
 koffice-1.6.3/karbon/plugins/Makefile.in                                                               |only
 koffice-1.6.3/karbon/plugins/flattenpath/Makefile.in                                                   |only
 koffice-1.6.3/karbon/plugins/imagetool/Makefile.in                                                     |only
 koffice-1.6.3/karbon/plugins/insertknots/Makefile.in                                                   |only
 koffice-1.6.3/karbon/plugins/roundcorners/Makefile.in                                                  |only
 koffice-1.6.3/karbon/plugins/shadoweffect/Makefile.in                                                  |only
 koffice-1.6.3/karbon/plugins/whirlpinch/Makefile.in                                                    |only
 koffice-1.6.3/karbon/plugins/zoomtool/Makefile.in                                                      |only
 koffice-1.6.3/karbon/render/Makefile.in                                                                |only
 koffice-1.6.3/karbon/render/xrgbrender/Makefile.in                                                     |only
 koffice-1.6.3/karbon/shapes/Makefile.in                                                                |only
 koffice-1.6.3/karbon/templates/Makefile.in                                                             |only
 koffice-1.6.3/karbon/templates/basic/Makefile.in                                                       |only
 koffice-1.6.3/karbon/tools/Makefile.in                                                                 |only
 koffice-1.6.3/karbon/visitors/Makefile.in                                                              |only
 koffice-1.6.3/karbon/widgets/Makefile.in                                                               |only
 koffice-1.6.3/kchart/Makefile.in                                                                       |only
 koffice-1.6.3/kchart/kdchart/Makefile.in                                                               |only
 koffice-1.6.3/kchart/pics/Makefile.in                                                                  |only
 koffice-1.6.3/kchart/templates/Makefile.in                                                             |only
 koffice-1.6.3/kchart/toolbar/Makefile.in                                                               |only
 koffice-1.6.3/kchart/toolbar/crystalsvg/Makefile.in                                                    |only
 koffice-1.6.3/kchart/toolbar/locolor/Makefile.in                                                       |only
 koffice-1.6.3/kdgantt/Makefile.in                                                                      |only
 koffice-1.6.3/kexi/3rdparty/Makefile.in                                                                |only
 koffice-1.6.3/kexi/3rdparty/kexisql/Makefile.in                                                        |only
 koffice-1.6.3/kexi/3rdparty/kexisql/src/Makefile.in                                                    |only
 koffice-1.6.3/kexi/3rdparty/kexisql/tool/Makefile.in                                                   |only
 koffice-1.6.3/kexi/3rdparty/kexisql3/Makefile.in                                                       |only
 koffice-1.6.3/kexi/3rdparty/kexisql3/src/Makefile.in                                                   |only
 koffice-1.6.3/kexi/3rdparty/kolibs/Makefile.in                                                         |only
 koffice-1.6.3/kexi/3rdparty/uuid/Makefile.in                                                           |only
 koffice-1.6.3/kexi/Makefile.in                                                                         |only
 koffice-1.6.3/kexi/core/Makefile.in                                                                    |only
 koffice-1.6.3/kexi/data/Makefile.in                                                                    |only
 koffice-1.6.3/kexi/data/kde34compat/Makefile.in                                                        |only
 koffice-1.6.3/kexi/examples/Makefile.in                                                                |only
 koffice-1.6.3/kexi/formeditor/Makefile.in                                                              |only
 koffice-1.6.3/kexi/formeditor/factories/Makefile.in                                                    |only
 koffice-1.6.3/kexi/formeditor/kdevelop_plugin/Makefile.in                                              |only
 koffice-1.6.3/kexi/formeditor/scripting/Makefile.in                                                    |only
 koffice-1.6.3/kexi/formeditor/test/Makefile.in                                                         |only
 koffice-1.6.3/kexi/kexidb/Makefile.in                                                                  |only
 koffice-1.6.3/kexi/kexidb/drivers/Makefile.in                                                          |only
 koffice-1.6.3/kexi/kexidb/drivers/mySQL/Makefile.in                                                    |only
 koffice-1.6.3/kexi/kexidb/drivers/odbc/Makefile.in                                                     |only
 koffice-1.6.3/kexi/kexidb/drivers/pqxx/Makefile.in                                                     |only
 koffice-1.6.3/kexi/kexidb/drivers/sqlite/Makefile.in                                                   |only
 koffice-1.6.3/kexi/kexidb/drivers/sqlite2/Makefile.in                                                  |only
 koffice-1.6.3/kexi/kexidb/parser/Makefile.in                                                           |only
 koffice-1.6.3/kexi/kexiutils/Makefile.in                                                               |only
 koffice-1.6.3/kexi/main/Makefile.in                                                                    |only
 koffice-1.6.3/kexi/main/printing/Makefile.in                                                           |only
 koffice-1.6.3/kexi/main/startup/Makefile.in                                                            |only
 koffice-1.6.3/kexi/migration/Makefile.in                                                               |only
 koffice-1.6.3/kexi/migration/mysql/Makefile.in                                                         |only
 koffice-1.6.3/kexi/migration/pqxx/Makefile.in                                                          |only
 koffice-1.6.3/kexi/migration/txt/Makefile.in                                                           |only
 koffice-1.6.3/kexi/pics/Makefile.in                                                                    |only
 koffice-1.6.3/kexi/plugins/Makefile.in                                                                 |only
 koffice-1.6.3/kexi/plugins/forms/Makefile.in                                                           |only
 koffice-1.6.3/kexi/plugins/forms/widgets/Makefile.in                                                   |only
 koffice-1.6.3/kexi/plugins/importexport/Makefile.in                                                    |only
 koffice-1.6.3/kexi/plugins/importexport/csv/Makefile.in                                                |only
 koffice-1.6.3/kexi/plugins/macros/Makefile.in                                                          |only
 koffice-1.6.3/kexi/plugins/macros/kexiactions/Makefile.in                                              |only
 koffice-1.6.3/kexi/plugins/macros/kexipart/Makefile.in                                                 |only
 koffice-1.6.3/kexi/plugins/macros/lib/Makefile.in                                                      |only
 koffice-1.6.3/kexi/plugins/macros/tests/Makefile.in                                                    |only
 koffice-1.6.3/kexi/plugins/migration/Makefile.in                                                       |only
 koffice-1.6.3/kexi/plugins/queries/Makefile.in                                                         |only
 koffice-1.6.3/kexi/plugins/relations/Makefile.in                                                       |only
 koffice-1.6.3/kexi/plugins/reports/Makefile.in                                                         |only
 koffice-1.6.3/kexi/plugins/scripting/Makefile.in                                                       |only
 koffice-1.6.3/kexi/plugins/scripting/kexiapp/Makefile.in                                               |only
 koffice-1.6.3/kexi/plugins/scripting/kexidb/Makefile.in                                                |only
 koffice-1.6.3/kexi/plugins/scripting/kexiscripting/Makefile.in                                         |only
 koffice-1.6.3/kexi/plugins/scripting/scripts/Makefile.in                                               |only
 koffice-1.6.3/kexi/plugins/scripting/scripts/copycenter/Makefile.in                                    |only
 koffice-1.6.3/kexi/plugins/scripting/scripts/exportxhtml/Makefile.in                                   |only
 koffice-1.6.3/kexi/plugins/scripting/scripts/importxhtml/Makefile.in                                   |only
 koffice-1.6.3/kexi/plugins/scripting/scripts/projectdocumentor/Makefile.in                             |only
 koffice-1.6.3/kexi/plugins/scripting/scripts/python/Makefile.in                                        |only
 koffice-1.6.3/kexi/plugins/scripting/scripts/python/kexiapp/Makefile.in                                |only
 koffice-1.6.3/kexi/plugins/tables/Makefile.in                                                          |only
 koffice-1.6.3/kexi/tests/Makefile.in                                                                   |only
 koffice-1.6.3/kexi/tests/altertable/Makefile.in                                                        |only
 koffice-1.6.3/kexi/tests/newapi/Makefile.in                                                            |only
 koffice-1.6.3/kexi/tests/parser/Makefile.in                                                            |only
 koffice-1.6.3/kexi/tests/startup/Makefile.in                                                           |only
 koffice-1.6.3/kexi/tests/tableview/Makefile.in                                                         |only
 koffice-1.6.3/kexi/tests/widgets/Makefile.in                                                           |only
 koffice-1.6.3/kexi/tools/Makefile.in                                                                   |only
 koffice-1.6.3/kexi/tools/add_column/Makefile.in                                                        |only
 koffice-1.6.3/kexi/tools/delete_column/Makefile.in                                                     |only
 koffice-1.6.3/kexi/widget/Makefile.in                                                                  |only
 koffice-1.6.3/kexi/widget/relations/Makefile.in                                                        |only
 koffice-1.6.3/kexi/widget/tableview/Makefile.in                                                        |only
 koffice-1.6.3/kexi/widget/utils/Makefile.in                                                            |only
 koffice-1.6.3/kformula/Makefile.in                                                                     |only
 koffice-1.6.3/kformula/pics/Makefile.in                                                                |only
 koffice-1.6.3/kivio/Makefile.in                                                                        |only
 koffice-1.6.3/kivio/kiviopart/Makefile.in                                                              |only
 koffice-1.6.3/kivio/kiviopart/config/Makefile.in                                                       |only
 koffice-1.6.3/kivio/kiviopart/kiviosdk/Makefile.in                                                     |only
 koffice-1.6.3/kivio/kiviopart/pics/Makefile.in                                                         |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Assorted/Makefile.in                                        |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Circuit/Makefile.in                                         |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Cisco/Makefile.in                                           |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Civil/Makefile.in                                           |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Contact/Makefile.in                                         |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Electric/Makefile.in                                        |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Jigsaw/Makefile.in                                          |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/MSE/Makefile.in                                             |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Makefile.in                                                 |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Network/Makefile.in                                         |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Pneumatic/Makefile.in                                       |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/SDL/Makefile.in                                             |only
 koffice-1.6.3/kivio/kiviopart/stencils/Dia/Sybase/Makefile.in                                          |only
 koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/BasicFlowcharting/Makefile.in                      |only
 koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/Extended/Makefile.in                               |only
 koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/Logic/Makefile.in                                  |only
 koffice-1.6.3/kivio/kiviopart/stencils/Flowcharting/Makefile.in                                        |only
 koffice-1.6.3/kivio/kiviopart/stencils/Geographic/Flags/Makefile.in                                    |only
 koffice-1.6.3/kivio/kiviopart/stencils/Geographic/Makefile.in                                          |only
 koffice-1.6.3/kivio/kiviopart/stencils/Geographic/Maps/Makefile.in                                     |only
 koffice-1.6.3/kivio/kiviopart/stencils/Hardware/Computer/Makefile.in                                   |only
 koffice-1.6.3/kivio/kiviopart/stencils/Hardware/Makefile.in                                            |only
 koffice-1.6.3/kivio/kiviopart/stencils/Hardware/Miscellaneous/Makefile.in                              |only
 koffice-1.6.3/kivio/kiviopart/stencils/Makefile.in                                                     |only
 koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Arrows/Makefile.in                                |only
 koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Buildings/Makefile.in                             |only
 koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/ER/Makefile.in                                    |only
 koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Makefile.in                                       |only
 koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/NassiShneiderman/Makefile.in                      |only
 koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/People/Makefile.in                                |only
 koffice-1.6.3/kivio/kiviopart/stencils/Miscellaneous/Transport/Makefile.in                             |only
 koffice-1.6.3/kivio/kiviopart/stencils/UML/ActivityDiagrams/Makefile.in                                |only
 koffice-1.6.3/kivio/kiviopart/stencils/UML/ClassDiagrams/Makefile.in                                   |only
 koffice-1.6.3/kivio/kiviopart/stencils/UML/Makefile.in                                                 |only
 koffice-1.6.3/kivio/kiviopart/tiles/Makefile.in                                                        |only
 koffice-1.6.3/kivio/kiviopart/tools/Makefile.in                                                        |only
 koffice-1.6.3/kivio/kiviopart/ui/Makefile.in                                                           |only
 koffice-1.6.3/kivio/plugins/Makefile.in                                                                |only
 koffice-1.6.3/kivio/plugins/kivioconnectortool/Makefile.in                                             |only
 koffice-1.6.3/kivio/plugins/kivioconnectortool/straight_connector/Makefile.in                          |only
 koffice-1.6.3/kivio/plugins/kivioselecttool/Makefile.in                                                |only
 koffice-1.6.3/kivio/plugins/kivioselecttool/select_pics/Makefile.in                                    |only
 koffice-1.6.3/kivio/plugins/kiviosmlconnector/Makefile.in                                              |only
 koffice-1.6.3/kivio/plugins/kiviosmlconnector/sml_connector/Makefile.in                                |only
 koffice-1.6.3/kivio/plugins/kiviotargettool/Makefile.in                                                |only
 koffice-1.6.3/kivio/plugins/kiviotexttool/Makefile.in                                                  |only
 koffice-1.6.3/kivio/plugins/kiviozoomtool/Makefile.in                                                  |only
 koffice-1.6.3/kivio/plugins/kiviozoomtool/zoom_pics/Makefile.in                                        |only
 koffice-1.6.3/kivio/templates/Makefile.in                                                              |only
 koffice-1.6.3/kivio/templates/basic/Makefile.in                                                        |only
 koffice-1.6.3/koshell/Makefile.in                                                                      |only
 koffice-1.6.3/kounavail/Makefile.in                                                                    |only
 koffice-1.6.3/kplato/Makefile.in                                                                       |only
 koffice-1.6.3/kplato/pics/Makefile.in                                                                  |only
 koffice-1.6.3/kplato/reports/Makefile.in                                                               |only
 koffice-1.6.3/kplato/templates/Makefile.in                                                             |only
 koffice-1.6.3/kplato/templates/Simple/Makefile.in                                                      |only
 koffice-1.6.3/kplato/tests/Makefile.in                                                                 |only
 koffice-1.6.3/kplato/toolbar/Makefile.in                                                               |only
 koffice-1.6.3/kpresenter/Makefile.in                                                                   |only
 koffice-1.6.3/kpresenter/autoformEdit/Makefile.in                                                      |only
 koffice-1.6.3/kpresenter/autoforms/Arrows/Makefile.in                                                  |only
 koffice-1.6.3/kpresenter/autoforms/Connections/Makefile.in                                             |only
 koffice-1.6.3/kpresenter/autoforms/Makefile.in                                                         |only
 koffice-1.6.3/kpresenter/dtd/Makefile.in                                                               |only
 koffice-1.6.3/kpresenter/pics/Makefile.in                                                              |only
 koffice-1.6.3/kpresenter/pics/rotate/Makefile.in                                                       |only
 koffice-1.6.3/kpresenter/slideshow/Makefile.in                                                         |only
 koffice-1.6.3/kpresenter/templates/A4/Makefile.in                                                      |only
 koffice-1.6.3/kpresenter/templates/Makefile.in                                                         |only
 koffice-1.6.3/kpresenter/templates/Screen/Makefile.in                                                  |only
 koffice-1.6.3/kpresenter/templates/Screenpresentations/Makefile.in                                     |only
 koffice-1.6.3/kpresenter/templates/common_icon/Makefile.in                                             |only
 koffice-1.6.3/kpresenter/templates/legal/Makefile.in                                                   |only
 koffice-1.6.3/kpresenter/templates/letter/Makefile.in                                                  |only
 koffice-1.6.3/kpresenter/toolbar/Makefile.in                                                           |only
 koffice-1.6.3/krita/Makefile.in                                                                        |only
 koffice-1.6.3/krita/colorspaces/Makefile.in                                                            |only
 koffice-1.6.3/krita/colorspaces/cmyk_u16/Makefile.in                                                   |only
 koffice-1.6.3/krita/colorspaces/cmyk_u8/Makefile.in                                                    |only
 koffice-1.6.3/krita/colorspaces/cmyk_u8/templates/Makefile.in                                          |only
 koffice-1.6.3/krita/colorspaces/gray_u16/Makefile.in                                                   |only
 koffice-1.6.3/krita/colorspaces/gray_u8/Makefile.in                                                    |only
 koffice-1.6.3/krita/colorspaces/gray_u8/templates/Makefile.in                                          |only
 koffice-1.6.3/krita/colorspaces/gray_u8/tests/Makefile.in                                              |only
 koffice-1.6.3/krita/colorspaces/lms_f32/Makefile.in                                                    |only
 koffice-1.6.3/krita/colorspaces/rgb_f16half/Makefile.in                                                |only
 koffice-1.6.3/krita/colorspaces/rgb_f16half/tests/Makefile.in                                          |only
 koffice-1.6.3/krita/colorspaces/rgb_f32/Makefile.in                                                    |only
 koffice-1.6.3/krita/colorspaces/rgb_f32/tests/Makefile.in                                              |only
 koffice-1.6.3/krita/colorspaces/rgb_u16/Makefile.in                                                    |only
 koffice-1.6.3/krita/colorspaces/rgb_u16/tests/Makefile.in                                              |only
 koffice-1.6.3/krita/colorspaces/rgb_u8/Makefile.in                                                     |only
 koffice-1.6.3/krita/colorspaces/rgb_u8/templates/Makefile.in                                           |only
 koffice-1.6.3/krita/colorspaces/rgb_u8/tests/Makefile.in                                               |only
 koffice-1.6.3/krita/colorspaces/wet/Makefile.in                                                        |only
 koffice-1.6.3/krita/colorspaces/wetsticky/Makefile.in                                                  |only
 koffice-1.6.3/krita/colorspaces/wetsticky/brushop/Makefile.in                                          |only
 koffice-1.6.3/krita/colorspaces/ycbcr_u16/Makefile.in                                                  |only
 koffice-1.6.3/krita/colorspaces/ycbcr_u8/Makefile.in                                                   |only
 koffice-1.6.3/krita/core/Makefile.in                                                                   |only
 koffice-1.6.3/krita/core/tests/Makefile.in                                                             |only
 koffice-1.6.3/krita/core/tiles/Makefile.in                                                             |only
 koffice-1.6.3/krita/core/tiles/tests/Makefile.in                                                       |only
 koffice-1.6.3/krita/data/Makefile.in                                                                   |only
 koffice-1.6.3/krita/data/brushes/Makefile.in                                                           |only
 koffice-1.6.3/krita/data/gradients/Makefile.in                                                         |only
 koffice-1.6.3/krita/data/images/Makefile.in                                                            |only
 koffice-1.6.3/krita/data/palettes/Makefile.in                                                          |only
 koffice-1.6.3/krita/data/patterns/Makefile.in                                                          |only
 koffice-1.6.3/krita/data/profiles/Makefile.in                                                          |only
 koffice-1.6.3/krita/dtd/Makefile.in                                                                    |only
 koffice-1.6.3/krita/kritacolor/Makefile.in                                                             |only
 koffice-1.6.3/krita/kritacolor/colorspaces/Makefile.in                                                 |only
 koffice-1.6.3/krita/kritacolor/tests/Makefile.in                                                       |only
 koffice-1.6.3/krita/pics/Makefile.in                                                                   |only
 koffice-1.6.3/krita/plugins/Makefile.in                                                                |only
 koffice-1.6.3/krita/plugins/filters/Makefile.in                                                        |only
 koffice-1.6.3/krita/plugins/filters/blur/Makefile.in                                                   |only
 koffice-1.6.3/krita/plugins/filters/bumpmap/Makefile.in                                                |only
 koffice-1.6.3/krita/plugins/filters/cimg/Makefile.in                                                   |only
 koffice-1.6.3/krita/plugins/filters/colorify/Makefile.in                                               |only
 koffice-1.6.3/krita/plugins/filters/colors/Makefile.in                                                 |only
 koffice-1.6.3/krita/plugins/filters/colorsfilters/Makefile.in                                          |only
 koffice-1.6.3/krita/plugins/filters/convolutionfilters/Makefile.in                                     |only
 koffice-1.6.3/krita/plugins/filters/cubismfilter/Makefile.in                                           |only
 koffice-1.6.3/krita/plugins/filters/embossfilter/Makefile.in                                           |only
 koffice-1.6.3/krita/plugins/filters/example/Makefile.in                                                |only
 koffice-1.6.3/krita/plugins/filters/fastcolortransfer/Makefile.in                                      |only
 koffice-1.6.3/krita/plugins/filters/imageenhancement/Makefile.in                                       |only
 koffice-1.6.3/krita/plugins/filters/lenscorrectionfilter/Makefile.in                                   |only
 koffice-1.6.3/krita/plugins/filters/levelfilter/Makefile.in                                            |only
 koffice-1.6.3/krita/plugins/filters/noisefilter/Makefile.in                                            |only
 koffice-1.6.3/krita/plugins/filters/oilpaintfilter/Makefile.in                                         |only
 koffice-1.6.3/krita/plugins/filters/pixelizefilter/Makefile.in                                         |only
 koffice-1.6.3/krita/plugins/filters/raindropsfilter/Makefile.in                                        |only
 koffice-1.6.3/krita/plugins/filters/randompickfilter/Makefile.in                                       |only
 koffice-1.6.3/krita/plugins/filters/roundcorners/Makefile.in                                           |only
 koffice-1.6.3/krita/plugins/filters/smalltilesfilter/Makefile.in                                       |only
 koffice-1.6.3/krita/plugins/filters/sobelfilter/Makefile.in                                            |only
 koffice-1.6.3/krita/plugins/filters/threadtest/Makefile.in                                             |only
 koffice-1.6.3/krita/plugins/filters/unsharp/Makefile.in                                                |only
 koffice-1.6.3/krita/plugins/filters/wavefilter/Makefile.in                                             |only
 koffice-1.6.3/krita/plugins/paintops/Makefile.in                                                       |only
 koffice-1.6.3/krita/plugins/paintops/defaultpaintops/Makefile.in                                       |only
 koffice-1.6.3/krita/plugins/tools/Makefile.in                                                          |only
 koffice-1.6.3/krita/plugins/tools/defaulttools/Makefile.in                                             |only
 koffice-1.6.3/krita/plugins/tools/selectiontools/Makefile.in                                           |only
 koffice-1.6.3/krita/plugins/tools/tool_crop/Makefile.in                                                |only
 koffice-1.6.3/krita/plugins/tools/tool_curves/Makefile.in                                              |only
 koffice-1.6.3/krita/plugins/tools/tool_filter/Makefile.in                                              |only
 koffice-1.6.3/krita/plugins/tools/tool_perspectivegrid/Makefile.in                                     |only
 koffice-1.6.3/krita/plugins/tools/tool_perspectivetransform/Makefile.in                                |only
 koffice-1.6.3/krita/plugins/tools/tool_polygon/Makefile.in                                             |only
 koffice-1.6.3/krita/plugins/tools/tool_polyline/Makefile.in                                            |only
 koffice-1.6.3/krita/plugins/tools/tool_selectsimilar/Makefile.in                                       |only
 koffice-1.6.3/krita/plugins/tools/tool_star/Makefile.in                                                |only
 koffice-1.6.3/krita/plugins/tools/tool_transform/Makefile.in                                           |only
 koffice-1.6.3/krita/plugins/viewplugins/Makefile.in                                                    |only
 koffice-1.6.3/krita/plugins/viewplugins/colorrange/Makefile.in                                         |only
 koffice-1.6.3/krita/plugins/viewplugins/colorspaceconversion/Makefile.in                               |only
 koffice-1.6.3/krita/plugins/viewplugins/dropshadow/Makefile.in                                         |only
 koffice-1.6.3/krita/plugins/viewplugins/filtersgallery/Makefile.in                                     |only
 koffice-1.6.3/krita/plugins/viewplugins/histogram/Makefile.in                                          |only
 koffice-1.6.3/krita/plugins/viewplugins/histogram_docker/Makefile.in                                   |only
 koffice-1.6.3/krita/plugins/viewplugins/history_docker/Makefile.in                                     |only
 koffice-1.6.3/krita/plugins/viewplugins/imagesize/Makefile.in                                          |only
 koffice-1.6.3/krita/plugins/viewplugins/modify_selection/Makefile.in                                   |only
 koffice-1.6.3/krita/plugins/viewplugins/performancetest/Makefile.in                                    |only
 koffice-1.6.3/krita/plugins/viewplugins/rotateimage/Makefile.in                                        |only
 koffice-1.6.3/krita/plugins/viewplugins/screenshot/Makefile.in                                         |only
 koffice-1.6.3/krita/plugins/viewplugins/scripting/Makefile.in                                          |only
 koffice-1.6.3/krita/plugins/viewplugins/scripting/kritacore/Makefile.in                                |only
 koffice-1.6.3/krita/plugins/viewplugins/scripting/kritascripting/Makefile.in                           |only
 koffice-1.6.3/krita/plugins/viewplugins/scripting/samples/Makefile.in                                  |only
 koffice-1.6.3/krita/plugins/viewplugins/scripting/samples/python/Makefile.in                           |only
 koffice-1.6.3/krita/plugins/viewplugins/scripting/samples/ruby/Makefile.in                             |only
 koffice-1.6.3/krita/plugins/viewplugins/selectopaque/Makefile.in                                       |only
 koffice-1.6.3/krita/plugins/viewplugins/separate_channels/Makefile.in                                  |only
 koffice-1.6.3/krita/plugins/viewplugins/shearimage/Makefile.in                                         |only
 koffice-1.6.3/krita/plugins/viewplugins/substrate/Makefile.in                                          |only
 koffice-1.6.3/krita/plugins/viewplugins/variations/Makefile.in                                         |only
 koffice-1.6.3/krita/sdk/Makefile.in                                                                    |only
 koffice-1.6.3/krita/ui/Makefile.in                                                                     |only
 koffice-1.6.3/kspread/Makefile.in                                                                      |only
 koffice-1.6.3/kspread/dialogs/Makefile.in                                                              |only
 koffice-1.6.3/kspread/dtd/Makefile.in                                                                  |only
 koffice-1.6.3/kspread/extensions/Makefile.in                                                           |only
 koffice-1.6.3/kspread/pics/Makefile.in                                                                 |only
 koffice-1.6.3/kspread/plugins/Makefile.in                                                              |only
 koffice-1.6.3/kspread/plugins/calculator/Makefile.in                                                   |only
 koffice-1.6.3/kspread/plugins/calculator/pics/Makefile.in                                              |only
 koffice-1.6.3/kspread/plugins/insertcalendar/Makefile.in                                               |only
 koffice-1.6.3/kspread/plugins/scripting/Makefile.in                                                    |only
 koffice-1.6.3/kspread/plugins/scripting/kspreadcore/Makefile.in                                        |only
 koffice-1.6.3/kspread/plugins/scripting/scripts/Makefile.in                                            |only
 koffice-1.6.3/kspread/plugins/scripting/scripts/exporthtml/Makefile.in                                 |only
 koffice-1.6.3/kspread/plugins/scripting/scripts/scripteditor/Makefile.in                               |only
 koffice-1.6.3/kspread/sheetstyles/Makefile.in                                                          |only
 koffice-1.6.3/kspread/templates/Business/Makefile.in                                                   |only
 koffice-1.6.3/kspread/templates/General/Makefile.in                                                    |only
 koffice-1.6.3/kspread/templates/HomeFamily/Makefile.in                                                 |only
 koffice-1.6.3/kspread/templates/Makefile.in                                                            |only
 koffice-1.6.3/kspread/tests/Makefile.in                                                                |only
 koffice-1.6.3/kspread/toolbar/Makefile.in                                                              |only
 koffice-1.6.3/kspread/toolbar/crystalsvg/Makefile.in                                                   |only
 koffice-1.6.3/kugar/Makefile.in                                                                        |only
 koffice-1.6.3/kugar/kudesigner/Makefile.in                                                             |only
 koffice-1.6.3/kugar/kudesigner/pics/Makefile.in                                                        |only
 koffice-1.6.3/kugar/kudesigner/templates/General/Makefile.in                                           |only
 koffice-1.6.3/kugar/kudesigner/templates/Makefile.in                                                   |only
 koffice-1.6.3/kugar/kudesigner/toolbar/Makefile.in                                                     |only
 koffice-1.6.3/kugar/kudesigner_lib/Makefile.in                                                         |only
 koffice-1.6.3/kugar/lib/Makefile.in                                                                    |only
 koffice-1.6.3/kugar/part/Makefile.in                                                                   |only
 koffice-1.6.3/kugar/samples/Makefile.in                                                                |only
 koffice-1.6.3/kword/Makefile.in                                                                        |only
 koffice-1.6.3/kword/data/Makefile.in                                                                   |only
 koffice-1.6.3/kword/dtd/Makefile.in                                                                    |only
 koffice-1.6.3/kword/expression/Makefile.in                                                             |only
 koffice-1.6.3/kword/horizontalline/Makefile.in                                                         |only
 koffice-1.6.3/kword/mailmerge/Makefile.in                                                              |only
 koffice-1.6.3/kword/mailmerge/kabc/Makefile.in                                                         |only
 koffice-1.6.3/kword/mailmerge/kspread/Makefile.in                                                      |only
 koffice-1.6.3/kword/mailmerge/sql/Makefile.in                                                          |only
 koffice-1.6.3/kword/pics/Makefile.in                                                                   |only
 koffice-1.6.3/kword/templates/CardsAndLabels/Makefile.in                                               |only
 koffice-1.6.3/kword/templates/Envelopes/Makefile.in                                                    |only
 koffice-1.6.3/kword/templates/Makefile.in                                                              |only
 koffice-1.6.3/kword/templates/Wordprocessing/Makefile.in                                               |only
 koffice-1.6.3/kword/tests/Makefile.in                                                                  |only
 koffice-1.6.3/kword/toolbar/Makefile.in                                                                |only
 koffice-1.6.3/lib/Makefile.in                                                                          |only
 koffice-1.6.3/lib/kformula/Makefile.in                                                                 |only
 koffice-1.6.3/lib/kformula/config/Makefile.in                                                          |only
 koffice-1.6.3/lib/kformula/dtd/Makefile.in                                                             |only
 koffice-1.6.3/lib/kformula/fonts/Makefile.in                                                           |only
 koffice-1.6.3/lib/kformula/pics/Makefile.in                                                            |only
 koffice-1.6.3/lib/kformula/pics/crystalsvg/Makefile.in                                                 |only
 koffice-1.6.3/lib/kofficecore/Makefile.in                                                              |only
 koffice-1.6.3/lib/kofficecore/tests/Makefile.in                                                        |only
 koffice-1.6.3/lib/kofficeui/Makefile.in                                                                |only
 koffice-1.6.3/lib/kofficeui/pics/Makefile.in                                                           |only
 koffice-1.6.3/lib/kofficeui/tests/Makefile.in                                                          |only
 koffice-1.6.3/lib/kopainter/Makefile.in                                                                |only
 koffice-1.6.3/lib/kopalette/Makefile.in                                                                |only
 koffice-1.6.3/lib/koproperty/Makefile.in                                                               |only
 koffice-1.6.3/lib/koproperty/editors/Makefile.in                                                       |only
 koffice-1.6.3/lib/koproperty/test/Makefile.in                                                          |only
 koffice-1.6.3/lib/kotext/Makefile.in                                                                   |only
 koffice-1.6.3/lib/kotext/kohyphen/Makefile.in                                                          |only
 koffice-1.6.3/lib/kotext/kohyphen/hyphdicts/Makefile.in                                                |only
 koffice-1.6.3/lib/kotext/tests/Makefile.in                                                             |only
 koffice-1.6.3/lib/kross/Makefile.in                                                                    |only
 koffice-1.6.3/lib/kross/api/Makefile.in                                                                |only
 koffice-1.6.3/lib/kross/main/Makefile.in                                                               |only
 koffice-1.6.3/lib/kross/python/Makefile.in                                                             |only
 koffice-1.6.3/lib/kross/python/cxx/Makefile.in                                                         |only
 koffice-1.6.3/lib/kross/python/scripts/Makefile.in                                                     |only
 koffice-1.6.3/lib/kross/python/scripts/RestrictedPython/Makefile.in                                    |only
 koffice-1.6.3/lib/kross/ruby/Makefile.in                                                               |only
 koffice-1.6.3/lib/kross/runner/Makefile.in                                                             |only
 koffice-1.6.3/lib/kross/test/Makefile.in                                                               |only
 koffice-1.6.3/lib/kwmf/Makefile.in                                                                     |only
 koffice-1.6.3/lib/store/Makefile.in                                                                    |only
 koffice-1.6.3/lib/store/tests/Makefile.in                                                              |only
 koffice-1.6.3/mimetypes/Makefile.in                                                                    |only
 koffice-1.6.3/mimetypes/kde33/Makefile.in                                                              |only
 koffice-1.6.3/mimetypes/kde351/Makefile.in                                                             |only
 koffice-1.6.3/pics/Makefile.in                                                                         |only
 koffice-1.6.3/pics/crystalsvg/Makefile.in                                                              |only
 koffice-1.6.3/plugins/Makefile.in                                                                      |only
 koffice-1.6.3/plugins/scan/Makefile.in                                                                 |only
 koffice-1.6.3/servicetypes/Makefile.in                                                                 |only
 koffice-1.6.3/templates/Makefile.in                                                                    |only
 koffice-1.6.3/tools/Makefile.in                                                                        |only
 koffice-1.6.3/tools/converter/Makefile.in                                                              |only
 koffice-1.6.3/tools/kfile-plugins/Makefile.in                                                          |only
 koffice-1.6.3/tools/kfile-plugins/abiword/Makefile.in                                                  |only
 koffice-1.6.3/tools/kfile-plugins/gnumeric/Makefile.in                                                 |only
 koffice-1.6.3/tools/kfile-plugins/koffice/Makefile.in                                                  |only
 koffice-1.6.3/tools/kfile-plugins/ooo/Makefile.in                                                      |only
 koffice-1.6.3/tools/kthesaurus/Makefile.in                                                             |only
 koffice-1.6.3/tools/quickprint/Makefile.in                                                             |only
 koffice-1.6.3/tools/spell/Makefile.in                                                                  |only
 koffice-1.6.3/tools/thesaurus/Makefile.in                                                              |only
 koffice-1.6.3/tools/thumbnail/Makefile.in                                                              |only
 1156 files changed, 5215 insertions(+), 2017 deletions(-)

--- NEW FILE koffice-20090306svn.patch ---
Only in koffice-1.6.3/: acinclude.m4
Only in koffice-1.6.3/: aclocal.m4
diff -urbB --minimal --exclude=.svn koffice-1.6.3/admin/acinclude.m4.in koffice-1.6-branch/admin/acinclude.m4.in
--- koffice-1.6.3/admin/acinclude.m4.in	2007-05-30 16:50:22.000000000 -0500
+++ koffice-1.6-branch/admin/acinclude.m4.in	2008-11-03 12:17:22.000000000 -0600
@@ -1226,7 +1226,15 @@
   kde_qt_dirs="$QTDIR /usr/lib/qt4 /usr/lib/qt /usr/share/qt4"
 fi
 if test $kde_qtver = 3; then
-  kde_qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3"
+  kde_qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3 /usr/lib${kdelibsuff}/qt-3.3"
+  if test -z "$PKG_CONFIG"; then
+      AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+  fi
+  if test "$PKG_CONFIG" != "no" ; then
+    if $PKG_CONFIG --exists qt-mt ; then
+       kde_qt_dirs="$kde_qt_dirs `$PKG_CONFIG --variable=prefix qt-mt`"
+    fi
+  fi
 fi
 if test $kde_qtver = 2; then
    kde_qt_dirs="$QTDIR /usr/lib/qt2 /usr/lib/qt"
@@ -1443,6 +1451,14 @@
 for dir in $kde_qt_dirs; do
    qt_incdirs="$qt_incdirs $dir/include $dir"
 done
+if test -z "$PKG_CONFIG"; then
+    AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+fi
+if test "$PKG_CONFIG" != "no" ; then
+  if $PKG_CONFIG --exists qt-mt ; then
+      qt_incdirs="$qt_incdirs `$PKG_CONFIG --variable=includedir qt-mt`"
+  fi
+fi
 qt_incdirs="$QTINC $qt_incdirs /usr/local/qt/include /usr/include/qt /usr/include /usr/X11R6/include/X11/qt /usr/X11R6/include/qt /usr/X11R6/include/qt2 /usr/include/qt3 $x_includes"
 if test ! "$ac_qt_includes" = "NO"; then
    qt_incdirs="$ac_qt_includes $qt_incdirs"
@@ -1459,8 +1475,16 @@
 
 qt_libdirs=""
 for dir in $kde_qt_dirs; do
-   qt_libdirs="$qt_libdirs $dir/lib${kdelibsuff} $dir"
+   qt_libdirs="$qt_libdirs $dir/lib${kdelibsuff} $dir/lib $dir"
 done
+if test -z "$PKG_CONFIG"; then
+    AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+fi
+if test "$PKG_CONFIG" != "no" ; then
+  if $PKG_CONFIG --exists qt-mt ; then
+      qt_libdirs="$qt_incdirs `$PKG_CONFIG --variable=libdir qt-mt`"
+  fi
+fi
 qt_libdirs="$QTLIB $qt_libdirs /usr/X11R6/lib /usr/lib /usr/local/qt/lib $x_libraries"
 if test ! "$ac_qt_libraries" = "NO"; then
   qt_libdir=$ac_qt_libraries
@@ -2631,6 +2655,7 @@
 AC_TRY_LINK(dnl
 [
 #include<zlib.h>
+#include<string.h>
 ],
 [
   char buf[42];
@@ -2638,7 +2663,7 @@
   /* this would segfault.. but we only link, don't run */
   (void) gzgets(f, buf, sizeof(buf));
 
-  return (zlibVersion() == ZLIB_VERSION); 
+  return (strcmp(zlibVersion(), ZLIB_VERSION) == 0);
 ],
             eval "ac_cv_lib_z='-lz'",
             eval "ac_cv_lib_z=no")
@@ -2738,11 +2763,11 @@
      echo "*** to the full path to pkg-config."
      echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
   else
-     if !(`$PKG_CONFIG --exists OpenEXR`) ; then
+     if ! $PKG_CONFIG --exists OpenEXR ; then
         AC_MSG_RESULT(no)
         EXRSTATUS=no
      else
-        if !(`$PKG_CONFIG --atleast-version="1.1.1" OpenEXR`) ; then
+        if ! $PKG_CONFIG --atleast-version="1.1.1" OpenEXR ; then
            AC_MSG_RESULT(no)
            EXRSTATUS=old
         else
@@ -4624,7 +4649,8 @@
 
 AC_DEFUN([KDE_CHECK_PYTHON],
 [
-  KDE_CHECK_PYTHON_INTERN("2.5",
+  KDE_CHECK_PYTHON_INTERN("2.6",
+    [KDE_CHECK_PYTHON_INTERN("2.5",
     [KDE_CHECK_PYTHON_INTERN("2.4",
      [KDE_CHECK_PYTHON_INTERN("2.3", 
        [KDE_CHECK_PYTHON_INTERN("2.2", 
@@ -4636,6 +4662,7 @@
        ])
      ])
   ])
+    ])
 ])
 
 AC_DEFUN([KDE_CHECK_STL],
diff -urbB --minimal --exclude=.svn koffice-1.6.3/admin/cvs.sh koffice-1.6-branch/admin/cvs.sh
--- koffice-1.6.3/admin/cvs.sh	2007-05-30 16:50:22.000000000 -0500
+++ koffice-1.6-branch/admin/cvs.sh	2008-11-03 12:17:22.000000000 -0600
@@ -316,7 +316,7 @@
    fi
 fi
 if test -z "$VERSION" || test "$VERSION" = "@VERSION@"; then
-     VERSION="\"3.5.7\""
+     VERSION="\"3.5.10\""
 fi
 if test -z "$modulename" || test "$modulename" = "@MODULENAME@"; then
    modulename=`pwd`; 
diff -urbB --minimal --exclude=.svn koffice-1.6.3/admin/detect-autoconf.pl koffice-1.6-branch/admin/detect-autoconf.pl
--- koffice-1.6.3/admin/detect-autoconf.pl	2007-05-30 16:50:22.000000000 -0500
+++ koffice-1.6-branch/admin/detect-autoconf.pl	2008-11-03 12:17:22.000000000 -0600
@@ -21,6 +21,73 @@
     return "";
 }
 
+# Subroutine to lexicographically compare two version strings, a and b.
+# If a > b, 1 is returned.
+# If a == b, 0 is returned.
+# If a < b, -1 is returned.
+#
+# If the strings are of uneven number length then the shorter string is
+# prepended by enough zeroes to make the two string lengths equal in order to
+# allow an accurate comparison.  Note that the zero-padding only occurs in
+# between version separators (i.e. 1.6 and 1.10, results in 1.06 vs. 1.10).
+# Parts of the version ending in -foo (or any other text) are not considered
+# when doing the compare. (i.e. 2.53a vs 2.53 doesn't end up in 2.53a vs.
+# 2.053)
+sub compareVersions
+{
+    my ($a, $b) = @_;
+
+    # Split the strings up by '.' (version separator) and start comparing digit
+    # length.
+
+    my @aParts = split(/\./, $a);
+    my @bParts = split(/\./, $b);
+
+    # Make the arrays equal in length by adding missing zeroes to the end of the
+    # version.
+    push @aParts, '0' while scalar @aParts < scalar @bParts;
+    push @bParts, '0' while scalar @bParts < scalar @aParts;
+
+    # Now compare each individual portion.
+    for (my $i = 0; $i < scalar @aParts; ++$i)
+    {
+	# Make sure that any portion that has numbers is contiguous.  I'm sure
+	# there's a technique for saving stuff like 2.52a2 but I don't feel
+	# like implementing it.
+	if ($aParts[$i] !~ /^[^\d]*\d+[^\d]*$/ or
+	    $bParts[$i] !~ /^[^\d]*\d+[^\d]*$/)
+	{
+	    die "Not able to compare $a to $b!\n";
+	}
+
+	my ($aDigits) = ($aParts[$i] =~ /(\d+)/);
+	my ($bDigits) = ($bParts[$i] =~ /(\d+)/);
+
+	# Perl is $MODERATELY_INSULTING_TERM, don't remove the parentheses in
+	# the delta calculation below.
+	my $delta = (length $aDigits) - (length $bDigits);
+	if ($delta < 0) # b is longer
+	{
+	    my $replacement = ('0' x (-$delta)) . $aDigits;
+	    $aParts[$i] =~ s/$aDigits/$replacement/;
+	}
+	elsif ($delta > 0) # a is longer
+	{
+	    my $replacement = ('0' x $delta) . $bDigits;
+	    $bParts[$i] =~ s/$bDigits/$replacement/;
+	}
+    }
+
+    # Arrays now have standardized version components, let's re-merge them
+    # to strings to do the compare.
+    my $newA = join('.', @aParts);
+    my $newB = join('.', @bParts);
+
+    return 1 if ($newA gt $newB);
+    return -1 if ($newA lt $newB);
+    return 0;
+}
+
 # Subroutine to determine the highest installed version of the given program,
 # searching from the given paths.
 sub findBest
@@ -32,6 +99,7 @@
  	'autoconf' => '2.5',
 	'automake' => '1.6',
     );
+    my $sgn; # Used for compareVersions results.
 
[...25664 lines suppressed...]
+Comment[lt]=Patikrinti šio žodžio rašybą
 Comment[lv]=Pārbaudīt šī vārda pareizrakstību
 Comment[ms]=Semak Ejaan Kata ini
 Comment[mt]=Iċċekkja kif tispelli dil-kelma
@@ -119,7 +122,8 @@
 Comment[th]=ตรวจสอบคำสะกดของคำนี้
 Comment[tr]=Bu Kelimenin İmla Denetimini Yap
 Comment[uk]=Перевірити правопис цього слова
-Comment[uz]=Шу сўзнинг имлосини текшириш
+Comment[uz]=Shu soʻzning imlosini tekshirish
+Comment[uz at cyrillic]=Шу сўзнинг имлосини текшириш
 Comment[wa]=Coridjî l' ortografeye di ç' mot ci...
 Comment[xh]=Khangela olu Pelo Magama
 Comment[zh_CN]=检查该词拼写
Only in koffice-1.6.3/tools/spell: Makefile.in
diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/spell/uninstall.desktop koffice-1.6-branch/tools/spell/uninstall.desktop
--- koffice-1.6.3/tools/spell/uninstall.desktop	2007-05-30 16:36:09.000000000 -0500
+++ koffice-1.6-branch/tools/spell/uninstall.desktop	2008-11-03 11:55:08.000000000 -0600
@@ -1,3 +1,2 @@
 [Desktop Entry]
-Encoding=UTF-8
 Hidden=true
Only in koffice-1.6.3/tools/thesaurus: Makefile.in
diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thesaurus/thesaurustool.desktop koffice-1.6-branch/tools/thesaurus/thesaurustool.desktop
--- koffice-1.6.3/tools/thesaurus/thesaurustool.desktop	2007-05-30 16:36:11.000000000 -0500
+++ koffice-1.6-branch/tools/thesaurus/thesaurustool.desktop	2008-11-03 11:55:11.000000000 -0600
@@ -1,5 +1,4 @@
 [Desktop Entry]
-Encoding=UTF-8
 Icon=
 Name=Thesaurus Tool
 Name[af]=Thesaurus Program
@@ -14,13 +13,14 @@
 Name[da]=Thesaurusværktøj
 Name[de]=Thesaurus-Werkzeug
 Name[el]=Εργαλείο συνωνύμων
-Name[eo]=Tezaŭro
+Name[eo]=Tezaŭrilo
 Name[es]=Herramienta de Thesaurus
 Name[et]=Tesaurus
 Name[eu]=Thesaurus tresna
 Name[fa]=ابزار Thesaurus
 Name[fi]=Synonyymisanakirja
 Name[fr]=Outil Thésaurus
+Name[fy]=Thesaurus ark
 Name[gl]=Ferramenta de Sinónimos
 Name[he]=כלי אגרון
 Name[hi]=समांतर शब्दकोश का औजार
@@ -40,7 +40,7 @@
 Name[ne]=पर्यायकोश उपकरण
 Name[nl]=Thesaurus hulpprogramma
 Name[nn]=Synonymordbok
-Name[pl]=Thesaurus
+Name[pl]=Tezaurus
 Name[pt]=Ferramenta de Sinónimos
 Name[pt_BR]=Ferramenta Thesaurus
 Name[ru]=Тезаурус
@@ -55,7 +55,8 @@
 Name[th]=เครื่องมือคำพ้อง
 Name[tr]=Thesaurus Aracı
 Name[uk]=Засіб синонімів
-Name[uz]=Тезаурус воситаси
+Name[uz]=Tezaurus vositasi
+Name[uz at cyrillic]=Тезаурус воситаси
 Name[xh]=Isixhobo se Thesaurus
 Name[zh_CN]=词典工具
 Name[zh_TW]=同義字工具
@@ -65,7 +66,7 @@
 Comment=Show Related Words
 Comment[af]=Vertoon Verwanter Woorde
 Comment[ar]=إظهار الكلمات ذات العلاقة
-Comment[bg]=Търсене за синоними на думата
+Comment[bg]=Търсене на синоними
 Comment[bs]=Prikaži srodne riječi
 Comment[ca]=Mostra paraules relacionades
 Comment[cs]=Zobrazit podobná slova
@@ -80,6 +81,7 @@
 Comment[fa]=نمایش واژه‌های مربوط
 Comment[fi]=Näytä samankaltaiset sanat
 Comment[fr]=Afficher les mots liés
+Comment[fy]=Ferlykbere wurden sjen litte
 Comment[gl]=Mostrar as Palabras Relacionadas
 Comment[he]=הצג מילים קשורות
 Comment[hi]=सम्बन्धित शब्द दिखाएँ
@@ -90,11 +92,12 @@
 Comment[ja]=類義語を表示
 Comment[km]=បង្ហាញ​ពាក្យ​ដែល​ទាក់ទង
 Comment[lo]=ສະແດງຄໍາທີ່ສໍາພັນກັນ
+Comment[lt]=Parodyti susijusius žodžius
 Comment[lv]=Rādīt saistītos vārdus
 Comment[ms]=Tayang Kata Berkaitan
 Comment[mt]=Uri kliem relatati
 Comment[nb]=Vis ord som ligner
-Comment[nds]=Tohören Wöör wiesen
+Comment[nds]=Lieke Wöör wiesen
 Comment[ne]=सम्बन्धित शब्दहरू देखाउनुहोस्
 Comment[nl]=Toon gerelateerde woorden
 Comment[nn]=Vis nærskylde ord
@@ -112,7 +115,8 @@
 Comment[th]=แสดงคำที่สัมพันธ์กัน
 Comment[tr]=İlgili Kelimeleri Göster
 Comment[uk]=Показати пов'язані слова
-Comment[uz]=Боғлиқ бўлган сўзларни кўрсатиш
+Comment[uz]=Bogʻliq boʻlgan soʻzlarni koʻrsatish
+Comment[uz at cyrillic]=Боғлиқ бўлган сўзларни кўрсатиш
 Comment[wa]=Mostrer les mots k' ont-st a vey avou
 Comment[xh]=Bonisa Amagama Ahlobeneyo
 Comment[zh_CN]=显示相关单词
diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thumbnail/clipartthumbnail.desktop koffice-1.6-branch/tools/thumbnail/clipartthumbnail.desktop
--- koffice-1.6.3/tools/thumbnail/clipartthumbnail.desktop	2007-05-30 16:36:12.000000000 -0500
+++ koffice-1.6-branch/tools/thumbnail/clipartthumbnail.desktop	2008-11-03 11:55:13.000000000 -0600
@@ -1,5 +1,4 @@
 [Desktop Entry]
-Encoding=UTF-8
 Type=Service
 Name=Clipart
 Name[af]=Kitskuns
@@ -36,7 +35,8 @@
 Name[sr at Latn]=Isečci
 Name[th]=คลิปอาร์ต
 Name[uk]=Ілюстрації
-Name[uz]=Клипарт
+Name[uz]=Klipart
+Name[uz at cyrillic]=Клипарт
 Name[zh_CN]=剪贴画
 Name[zh_TW]=剪貼板
 ServiceTypes=ThumbCreator
diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thumbnail/kofficethumbnail.desktop koffice-1.6-branch/tools/thumbnail/kofficethumbnail.desktop
--- koffice-1.6.3/tools/thumbnail/kofficethumbnail.desktop	2007-05-30 16:36:12.000000000 -0500
+++ koffice-1.6-branch/tools/thumbnail/kofficethumbnail.desktop	2008-11-03 11:55:13.000000000 -0600
@@ -1,5 +1,4 @@
 [Desktop Entry]
-Encoding=UTF-8
 Type=Service
 Name=KOffice Files
 Name[af]=Koffice Lêers
@@ -13,7 +12,7 @@
 Name[da]=KOffice-filer
 Name[de]=KOffice-Dateien
 Name[el]=Αρχεία KOffice
-Name[eo]=KOficejo-dosieroj
+Name[eo]=KOffice-dosieroj
 Name[es]=Archivos de KOffice
 Name[et]=KOffice'i failid
 Name[eu]=KOffice-en fitxategiak
@@ -21,6 +20,7 @@
 Name[fi]=KOffice-tiedostot
 Name[fo]=KSkrivstovu-fílir
 Name[fr]=Fichiers KOffice
+Name[fy]=KOffice-triemmen
 Name[ga]=Comhaid KOffice
 Name[gl]=Ficheiros de KOffice
 Name[he]=קבצי KOffice
@@ -58,7 +58,8 @@
 Name[th]=แฟ้มของโปรแกรมชุดสำนักงาน K
 Name[tr]=KOffice Dosyaları
 Name[uk]=Файли KOffice
-Name[uz]=KOffice файллари
+Name[uz]=KOffice fayllari
+Name[uz at cyrillic]=KOffice файллари
 Name[wa]=Fitchîs KOffice
 Name[xh]=Iifayile ze KOffice
 Name[zh_CN]=KOffice 文件
Only in koffice-1.6.3/tools/thumbnail: Makefile.in
diff -urbB --minimal --exclude=.svn koffice-1.6.3/tools/thumbnail/otherofficethumbnail.desktop koffice-1.6-branch/tools/thumbnail/otherofficethumbnail.desktop
--- koffice-1.6.3/tools/thumbnail/otherofficethumbnail.desktop	2007-05-30 16:36:12.000000000 -0500
+++ koffice-1.6-branch/tools/thumbnail/otherofficethumbnail.desktop	2009-03-06 14:55:19.000000000 -0600
@@ -1,5 +1,4 @@
 [Desktop Entry]
-Encoding=UTF-8
 Type=Service
 Name=Other Office Files
 Name[af]=Ander Kantoor Lêers
@@ -21,6 +20,7 @@
 Name[fi]=Muut toimistotiedostot
 Name[fo]=Aðrar skrivstovufílir
 Name[fr]=Autres documents bureautiques
+Name[fy]=Oare office triemmen
 Name[gl]=Outros Ficheiros de KOffice
 Name[he]=קבצי Office אחרים
 Name[hi]=अन्य ऑफ़िस फ़ाइलें
@@ -43,7 +43,7 @@
 Name[pa]=ਹੋਰ ਦਫਤਰੀ ਫਾਇਲਾਂ
 Name[pl]=Inne pliki biurowe
 Name[pt]=Outros Ficheiros de Escritório
-Name[pt_BR]=Outros Arquivos Office
+Name[pt_BR]=Outros arquivos Office
 Name[ro]=Alte fişiere KOffice
 Name[ru]=Другие файлы Office
 Name[se]=Eará Office-fiillat
@@ -57,7 +57,8 @@
 Name[th]=แฟ้มโปรแกรมสำนักงานตัวอื่น
 Name[tr]=Diğer Ofis Dosyaları
 Name[uk]=Інші файли KOffice
-Name[uz]=Идора учун бошқа файллар
+Name[uz]=Idora uchun boshqa fayllar
+Name[uz at cyrillic]=Идора учун бошқа файллар
 Name[wa]=Ôtes fitchîs di buro
 Name[xh]=Ezinye Iifayile ze Office
 Name[zh_CN]=其它 Office 文件


--- NEW FILE koffice-svn_checkout.sh ---
#!/bin/bash

DATE=$(date +%Y%m%d)
EXPORT_DIR=koffice

set -x
rm -rf $EXPORT_DIR

# app
svn export svn://anonsvn.kde.org/home/kde/branches/koffice/1.6/koffice/ $EXPORT_DIR/

tar cjf $EXPORT_DIR-${DATE}svn.tar.bz2 $EXPORT_DIR

# cleanup
rm -rf $EXPORT_DIR



Index: koffice.spec
===================================================================
RCS file: /cvs/pkgs/rpms/koffice/F-10/koffice.spec,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -p -r1.82 -r1.83
--- koffice.spec	27 Feb 2009 13:51:03 -0000	1.82
+++ koffice.spec	28 Jul 2009 20:53:21 -0000	1.83
@@ -6,10 +6,12 @@
 BuildRequires: libutempter-devel
 %endif
 
+%define svn 20090306
+
 Name:           koffice
-Epoch:          1
+Epoch:          2
 Version:        1.6.3
-Release:        17%{?dist}
+Release:        22.%{svn}svn%{?dist}
 Summary:        An integrated office suite
 
 Group:          Applications/Productivity
@@ -20,6 +22,17 @@ BuildRoot:      %{_tmppath}/%{name}-%{ve
 
 Source100:      koshell.png
 
+Patch50: koffice-1.6.3-glibc_strrchr.patch
+
+## hand-crafted patch, pretty close to:
+# LANG=en_US.UTF-8 svn diff \
+#  svn://anonsvn.kde.org/home/kde/tags/koffice/1.6.3/koffice \
+#  svn://anonsvn.kde.org/home/kde/branches/koffice/1.6/koffice \
+#  > koffice-%{svn}svn.patch
+Patch100: koffice-%{svn}svn.patch
+# Revert backport from  https://bugs.kde.org/show_bug.cgi?id=168548
+Patch101: koffice-1.6.3-quint32.patch
+
 # http://www.kde.org/info/security/advisory-20070730-1.txt
 Patch1: ftp://ftp.kde.org/pub/kde/security_patches/koffice-xpdf-CVE-2007-3387.diff
 
@@ -31,12 +44,14 @@ Patch2: ftp://ftp.kde.org/pub/kde/securi
 # svn diff -c 738929 svn://anonsvn.kde.org/home/kde/branches/koffice/1.6/
 Patch3: koffice-1.6.3-gcc43.patch
 
+# drop need/use of local fonts, use dejavu instead of arev
+Patch4: koffice-1.6.3-dejavu_fonts.patch
+
 # BuildRequires: world-devel ;)
 BuildRequires:  %{kdelibs3}-devel
 # See http://bugzilla.redhat.com/244091
-%global kdelibs3_ver %((kde-config --version 2>/dev/null || echo KDE 3.5.8) | grep '^KDE' | cut -d' ' -f2 | cut -d'-' -f1)
-## kjsembed bits, afaict, not really used (yet) -- Rex
-#BuildRequires:  kdebindings-devel
+%global kdelibs3_ver %((kde-config --version 2>/dev/null || echo KDE 3.5.10) | grep '^KDE' | cut -d' ' -f2 | cut -d'-' -f1)
+BuildRequires: automake libtool
 BuildRequires:  freetype-devel
 BuildRequires:  fontconfig-devel
 BuildRequires:  libart_lgpl-devel
@@ -175,6 +190,7 @@ Requires:       %{name}-core = %{epoch}:
 Summary:        A pixel-based image manipulation program 
 Group:          Applications/Productivity
 Requires:       %{name}-core = %{epoch}:%{version}-%{release}
+Requires:       %{name}-filters
 %description krita
 %{summary}.
 
@@ -218,7 +234,9 @@ Requires:       %{name}-core = %{epoch}:
 Summary:        A powerful formula editor
 Group:          Applications/Productivity
 Requires:       %{name}-core = %{epoch}:%{version}-%{release}
+# for cmex10
 Requires:       mathml-fonts
+Requires:       dejavu-sans-fonts 
 %description kformula
 %{summary}.
 
@@ -240,9 +258,20 @@ Requires:        %{name}-core = %{epoch}
 %prep
 %setup -q
 
-%patch1 -p0 -b .CVE-2007-3387
-%patch2 -p0 -b .CVE-2007-4352-5392-5393
-%patch3 -p1 -b .gcc43
+#patch1 -p0 -b .CVE-2007-3387
+#patch2 -p0 -b .CVE-2007-4352-5392-5393
+#patch3 -p1 -b .gcc43
+
+%patch4 -p1 -b .dejavu
+
+%patch50 -p1 -b glibc_strrchr
+
+%patch100 -p1 -b .svn
+%patch101 -p1 -b .quint32
+
+# hack/fix for newer automake
+sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh
+make -f admin/Makefile.common
 
 
 %build
@@ -256,7 +285,7 @@ unset QTDIR || : ; . /etc/profile.d/qt.s
   --with-extra-libs=%{_libdir} \
   --with-pgsqllibdir=%{_libdir} --with-pgsqlincdir=%{_includedir} \
   --with-pqxxlibdir=%{_libdir} --with-pqxxincdir=%{_includedir} \
-  --enable-final
+  --disable-final
 
 make %{?_smp_mflags}
 
@@ -295,6 +324,9 @@ for desktop_file in %{buildroot}%{_datad
 done
 
 ## unpackaged files
+# fonts
+rm -rv %{buildroot}%{_datadir}/apps/kformula/fonts/
+# libtool archives
 rm -f %{buildroot}%{_libdir}/lib*.la
 # shouldn't these be in koffice-l10n? 
 rm -f %{buildroot}%{_datadir}/locale/pl/LC_MESSAGES/kexi_{add,delete}_column_gui_transl_pl.sh
@@ -715,7 +747,24 @@ xdg-desktop-menu forceupdate 2> /dev/nul
 %{_datadir}/applications/kde/*kplato.desktop
 
 
-%changelog 
+%changelog
+* Tue Jul 28 2009 Rex Dieter <rdieter at fedoraproject.org> 2:1.6.3-22.20090306svn
+- -kformula: omit bundled fonts
+- koffice kword crash with formulas (#514217)
+
+* Thu Apr 16 2009 Rex Dieter <rdieter at fedoraproject.org> 2:1.6.3-21.20090306svn
+- -krita: revert/re-add dropped Requires: -filters
+
+* Tue Mar 10 2009 Kevin Kofler <Kevin at tigcc.ticalc.org> 2:1.6.3-20.20090306svn
+- rebuild for new ImageMagick
+
+* Fri Mar 06 2009 Rex Dieter <rdieter at fedoraproject.org> 2:1.6.3-19.20090306svn
+- revert koffice2 -> koffice1, Epoch bump
+- 20090306svn
+
+* Mon Nov 03 2008 Rex Dieter <rdieter at fedoraproject.org> 1:1.6.3-18
+- pull in svn updates
+
 * Mon Oct 27 2008 Rex Dieter <rdieter at fedoraproject.org> 1:1.6.3-17
 - move libkiviocommon to -kivio (avoids libpython/multilib issues)
 




More information about the fedora-extras-commits mailing list