]> git.pld-linux.org Git - packages/abiword.git/commitdiff
- drop obsolete files
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 5 Jul 2009 17:14:03 +0000 (17:14 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    abiword-gda.patch -> 1.2
    abiword-goffice03.patch -> 1.6

abiword-gda.patch [deleted file]
abiword-goffice03.patch [deleted file]

diff --git a/abiword-gda.patch b/abiword-gda.patch
deleted file mode 100644 (file)
index 451b2f7..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-diff -urbB abiword-2.4.1.org/abiword-plugins/tools/gda/plugin.m4 abiword-2.4.1/abiword-plugins/tools/gda/plugin.m4
---- abiword-2.4.1.org/abiword-plugins/tools/gda/plugin.m4      2005-09-25 13:28:14.000000000 +0200
-+++ abiword-2.4.1/abiword-plugins/tools/gda/plugin.m4  2005-10-24 22:22:34.922621500 +0200
-@@ -29,7 +29,7 @@
- # Checks for header files.
- dnl only unix builds should need this stuff, so why...?
--PKG_CHECK_MODULES(_abi_gda,[libgda >= 1.2.0 libgnomedb >= 1.2.0],[
-+PKG_CHECK_MODULES(_abi_gda,[libgda-2.0 >= 1.2.0 libgnomedb-2.0 >= 1.2.0],[
-       ABI_PLUGIN_REPORT([gda: okay])
- ],[   ABI_PLUGIN_REPORT([gda: error - libgda and libgnomedb >= 1.2.0 required])
-       abi_plugin_disable=yes
-diff -urbB abiword-2.4.1.org/abiword-plugins/tools/gda/unix/AbiGDA.cpp abiword-2.4.1/abiword-plugins/tools/gda/unix/AbiGDA.cpp
---- abiword-2.4.1.org/abiword-plugins/tools/gda/unix/AbiGDA.cpp        2005-01-12 18:54:57.000000000 +0100
-+++ abiword-2.4.1/abiword-plugins/tools/gda/unix/AbiGDA.cpp    2005-10-24 22:20:32.000000000 +0200
-@@ -283,13 +283,13 @@
-       sql = editable_txt;
-       g_free (editable_txt);
-       
--      cnc = gda_client_open_connection (connection_pool, dsn_name.utf8_str(), user_name.utf8_str(), password.utf8_str(), GDA_CONNECTION_OPTIONS_READ_ONLY);
-+      cnc = gda_client_open_connection (connection_pool, dsn_name.utf8_str(), user_name.utf8_str(), password.utf8_str(), GDA_CONNECTION_OPTIONS_READ_ONLY, 0);
-       if (!GDA_IS_CONNECTION (cnc))
-               return false;
-       
-       /* execute command */
-       cmd = gda_command_new (sql.utf8_str(), GDA_COMMAND_TYPE_SQL, (GdaCommandOptions)0);
--      recset = gda_connection_execute_single_command (cnc, cmd, NULL);
-+      recset = gda_connection_execute_single_command (cnc, cmd, NULL, 0);
-       gda_command_free (cmd);
-       
-       if (recset == NULL || !GDA_IS_DATA_MODEL (recset))
diff --git a/abiword-goffice03.patch b/abiword-goffice03.patch
deleted file mode 100644 (file)
index 8b8cd1d..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
---- abiword-plugins/tools/abigochart/plugin.m4~        2006-10-31 22:25:11.000000000 +0100
-+++ abiword-plugins/tools/abigochart/plugin.m4 2006-11-17 13:33:03.318315000 +0100
-@@ -23,7 +23,7 @@
- LIBGOffice_REQUIRED_VERSION=0.2.1
--PKG_CHECK_MODULES(GOFFICE, [libgoffice-1 >= $LIBGOffice_REQUIRED_VERSION],[
-+PKG_CHECK_MODULES(GOFFICE, [libgoffice-0.3 >= $LIBGOffice_REQUIRED_VERSION],[
-         ABI_PLUGIN_REPORT([abigochart: okay])
- ],[        ABI_PLUGIN_REPORT([abigochart: error libgoffice >= $LIBGOffice_REQUIRED_VERSION required])
-         abi_plugin_disable=yes
---- abiword-plugins/tools/abigochart/unix/AbiGOChart.cpp~      2006-10-31 22:25:12.000000000 +0100
-+++ abiword-plugins/tools/abigochart/unix/AbiGOChart.cpp       2006-11-17 13:35:44.258315000 +0100
-@@ -72,7 +72,7 @@
- #include <goffice/graph/gog-data-allocator.h>
- #include <goffice/graph/gog-series.h>
- #include <goffice/graph/gog-guru.h>
--#include <goffice/graph/gog-renderer-pixbuf.h>
-+#include <goffice/graph/gog-renderer-cairo.h>
- #include <goffice/graph/gog-data-set.h>
- #include <goffice/graph/gog-object-xml.h>
- #include <goffice/data/go-data-simple.h>
-@@ -1119,7 +1119,7 @@
- {
-       m_Graph = NULL;
-       m_Image = NULL;
--      m_Renderer = GOG_RENDERER (g_object_new (GOG_RENDERER_PIXBUF_TYPE, NULL));
-+      m_Renderer = GOG_RENDERER (g_object_new (GOG_RENDERER_CAIRO_TYPE, NULL));
-       pix_width = pix_height = 0;
-       width = height = 0;
-       m_Guru = NULL;
-@@ -1189,10 +1189,10 @@
-                       GdkPixbuf *pixbuf;
-                       pix_width = _width;
-                       pix_height = _height;
--                      gog_renderer_pixbuf_update (GOG_RENDERER_PIXBUF (m_Renderer), _width, _height, 1.0);    
-+                      gog_renderer_cairo_update (GOG_RENDERER_CAIRO (m_Renderer), _width, _height, 1.0);      
-                       if (m_Image)
-                               delete m_Image;
--                      pixbuf = gog_renderer_pixbuf_get (GOG_RENDERER_PIXBUF (m_Renderer));
-+                      pixbuf = gog_renderer_cairo_get_pixbuf (GOG_RENDERER_CAIRO (m_Renderer));
-                       m_Image = new GR_UnixImage(NULL, pixbuf);
-                       g_object_ref(pixbuf);
-                       m_Image->scaleImageTo(m_pGOMan->getGraphics(),rec);
---- abiword-plugins/configure.orig     2006-11-17 15:05:35.228315000 +0100
-+++ abiword-plugins/configure  2006-11-17 15:14:15.268315000 +0100
-@@ -22834,23 +22834,23 @@
-   else
-      PKG_CONFIG_MIN_VERSION=0.9.0
-      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
--        echo "$as_me:$LINENO: checking for libgoffice-1 >= $LIBGOffice_REQUIRED_VERSION" >&5
--echo $ECHO_N "checking for libgoffice-1 >= $LIBGOffice_REQUIRED_VERSION... $ECHO_C" >&6
-+        echo "$as_me:$LINENO: checking for libgoffice-0.3 >= $LIBGOffice_REQUIRED_VERSION" >&5
-+echo $ECHO_N "checking for libgoffice-0.3 >= $LIBGOffice_REQUIRED_VERSION... $ECHO_C" >&6
--        if $PKG_CONFIG --exists "libgoffice-1 >= $LIBGOffice_REQUIRED_VERSION" ; then
-+        if $PKG_CONFIG --exists "libgoffice-0.3 >= $LIBGOffice_REQUIRED_VERSION" ; then
-             echo "$as_me:$LINENO: result: yes" >&5
- echo "${ECHO_T}yes" >&6
-             succeeded=yes
-             echo "$as_me:$LINENO: checking GOFFICE_CFLAGS" >&5
- echo $ECHO_N "checking GOFFICE_CFLAGS... $ECHO_C" >&6
--            GOFFICE_CFLAGS=`$PKG_CONFIG --cflags "libgoffice-1 >= $LIBGOffice_REQUIRED_VERSION"`
-+            GOFFICE_CFLAGS=`$PKG_CONFIG --cflags "libgoffice-0.3 >= $LIBGOffice_REQUIRED_VERSION"`
-             echo "$as_me:$LINENO: result: $GOFFICE_CFLAGS" >&5
- echo "${ECHO_T}$GOFFICE_CFLAGS" >&6
-             echo "$as_me:$LINENO: checking GOFFICE_LIBS" >&5
- echo $ECHO_N "checking GOFFICE_LIBS... $ECHO_C" >&6
--            GOFFICE_LIBS=`$PKG_CONFIG --libs "libgoffice-1 >= $LIBGOffice_REQUIRED_VERSION"`
-+            GOFFICE_LIBS=`$PKG_CONFIG --libs "libgoffice-0.3 >= $LIBGOffice_REQUIRED_VERSION"`
-             echo "$as_me:$LINENO: result: $GOFFICE_LIBS" >&5
- echo "${ECHO_T}$GOFFICE_LIBS" >&6
-         else
-@@ -22858,7 +22858,7 @@
-             GOFFICE_LIBS=""
-             ## If we have a custom action on failure, don't print errors, but
-             ## do set a variable so people can do so.
--            GOFFICE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgoffice-1 >= $LIBGOffice_REQUIRED_VERSION"`
-+            GOFFICE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgoffice-0.3 >= $LIBGOffice_REQUIRED_VERSION"`
-         fi
This page took 0.137721 seconds and 4 git commands to generate.