Revision: 74828 http://trac.macports.org/changeset/74828 Author: dports@macports.org Date: 2011-01-03 04:42:53 -0800 (Mon, 03 Jan 2011) Log Message: ----------- gnucash: update to v2.4.0 * use webkit-gtk instead of gtkhtml3 for html rendering by default; provide +gtkhtml variant * use guile 1.8 instead of guile 1.6 * remove without_quotes variant (see #17745) * remove old patchfiles Modified Paths: -------------- trunk/dports/gnome/gnucash/Portfile Removed Paths: ------------- trunk/dports/gnome/gnucash/files/goffice08.patch trunk/dports/gnome/gnucash/files/patch-configure-darwin10.diff trunk/dports/gnome/gnucash/files/patch-configure-nox11.diff trunk/dports/gnome/gnucash/files/patch-configure.diff trunk/dports/gnome/gnucash/files/patch-lib_libc_libc-missing-noop.c.diff trunk/dports/gnome/gnucash/files/patch-src_bin_gnucash.in.diff trunk/dports/gnome/gnucash/files/patch-src_quotes_gnc-fq-dump.diff Modified: trunk/dports/gnome/gnucash/Portfile =================================================================== --- trunk/dports/gnome/gnucash/Portfile 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/Portfile 2011-01-03 12:42:53 UTC (rev 74828) @@ -4,8 +4,7 @@ PortSystem 1.0 name gnucash -version 2.2.9 -revision 7 +version 2.4.0 categories gnome x11 maintainers nomaintainer platforms darwin @@ -24,22 +23,21 @@ master_sites sourceforge \ http://www.gnucash.org/pub/gnucash/sources/stable/ -# lzma archive for gnucash is 40% smaller than bzip2 -use_xz yes -extract.suffix .tar.lzma -checksums md5 b83c188506f749929a69b48c0632d3b8 \ - sha1 b7debe12fcb2770f5ec4524ec56c57adbdad19d2 \ - rmd160 2e16625b59762a52cea09cfa8139138ee21c6fb2 +use_bzip2 yes +checksums md5 3d396acb05a062adfc85bc9c4f8f0b08 \ + sha1 dd89e3c3d87b0c0c4f3f5ffd886363783d5d5576 \ + rmd160 ca762a18d18560c44f1bb87fe8bfd7967cccd365 + depends_build port:pkgconfig \ port:intltool \ port:libtool depends_lib port:gconf \ - port:slib-guile16 \ + port:slib-guile \ port:libgnomeui \ port:libgnomeprintui \ - port:libgtkhtml3 \ + port:webkit-gtk \ port:goffice \ port:aqbanking \ port:p5-finance-quote @@ -50,33 +48,18 @@ universal_variant no configure.args --disable-glibtest \ - --disable-dependency-tracking --enable-hbci --enable-ofx + --disable-dependency-tracking \ + --enable-hbci \ + --enable-ofx \ + --disable-dbi \ + --with-html-engine=webkit -patchfiles patch-configure.diff patch-lib_libc_libc-missing-noop.c.diff \ - patch-src_bin_gnucash.in.diff \ - patch-src_quotes_gnc-fq-dump.diff \ - patch-configure-darwin10.diff \ - goffice08.patch - -post-patch { - reinplace "s|DYLD_LIBRARY_PATH|DYLD_FALLBACK_LIBRARY_PATH|g" \ - ${worksrcpath}/configure ${worksrcpath}/src/bin/gnucash.in \ - ${worksrcpath}/src/bin/overrides/gnucash-env.in \ - ${worksrcpath}/src/gnc-test-env - reinplace "s|@@PREFIX@@|${prefix}|" ${worksrcpath}/src/quotes/gnc-fq-dump - fs-traverse src_file ${worksrcpath}/src { - if { [ file isfile ${src_file} ] } { - reinplace "s|\\<guile\\/|\\<guile16\\/|g" ${src_file} - reinplace "s|libguile\\.h|libguile16\\.h|g" ${src_file} - reinplace "s|exec\\ guile|exec\\ guile16|g" ${src_file} - } - } +variant gtkhtml description {Use gtkhtml instead of webkit-gtk for html rendering} { + configure.args-delete --with-html-engine=webkit + depends_lib-delete port:webkit-gtk + depends_lib-append port:libgtkhtml3 } -variant without_quotes description {Does not depend on building p5-finance-quote} { - depends_lib-delete port:p5-finance-quote -} - variant without_hbci description {Disables HBCI support} { depends_lib-delete port:aqbanking configure.args-delete --enable-hbci @@ -91,7 +74,6 @@ variant no_x11 { depends_run-delete port:evince - patchfiles-append patch-configure-nox11.diff } set gnucash_register_schema ${prefix}/libexec/${name}-gconf-schema.sh Deleted: trunk/dports/gnome/gnucash/files/goffice08.patch =================================================================== --- trunk/dports/gnome/gnucash/files/goffice08.patch 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/files/goffice08.patch 2011-01-03 12:42:53 UTC (rev 74828) @@ -1,166 +0,0 @@ ---- src/gnome-utils/gnc-html-graph-gog.c -+++ src/gnome-utils/gnc-html-graph-gog.c -@@ -46,7 +46,25 @@ - #ifndef GTKHTML_USES_GTKPRINT - # include <goffice/graph/gog-renderer-gnome-print.h> - #endif --#include <goffice/graph/gog-style.h> -+/* everything inside the following #ifndef can be safely removed when gnucash -+requires libgoffice >= 0.7.5, the contents of the #else block must stay. */ -+#ifndef GOG_TYPE_GRAPH -+# define GOG_TYPE_GRAPH GOG_GRAPH_TYPE -+# define GO_TYPE_PLUGIN_LOADER_MODULE GO_PLUGIN_LOADER_MODULE_TYPE -+# define GOG_TYPE_RENDERER GOG_RENDERER_TYPE -+# include <goffice/graph/gog-style.h> -+# define GOStyle GogStyle -+# define go_styled_object_get_style gog_styled_object_get_style -+# define GO_STYLED_OBJECT GOG_STYLED_OBJECT -+# define GO_STYLE_FILL_PATTERN GOG_FILL_STYLE_PATTERN -+# define go_style_set_text_angle gog_style_set_text_angle -+#else -+# include <goffice/utils/go-style.h> -+# include <goffice/utils/go-styled-object.h> -+#endif -+#ifndef GO_COLOR_FROM_GDK -+# define GO_COLOR_FROM_GDK GDK_TO_UINT -+#endif - #include <goffice/graph/gog-styled-object.h> - #include <goffice/graph/gog-plot.h> - #include <goffice/graph/gog-series.h> -@@ -98,7 +116,7 @@ - libgoffice_init(); - - /* Initialize plugins manager */ -- go_plugins_init (NULL, NULL, NULL, NULL, TRUE, GO_PLUGIN_LOADER_MODULE_TYPE); -+ go_plugins_init (NULL, NULL, NULL, NULL, TRUE, GO_TYPE_PLUGIN_LOADER_MODULE); - - gnc_html_register_object_handler( "gnc-guppi-pie", handle_piechart ); - gnc_html_register_object_handler( "gnc-guppi-bar", handle_barchart ); -@@ -189,7 +207,7 @@ - gog_object_update (GOG_OBJECT (graph)); - - #if defined(HAVE_GOFFICE_0_5) -- renderer = GOG_RENDERER (g_object_new (GOG_RENDERER_TYPE, -+ renderer = GOG_RENDERER (g_object_new (GOG_TYPE_RENDERER, - "model", graph, - NULL)); - update_status = gog_renderer_update (renderer, eb->width, eb->height); -@@ -229,7 +247,7 @@ - GogObject **out_chart, - GogPlot **out_plot) - { -- *out_graph = g_object_new(GOG_GRAPH_TYPE, NULL); -+ *out_graph = g_object_new(GOG_TYPE_GRAPH, NULL); - *out_chart = gog_object_add_by_name(*out_graph, "Chart", NULL); - *out_plot = gog_plot_new_by_name(plot_type_name); - if (!*out_plot) -@@ -363,8 +381,13 @@ - } - gog_object_add_by_name(chart, "Legend", NULL); - -- GOG_STYLED_OBJECT(graph)->style->outline.width = 5; -- GOG_STYLED_OBJECT(graph)->style->outline.color = RGBA_BLACK; -+#ifdef GO_COLOR_BLACK -+ GOG_STYLED_OBJECT(graph)->style->line.width = 5; -+ GOG_STYLED_OBJECT(graph)->style->line.color = GO_COLOR_BLACK; -+#else -+ GO_STYLED_OBJECT(graph)->style->outline.width = 5; -+ GO_STYLED_OBJECT(graph)->style->outline.color = RGBA_BLACK; -+#endif - - series = gog_plot_new_series(plot); - labelData = go_data_vector_str_new((char const * const *)labels, datasize, NULL); -@@ -401,7 +424,7 @@ - GogObject *graph, *chart; - GogPlot *plot; - GogSeries *series; -- GogStyle *style; -+ GOStyle *style; - GOData *label_data, *slice_data; - int data_rows, data_cols; - double *data = NULL; -@@ -489,11 +512,11 @@ - gog_series_set_dim (series, 1, slice_data, NULL); - go_data_emit_changed (GO_DATA (slice_data)); - -- style = gog_styled_object_get_style (GOG_STYLED_OBJECT (series)); -- style->fill.type = GOG_FILL_STYLE_PATTERN; -+ style = go_styled_object_get_style (GO_STYLED_OBJECT (series)); -+ style->fill.type = GO_STYLE_FILL_PATTERN; - if (gdk_color_parse (col_colors[i], &color)) { - style->fill.auto_back = FALSE; -- go_pattern_set_solid (&style->fill.pattern, GDK_TO_UINT (color)); -+ go_pattern_set_solid (&style->fill.pattern, GO_COLOR_FROM_GDK (color)); - } else { - g_warning("cannot parse color [%s]", col_colors[i]); - } -@@ -503,8 +526,8 @@ - if (rotate_row_labels) { - GogObject *object = gog_object_get_child_by_role ( - chart, gog_object_find_role_by_name (chart, "X-Axis")); -- style = gog_styled_object_get_style (GOG_STYLED_OBJECT (object)); -- gog_style_set_text_angle (style, 90.0); -+ style = go_styled_object_get_style (GO_STYLED_OBJECT (object)); -+ go_style_set_text_angle (style, 90.0); - } - - set_chart_titles_from_hash (chart, eb); -@@ -526,7 +549,7 @@ - GogPlot *plot; - GogSeries *series; - GOData *sliceData; -- GogStyle *style; -+ GOStyle *style; - int datasize; - double *xData, *yData; - gchar *marker_str, *color_str; -@@ -556,7 +579,7 @@ - } - - series = gog_plot_new_series( plot ); -- style = gog_styled_object_get_style(GOG_STYLED_OBJECT(series)); -+ style = go_styled_object_get_style(GO_STYLED_OBJECT(series)); - - sliceData = go_data_vector_val_new( xData, datasize, NULL ); - gog_series_set_dim( series, 0, sliceData, NULL ); -@@ -588,9 +611,9 @@ - GdkColor color; - if (gdk_color_parse(color_str, &color)) { - style->marker.auto_outline_color = FALSE; -- go_marker_set_outline_color(style->marker.mark, GDK_TO_UINT(color)); -+ go_marker_set_outline_color(style->marker.mark, GO_COLOR_FROM_GDK(color)); - style->line.auto_color = FALSE; -- style->line.color = GDK_TO_UINT(color); -+ style->line.color = GO_COLOR_FROM_GDK(color); - } else { - g_warning("cannot parse color [%s]", color_str); - } -@@ -602,15 +625,15 @@ - go_marker_set_fill_color(style->marker.mark, - go_marker_get_outline_color(style->marker.mark)); - } else { -- GogStyle *chart_style = -- gog_styled_object_get_style(GOG_STYLED_OBJECT(chart)); -+ GOStyle *chart_style = -+ go_styled_object_get_style(GO_STYLED_OBJECT(chart)); - -- if (chart_style->fill.type == GOG_FILL_STYLE_PATTERN -+ if (chart_style->fill.type == GO_STYLE_FILL_PATTERN - && chart_style->fill.pattern.pattern == GO_PATTERN_SOLID) { - style->marker.auto_fill_color = FALSE; - go_marker_set_fill_color(style->marker.mark, - chart_style->fill.pattern.back); -- } else if (chart_style->fill.type == GOG_FILL_STYLE_PATTERN -+ } else if (chart_style->fill.type == GO_STYLE_FILL_PATTERN - && chart_style->fill.pattern.pattern - == GO_PATTERN_FOREGROUND_SOLID) { - style->marker.auto_fill_color = FALSE; -@@ -639,7 +662,7 @@ - { - GogGraph *graph = GOG_GRAPH(g_object_get_data(G_OBJECT(eb), "graph")); - # ifdef HAVE_GOFFICE_0_5 -- GogRenderer *rend = g_object_new(GOG_RENDERER_TYPE, "model", graph, NULL); -+ GogRenderer *rend = g_object_new(GOG_TYPE_RENDERER, "model", graph, NULL); - # else - GogRendererCairo *rend = g_object_new(GOG_RENDERER_CAIRO_TYPE, "model", graph, - "cairo", cr, "is-vector", TRUE, NULL); Deleted: trunk/dports/gnome/gnucash/files/patch-configure-darwin10.diff =================================================================== --- trunk/dports/gnome/gnucash/files/patch-configure-darwin10.diff 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/files/patch-configure-darwin10.diff 2011-01-03 12:42:53 UTC (rev 74828) @@ -1,11 +0,0 @@ ---- configure.orig 2009-09-02 07:55:42.000000000 +1000 -+++ configure 2009-09-02 08:02:15.000000000 +1000 -@@ -26722,7 +26722,7 @@ - { $as_echo "$as_me:$LINENO: checking for darwin" >&5 - $as_echo_n "checking for darwin... " >&6; } - case $host_os in -- rhapsody* | darwin1*) -+ rhapsody* | darwin1.*) - { $as_echo "$as_me:$LINENO: result: yes, but too old" >&5 - $as_echo "yes, but too old" >&6; } - { { $as_echo "$as_me:$LINENO: error: This platform is not supported, please Deleted: trunk/dports/gnome/gnucash/files/patch-configure-nox11.diff =================================================================== --- trunk/dports/gnome/gnucash/files/patch-configure-nox11.diff 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/files/patch-configure-nox11.diff 2011-01-03 12:42:53 UTC (rev 74828) @@ -1,11 +0,0 @@ ---- configure.orig 2009-02-23 13:25:34.000000000 -0700 -+++ configure 2009-03-15 17:12:06.000000000 -0600 -@@ -24912,7 +24912,7 @@ - # These are unavailable on windows/mingw32 - - --for ac_header in X11/Xlib.h glob.h -+for ac_header in glob.h - do - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` - if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then Deleted: trunk/dports/gnome/gnucash/files/patch-configure.diff =================================================================== --- trunk/dports/gnome/gnucash/files/patch-configure.diff 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/files/patch-configure.diff 2011-01-03 12:42:53 UTC (rev 74828) @@ -1,186 +0,0 @@ ---- configure.orig 2009-02-23 13:25:34.000000000 -0700 -+++ configure 2009-03-15 17:07:18.000000000 -0600 -@@ -27043,9 +27043,9 @@ - - - if test "x$cross_compiling" = "xyes" ; then -- name_build_guile="$target_alias-guile-config" -+ name_build_guile="$target_alias-guile16-config" - else -- name_build_guile="guile-config" -+ name_build_guile="guile16-config" - fi - - # Extract the first word of "$name_build_guile", so it can be a program name with args. -@@ -27232,13 +27232,13 @@ - - - if test "x$BUILD_GUILE" = "xyes"; then -- { $as_echo "$as_me:$LINENO: checking for guile libraries" >&5 --$as_echo_n "checking for guile libraries... " >&6; } -+ { $as_echo "$as_me:$LINENO: checking for guile16 libraries" >&5 -+$as_echo_n "checking for guile16 libraries... " >&6; } - GUILE_LIBS="`$name_build_guile link`" - { $as_echo "$as_me:$LINENO: result: $GUILE_LIBS" >&5 - $as_echo "$GUILE_LIBS" >&6; } -- { $as_echo "$as_me:$LINENO: checking for guile headers" >&5 --$as_echo_n "checking for guile headers... " >&6; } -+ { $as_echo "$as_me:$LINENO: checking for guile16 headers" >&5 -+$as_echo_n "checking for guile16 headers... " >&6; } - GUILE_INCS="`$name_build_guile compile`" - { $as_echo "$as_me:$LINENO: result: $GUILE_INCS" >&5 - $as_echo "$GUILE_INCS" >&6; } -@@ -27584,7 +27584,7 @@ - GUILE_LIBS="$GUILE_LIBS -lsocket" - fi - -- GUILE_LIBS="-lguile $GUILE_LIBS $QTTHREADS_LIB $READLINE_LIB $TERMCAP_LIB" -+ GUILE_LIBS="-lguile16 $GUILE_LIBS $QTTHREADS_LIB $READLINE_LIB $TERMCAP_LIB" - fi - - -@@ -27594,8 +27594,8 @@ - LIBS="$LIBS $GUILE_LIBS" - CPPFLAGS="$saved_cppflags $GUILE_INCS" - -- { $as_echo "$as_me:$LINENO: checking whether guile works" >&5 --$as_echo_n "checking whether guile works... " >&6; } -+ { $as_echo "$as_me:$LINENO: checking whether guile16 works" >&5 -+$as_echo_n "checking whether guile16 works... " >&6; } - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -27603,8 +27603,8 @@ - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - -- #include <libguile.h> -- #include <guile/gh.h> -+ #include <libguile16.h> -+ #include <guile16/gh.h> - - int - main () -@@ -27711,8 +27711,8 @@ - - - if test x${GUILE} = x ; then -- # Extract the first word of "guile", so it can be a program name with args. --set dummy guile; ac_word=$2 -+ # Extract the first word of "guile16", so it can be a program name with args. -+set dummy guile16; ac_word=$2 - { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 - $as_echo_n "checking for $ac_word... " >&6; } - if test "${ac_cv_path_GUILE+set}" = set; then -@@ -27850,8 +27850,8 @@ - - - if test x${GUILE} = x ; then -- # Extract the first word of "guile", so it can be a program name with args. --set dummy guile; ac_word=$2 -+ # Extract the first word of "guile16", so it can be a program name with args. -+set dummy guile16; ac_word=$2 - { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 - $as_echo_n "checking for $ac_word... " >&6; } - if test "${ac_cv_path_GUILE+set}" = set; then -@@ -27997,8 +27997,8 @@ - fi - - ### Check size of long_long - some guile's are broken. --{ $as_echo "$as_me:$LINENO: checking if guile long_long is at least as big as gint64" >&5 --$as_echo_n "checking if guile long_long is at least as big as gint64... " >&6; } -+{ $as_echo "$as_me:$LINENO: checking if guile16 long_long is at least as big as gint64" >&5 -+$as_echo_n "checking if guile16 long_long is at least as big as gint64... " >&6; } - GNC_OLDCFLAGS="$CFLAGS" - GNC_OLDLDFLAGS="$LDFLAGS" - CFLAGS="${GNOME_CFLAGS} ${GUILE_INCS} ${CFLAGS} ${GLIB_CFLAGS}" -@@ -28007,13 +28007,13 @@ - - { $as_echo "$as_me:$LINENO: result: assuming yes" >&5 - $as_echo "assuming yes" >&6; } -- { $as_echo "$as_me:$LINENO: checking for scm_long_long2num in -lguile" >&5 --$as_echo_n "checking for scm_long_long2num in -lguile... " >&6; } -+ { $as_echo "$as_me:$LINENO: checking for scm_long_long2num in -lguile16" >&5 -+$as_echo_n "checking for scm_long_long2num in -lguile16... " >&6; } - if test "${ac_cv_lib_guile_scm_long_long2num+set}" = set; then - $as_echo_n "(cached) " >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lguile $LIBS" -+LIBS="-lguile16 $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -28090,7 +28090,7 @@ - /* end confdefs.h. */ - - #include <glib.h> -- #include <libguile/__scm.h> -+ #include <libguile16/__scm.h> - int main(int argc, char *argv[]) { - return(!(sizeof(long_long) >= sizeof(gint64))); - } -@@ -28121,13 +28121,13 @@ - - { $as_echo "$as_me:$LINENO: result: yes" >&5 - $as_echo "yes" >&6; } -- { $as_echo "$as_me:$LINENO: checking for scm_long_long2num in -lguile" >&5 --$as_echo_n "checking for scm_long_long2num in -lguile... " >&6; } -+ { $as_echo "$as_me:$LINENO: checking for scm_long_long2num in -lguile16" >&5 -+$as_echo_n "checking for scm_long_long2num in -lguile16... " >&6; } - if test "${ac_cv_lib_guile_scm_long_long2num+set}" = set; then - $as_echo_n "(cached) " >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lguile $LIBS" -+LIBS="-lguile16 $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -28331,8 +28331,8 @@ - - { $as_echo "$as_me:$LINENO: checking if guile needs our copy of (guile www)" >&5 - $as_echo_n "checking if guile needs our copy of (guile www)... " >&6; } --# Extract the first word of "guile", so it can be a program name with args. --set dummy guile; ac_word=$2 -+# Extract the first word of "guile16", so it can be a program name with args. -+set dummy guile16; ac_word=$2 - { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 - $as_echo_n "checking for $ac_word... " >&6; } - if test "${ac_cv_path_GUILE+set}" = set; then -@@ -28372,13 +28372,13 @@ - - - if test "$GUILE" = "" ; then -- { { $as_echo "$as_me:$LINENO: error: guile required but not found" >&5 --$as_echo "$as_me: error: guile required but not found" >&2;} -+ { { $as_echo "$as_me:$LINENO: error: guile16 required but not found" >&5 -+$as_echo "$as_me: error: guile16 required but not found" >&2;} - { (exit 1); exit 1; }; } - fi - -- # Extract the first word of "guile-config", so it can be a program name with args. --set dummy guile-config; ac_word=$2 -+ # Extract the first word of "guile16-config", so it can be a program name with args. -+set dummy guile16-config; ac_word=$2 - { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 - $as_echo_n "checking for $ac_word... " >&6; } - if test "${ac_cv_path_GUILE_CONFIG+set}" = set; then -@@ -28418,13 +28418,13 @@ - - - if test "$GUILE_CONFIG" = "" ; then -- { { $as_echo "$as_me:$LINENO: error: guile-config required but not found" >&5 --$as_echo "$as_me: error: guile-config required but not found" >&2;} -+ { { $as_echo "$as_me:$LINENO: error: guile16-config required but not found" >&5 -+$as_echo "$as_me: error: guile16-config required but not found" >&2;} - { (exit 1); exit 1; }; } - fi - -- # Extract the first word of "guile-tools", so it can be a program name with args. --set dummy guile-tools; ac_word=$2 -+ # Extract the first word of "guile16-tools", so it can be a program name with args. -+set dummy guile16-tools; ac_word=$2 - { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 - $as_echo_n "checking for $ac_word... " >&6; } - if test "${ac_cv_path_GUILE_TOOLS+set}" = set; then Deleted: trunk/dports/gnome/gnucash/files/patch-lib_libc_libc-missing-noop.c.diff =================================================================== --- trunk/dports/gnome/gnucash/files/patch-lib_libc_libc-missing-noop.c.diff 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/files/patch-lib_libc_libc-missing-noop.c.diff 2011-01-03 12:42:53 UTC (rev 74828) @@ -1,11 +0,0 @@ ---- lib/libc/libc-missing-noop.c.orig 2008-05-20 07:08:48.000000000 +0200 -+++ lib/libc/libc-missing-noop.c 2008-05-20 07:09:12.000000000 +0200 -@@ -1,6 +1,6 @@ --void gnc_libc_missing_noop (void); -+static void gnc_libc_missing_noop (void); - --void gnc_libc_missing_noop (void) -+static void gnc_libc_missing_noop (void) - { - return; - } Deleted: trunk/dports/gnome/gnucash/files/patch-src_bin_gnucash.in.diff =================================================================== --- trunk/dports/gnome/gnucash/files/patch-src_bin_gnucash.in.diff 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/files/patch-src_bin_gnucash.in.diff 2011-01-03 12:42:53 UTC (rev 74828) @@ -1,15 +0,0 @@ ---- src/bin/gnucash.in.orig 2008-01-07 18:05:50.000000000 -0700 -+++ src/bin/gnucash.in 2009-05-03 01:42:49.000000000 -0600 -@@ -18,10 +18,12 @@ - - LD_LIBRARY_PATH="${EXTRA_LIBS}@-PATH_SEPARATOR-@${LD_LIBRARY_PATH}" - DYLD_LIBRARY_PATH="${EXTRA_LIBS}@-PATH_SEPARATOR-@${DYLD_LIBRARY_PATH}" -+LTDL_LIBRARY_PATH="${EXTRA_LIBS}@-PATH_SEPARATOR-@${LTDL_LIBRARY_PATH}" - - export GNC_MODULE_PATH - export GUILE_LOAD_PATH - export LD_LIBRARY_PATH - export DYLD_LIBRARY_PATH -+export LTDL_LIBRARY_PATH - - exec gnucash-bin "$@" Deleted: trunk/dports/gnome/gnucash/files/patch-src_quotes_gnc-fq-dump.diff =================================================================== --- trunk/dports/gnome/gnucash/files/patch-src_quotes_gnc-fq-dump.diff 2011-01-03 10:58:55 UTC (rev 74827) +++ trunk/dports/gnome/gnucash/files/patch-src_quotes_gnc-fq-dump.diff 2011-01-03 12:42:53 UTC (rev 74828) @@ -1,8 +0,0 @@ ---- src/quotes/gnc-fq-dump.orig 2008-01-07 18:05:22.000000000 -0700 -+++ src/quotes/gnc-fq-dump 2009-05-21 18:03:40.000000000 -0600 -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -+#!@@PREFIX@@/bin/perl - # - # Copyright (C) 2003, David Hampton <hampton@employees.org> - #
participants (1)
-
dports@macports.org