summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/gal2/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-02-07 11:57:08 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2003-02-07 11:57:08 +0800
commit7f99f3c4af5a3316ccfb9afea5370338ff633298 (patch)
tree726e97a2c49115cd6f0a31ab890f49a68f649cf8 /x11-toolkits/gal2/files
parent0c3ed96b1b0ed3e06cc3cb8386230ea772b747f0 (diff)
downloadmarcuscom-ports-7f99f3c4af5a3316ccfb9afea5370338ff633298.tar
marcuscom-ports-7f99f3c4af5a3316ccfb9afea5370338ff633298.tar.gz
marcuscom-ports-7f99f3c4af5a3316ccfb9afea5370338ff633298.tar.bz2
marcuscom-ports-7f99f3c4af5a3316ccfb9afea5370338ff633298.tar.lz
marcuscom-ports-7f99f3c4af5a3316ccfb9afea5370338ff633298.tar.xz
marcuscom-ports-7f99f3c4af5a3316ccfb9afea5370338ff633298.tar.zst
marcuscom-ports-7f99f3c4af5a3316ccfb9afea5370338ff633298.zip
Add gal2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@531 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/gal2/files')
-rw-r--r--x11-toolkits/gal2/files/patch-ab11
-rw-r--r--x11-toolkits/gal2/files/patch-configure10
-rw-r--r--x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c26
3 files changed, 47 insertions, 0 deletions
diff --git a/x11-toolkits/gal2/files/patch-ab b/x11-toolkits/gal2/files/patch-ab
new file mode 100644
index 000000000..afb0bf27a
--- /dev/null
+++ b/x11-toolkits/gal2/files/patch-ab
@@ -0,0 +1,11 @@
+--- Makefile.in.orig Sun Aug 25 23:54:37 2002
++++ Makefile.in Sun Aug 25 23:54:47 2002
+@@ -129,7 +129,7 @@
+ cxxflags_set = @cxxflags_set@
+ gnomelocaledir = @gnomelocaledir@
+
+-SUBDIRS = gal tests docs art
++SUBDIRS = gal docs art
+
+ pkgconfigdir = $(prefix)/libdata/pkgconfig
+ pkgconfig_DATA = gal-2.0.pc
diff --git a/x11-toolkits/gal2/files/patch-configure b/x11-toolkits/gal2/files/patch-configure
new file mode 100644
index 000000000..97aea5b88
--- /dev/null
+++ b/x11-toolkits/gal2/files/patch-configure
@@ -0,0 +1,10 @@
+--- configure.orig Mon Aug 26 00:06:18 2002
++++ configure Mon Aug 26 00:06:32 2002
+@@ -8242,6 +8242,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
diff --git a/x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c b/x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c
new file mode 100644
index 000000000..69c179628
--- /dev/null
+++ b/x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c
@@ -0,0 +1,26 @@
+--- gal/e-table/e-table-group.c.orig Wed Nov 20 10:02:06 2002
++++ gal/e-table/e-table-group.c Thu Feb 6 22:35:27 2003
+@@ -22,6 +22,7 @@
+ */
+
+ #include <config.h>
++#include <stdarg.h>
+ #include <gtk/gtksignal.h>
+ #include <libgnomecanvas/gnome-canvas-rect-ellipse.h>
+ #include "e-table-group.h"
+@@ -128,13 +129,14 @@
+ ETableHeader *header,
+ ETableModel *model)
+ {
++ va_list args;
+ etg->full_header = full_header;
+ g_object_ref (etg->full_header);
+ etg->header = header;
+ g_object_ref (etg->header);
+ etg->model = model;
+ g_object_ref (etg->model);
+- gnome_canvas_item_construct (GNOME_CANVAS_ITEM (etg), parent, 0, NULL);
++ gnome_canvas_item_construct (GNOME_CANVAS_ITEM (etg), parent, 0, args);
+ }
+
+ /**