mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
Update to 2.4.3.
Add LICENSE (GPLv3) Provide option to use webkit for html engine instead of gtkhtml3. Provide option to install python bindings. Provide option to enable database support. Done via libdbi. Info about how to use this feature is in the pkg-message. PR: ports/154841 (merged features from) Submitted by: Jason E. Hale <bsdkaffee@gmail.com>
This commit is contained in:
parent
ca5fdac5d9
commit
f54c49dc4e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=270015
@ -7,11 +7,9 @@
|
||||
#
|
||||
|
||||
PORTNAME= gnucash
|
||||
PORTVERSION= 2.2.9
|
||||
PORTREVISION= 10
|
||||
PORTVERSION= 2.4.3
|
||||
CATEGORIES= finance gnome
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION} \
|
||||
http://www.gnucash.org/pub/gnucash/sources/stable/
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION}
|
||||
|
||||
MAINTAINER= gnome@FreeBSD.org
|
||||
COMMENT= Quicken-like money and finance manager
|
||||
@ -19,19 +17,22 @@ COMMENT= Quicken-like money and finance manager
|
||||
BUILD_DEPENDS= guile>=1.8.6:${PORTSDIR}/lang/guile \
|
||||
${LOCALBASE}/share/guile/1.8/slibcat:${PORTSDIR}/lang/slib-guile
|
||||
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \
|
||||
gnome-keyring.0:${PORTSDIR}/security/libgnome-keyring \
|
||||
goffice-0.8.8:${PORTSDIR}/devel/goffice
|
||||
RUN_DEPENDS= guile>=1.8.6:${PORTSDIR}/lang/guile \
|
||||
${LOCALBASE}/share/guile/1.8/slibcat:${PORTSDIR}/lang/slib-guile \
|
||||
${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \
|
||||
${SITE_PERL}/Date/Manip.pm:${PORTSDIR}/devel/p5-Date-Manip \
|
||||
${SITE_PERL}/Finance/Quote.pm:${PORTSDIR}/finance/p5-Finance-Quote \
|
||||
${SITE_PERL}/HTML/TableExtract.pm:${PORTSDIR}/www/p5-HTML-TableExtract \
|
||||
${SITE_PERL}/Finance/QuoteHist.pm:${PORTSDIR}/finance/p5-Finance-QuoteHist
|
||||
${SITE_PERL}/Finance/Quote.pm:${PORTSDIR}/finance/p5-Finance-Quote
|
||||
|
||||
OPTIONS= AQBANKING "AqBanking support (HBCI/OpenHBCI)" off \
|
||||
OFX "OFX support" off \
|
||||
POSTGRESQL "Enable Postgresql as Backend" off \
|
||||
GCDOCS "Install gnucash-docs" on
|
||||
OPTIONS= AQBANKING "AqBanking support (HBCI/OpenHBCI)" on \
|
||||
OFX "OFX support" on \
|
||||
DATABASE "Enable SQL database backends" off \
|
||||
WEBKIT "Use webkit instead of gtkhtml for the HTML engine" off \
|
||||
PYTHON "Install Python bindings" off
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GETTEXT= yes
|
||||
@ -40,16 +41,15 @@ USE_GMAKE= yes
|
||||
MAKE_JOBS_SAFE= yes
|
||||
USE_PERL5= yes
|
||||
INSTALLS_ICONS= yes
|
||||
USE_GNOME= gnomeprefix libgsf_gnome libglade2 \
|
||||
libgnomeprint libgnomeprintui gtkhtml3 libgnomeui
|
||||
USE_GNOME= gnomeprefix libglade2 libgnomeui
|
||||
GNU_CONFIGURE= yes
|
||||
USE_LDCONFIG= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
|
||||
GC_LIBS= -L${LOCALBASE}/lib -lintl
|
||||
CONFIGURE_ARGS=--with-glib-config=${GLIB_CONFIG} \
|
||||
--disable-error-on-warning
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS= --disable-error-on-warning \
|
||||
--disable-doxygen
|
||||
|
||||
MAN1= gnc-prices.1 gnucash.1
|
||||
MAN1= gnucash.1
|
||||
INFO= gnucash-design
|
||||
|
||||
GCONF_SCHEMAS= apps_gnucash_dialog_business_common.schemas \
|
||||
@ -68,18 +68,17 @@ GCONF_SCHEMAS= apps_gnucash_dialog_business_common.schemas \
|
||||
apps_gnucash_window_pages_account_tree.schemas \
|
||||
apps_gnucash_window_pages_register.schemas
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
# WITH_OPENHBCI is old synonym for aqbanking option
|
||||
.if defined(WITH_AQBANKING) || defined(WITH_OPENHBCI)
|
||||
LIB_DEPENDS+= aqbanking.31:${PORTSDIR}/finance/aqbanking \
|
||||
.if defined(WITH_AQBANKING)
|
||||
LIB_DEPENDS+= aqbanking.33:${PORTSDIR}/finance/aqbanking \
|
||||
gwengui-gtk2.0:${PORTSDIR}/devel/gwenhywfar \
|
||||
ktoblzcheck.6:${PORTSDIR}/finance/ktoblzcheck
|
||||
GCONF_SCHEMAS+= apps_gnucash_dialog_hbci.schemas
|
||||
CONFIGURE_ARGS+=--enable-hbci
|
||||
GC_LIBS+= -laqbanking
|
||||
CONFIGURE_ARGS+=--enable-aqbanking
|
||||
PLIST_SUB+= AQBANKING=""
|
||||
.else
|
||||
CONFIGURE_ARGS+=--disable-hbci
|
||||
CONFIGURE_ARGS+=--disable-aqbanking
|
||||
PLIST_SUB+= AQBANKING="@comment "
|
||||
.endif
|
||||
|
||||
@ -92,20 +91,35 @@ CONFIGURE_ARGS+=--disable-ofx
|
||||
PLIST_SUB+= OFX="@comment "
|
||||
.endif
|
||||
|
||||
.if defined(WITH_POSTGRESQL)
|
||||
CONFIGURE_ARGS+=--enable-sql
|
||||
PLIST_SUB+= PGBACKEND=""
|
||||
USE_PGSQL+= yes
|
||||
GC_LIBS+= -lpq
|
||||
.if defined(WITH_DATABASE)
|
||||
CONFIGURE_ARGS+=--enable-dbi
|
||||
LIB_DEPENDS+= dbi.0:${PORTSDIR}/databases/libdbi
|
||||
PLIST_SUB+= DATABASE=""
|
||||
.else
|
||||
CONFIGURE_ARGS+=--disable-sql
|
||||
PLIST_SUB+= PGBACKEND="@comment "
|
||||
CONFIGURE_ARGS+=--disable-dbi
|
||||
PLIST_SUB+= DATABASE="@comment "
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_GCDOCS)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/share/omf/gnucash-docs/gnucash-guide-C.omf:${PORTSDIR}/finance/gnucash-docs
|
||||
.if defined(WITH_WEBKIT)
|
||||
CONFIGURE_ARGS+=--with-html-engine=webkit
|
||||
LIB_DEPENDS+= webkit-1.0.13:${PORSTDIR}/www/webkit-gtk2
|
||||
.else
|
||||
USE_GNOME+= gtkhtml3
|
||||
.endif
|
||||
|
||||
CONFIGURE_ENV+= LIBS="${GC_LIBS}"
|
||||
.if defined(WITH_PYTHON)
|
||||
CONFIGURE_ARGS+=--enable-python-bindings
|
||||
USE_PYTHON= yes
|
||||
PLIST_SUB+= PYTHON=""
|
||||
.else
|
||||
PLIST_SUB+= PYTHON="@comment "
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.if !defined(PACKAGE_BUILDING) && !exists(${LOCALBASE}/lib/libgwengui-gtk2.so.0)
|
||||
BROKEN= Please rebuild devel/gwenhywfar with the WITH_GTK2 option set
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,2 @@
|
||||
MD5 (gnucash-2.2.9.tar.bz2) = 1d814de8673b4760045bf51b72924d04
|
||||
SHA256 (gnucash-2.2.9.tar.bz2) = b1882406e71c565c1bdd64e963cf98a42c72053a7ec4608508a074a86b1d486a
|
||||
SIZE (gnucash-2.2.9.tar.bz2) = 7509648
|
||||
SHA256 (gnucash-2.4.3.tar.bz2) = cc39dce84e065206a6c4617f43b38de0edf4c1e27a1bc918784c65250df326e1
|
||||
SIZE (gnucash-2.4.3.tar.bz2) = 9235024
|
||||
|
@ -1,158 +0,0 @@
|
||||
--- src/gnome-utils/gnc-html-graph-gog.c.orig 2008-01-08 02:06:26.000000000 +0100
|
||||
+++ src/gnome-utils/gnc-html-graph-gog.c 2009-09-21 10:43:38.000000000 +0200
|
||||
@@ -46,7 +46,22 @@
|
||||
#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. */
|
||||
+#ifndef GOG_TYPE_GRAPH
|
||||
+# define GOG_TYPE_GRAPH GOG_GRAPH_TYPE
|
||||
+# define GOG_TYPE_RENDERER GOG_RENDERER_TYPE
|
||||
+# define GO_TYPE_PLUGIN_LOADER_MODULE GO_PLUGIN_LOADER_MODULE_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
|
||||
#include <goffice/graph/gog-styled-object.h>
|
||||
#include <goffice/graph/gog-plot.h>
|
||||
#include <goffice/graph/gog-series.h>
|
||||
@@ -98,7 +113,7 @@ gnc_html_graph_gog_init(void)
|
||||
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 +204,7 @@ add_pixbuf_graph_widget( GtkHTMLEmbedded
|
||||
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 +244,7 @@ create_basic_plot_elements(const char *p
|
||||
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 +378,8 @@ handle_piechart(gnc_html * html, GtkHTML
|
||||
}
|
||||
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;
|
||||
+ GOG_STYLED_OBJECT(graph)->style->line.width = 5;
|
||||
+ GOG_STYLED_OBJECT(graph)->style->line.color = GO_COLOR_BLACK;
|
||||
|
||||
series = gog_plot_new_series(plot);
|
||||
labelData = go_data_vector_str_new((char const * const *)labels, datasize, NULL);
|
||||
@@ -401,7 +416,7 @@ handle_barchart(gnc_html * html, GtkHTML
|
||||
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 +504,11 @@ handle_barchart(gnc_html * html, GtkHTML
|
||||
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 +518,8 @@ handle_barchart(gnc_html * html, GtkHTML
|
||||
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 +541,7 @@ handle_scatter(gnc_html * html, GtkHTMLE
|
||||
GogPlot *plot;
|
||||
GogSeries *series;
|
||||
GOData *sliceData;
|
||||
- GogStyle *style;
|
||||
+ GOStyle *style;
|
||||
int datasize;
|
||||
double *xData, *yData;
|
||||
gchar *marker_str, *color_str;
|
||||
@@ -556,7 +571,7 @@ handle_scatter(gnc_html * html, GtkHTMLE
|
||||
}
|
||||
|
||||
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 +603,9 @@ handle_scatter(gnc_html * html, GtkHTMLE
|
||||
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 +617,15 @@ handle_scatter(gnc_html * html, GtkHTMLE
|
||||
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 +654,7 @@ draw_print_cb(GtkHTMLEmbedded *eb, cairo
|
||||
{
|
||||
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);
|
@ -1,11 +1,11 @@
|
||||
--- src/app-utils/guile-util.c.orig 2008-01-08 10:06:47.000000000 +0900
|
||||
+++ src/app-utils/guile-util.c 2009-09-01 03:04:30.000000000 +0900
|
||||
@@ -1304,6 +1304,8 @@
|
||||
--- src/app-utils/guile-util.c.orig 2010-12-29 16:06:05.000000000 +0100
|
||||
+++ src/app-utils/guile-util.c 2010-12-29 16:06:38.000000000 +0100
|
||||
@@ -1317,6 +1317,8 @@ gnc_parse_time_to_timet(const gchar *s,
|
||||
|
||||
g_return_val_if_fail(s && format, -1);
|
||||
g_return_val_if_fail(s && format, -1);
|
||||
|
||||
+ bzero(&tm, sizeof(tm));
|
||||
+ bzero(&tm, sizeof(tm));
|
||||
+
|
||||
if (!strptime(s, format, &tm))
|
||||
return -1;
|
||||
if (!strptime(s, format, &tm))
|
||||
return -1;
|
||||
|
||||
|
12
finance/gnucash/pkg-message
Normal file
12
finance/gnucash/pkg-message
Normal file
@ -0,0 +1,12 @@
|
||||
###############################################################################
|
||||
|
||||
If you have enabled the DATABASE option and want to use any of the supported
|
||||
database backends, you also need to install:
|
||||
|
||||
databases/libdbi-drivers
|
||||
|
||||
And select the database type(s) you want to use.
|
||||
|
||||
MySQL, PostgreSQL, and SQLite3 are supported in GnuCash.
|
||||
|
||||
###############################################################################
|
@ -4,20 +4,17 @@ bin/gnc-fq-helper
|
||||
bin/gnc-fq-update
|
||||
bin/gnc-test-env
|
||||
bin/gnucash
|
||||
bin/gnucash-bin
|
||||
bin/gnucash-env
|
||||
bin/gnucash-make-guids
|
||||
bin/gnucash-valgrind
|
||||
bin/update-gnucash-gconf
|
||||
etc/gnucash/config
|
||||
etc/gnucash/environment
|
||||
include/gnucash/Account.h
|
||||
include/gnucash/FreqSpec.h
|
||||
include/gnucash/GNCId.h
|
||||
include/gnucash/Period.h
|
||||
include/gnucash/Query.h
|
||||
include/gnucash/QueryCore.h
|
||||
include/gnucash/QueryNew.h
|
||||
include/gnucash/QueryObject.h
|
||||
include/gnucash/QuickFill.h
|
||||
include/gnucash/Recurrence.h
|
||||
include/gnucash/SX-book.h
|
||||
@ -31,7 +28,6 @@ include/gnucash/TransLog.h
|
||||
include/gnucash/Transaction.h
|
||||
include/gnucash/account-quickfill.h
|
||||
include/gnucash/basiccell.h
|
||||
include/gnucash/binreloc.h
|
||||
include/gnucash/cap-gains.h
|
||||
include/gnucash/cashobjects.h
|
||||
include/gnucash/cell-factory.h
|
||||
@ -39,11 +35,13 @@ include/gnucash/cellblock.h
|
||||
include/gnucash/checkboxcell.h
|
||||
include/gnucash/combocell.h
|
||||
include/gnucash/datecell.h
|
||||
include/gnucash/deprecated.h
|
||||
include/gnucash/dialog-account.h
|
||||
include/gnucash/dialog-book-close.h
|
||||
include/gnucash/dialog-column-view.h
|
||||
include/gnucash/dialog-commodity.h
|
||||
include/gnucash/dialog-custom-report.h
|
||||
include/gnucash/dialog-file-access.h
|
||||
include/gnucash/dialog-object-references.h
|
||||
include/gnucash/dialog-options.h
|
||||
include/gnucash/dialog-preferences.h
|
||||
include/gnucash/dialog-query-list.h
|
||||
@ -64,10 +62,10 @@ include/gnucash/glib-helpers.h
|
||||
include/gnucash/gnc-account-merge.h
|
||||
include/gnucash/gnc-account-sel.h
|
||||
include/gnucash/gnc-accounting-period.h
|
||||
include/gnucash/gnc-addr-quickfill.h
|
||||
include/gnucash/gnc-amount-edit.h
|
||||
include/gnucash/gnc-associate-account.h
|
||||
include/gnucash/gnc-basic-gobject.h
|
||||
include/gnucash/gnc-book.h
|
||||
include/gnucash/gnc-budget.h
|
||||
include/gnucash/gnc-commodity-edit.h
|
||||
include/gnucash/gnc-commodity.h
|
||||
@ -93,11 +91,11 @@ include/gnucash/gnc-druid-provider.h
|
||||
include/gnucash/gnc-druid.h
|
||||
include/gnucash/gnc-embedded-window.h
|
||||
include/gnucash/gnc-engine.h
|
||||
include/gnucash/gnc-entry-quickfill.h
|
||||
include/gnucash/gnc-euro.h
|
||||
include/gnucash/gnc-event.h
|
||||
include/gnucash/gnc-exp-parser.h
|
||||
include/gnucash/gnc-file.h
|
||||
include/gnucash/gnc-filepath-utils.h
|
||||
include/gnucash/gnc-frequency.h
|
||||
include/gnucash/gnc-general-search.h
|
||||
include/gnucash/gnc-general-select.h
|
||||
@ -107,18 +105,28 @@ include/gnucash/gnc-gui-query.h
|
||||
include/gnucash/gnc-help-utils.h
|
||||
include/gnucash/gnc-helpers.h
|
||||
include/gnucash/gnc-hooks.h
|
||||
include/gnucash/gnc-html-extras.h
|
||||
include/gnucash/gnc-html-factory.h
|
||||
include/gnucash/gnc-html-graph-gog-extras.h
|
||||
include/gnucash/gnc-html-graph-gog-gtkhtml.h
|
||||
include/gnucash/gnc-html-graph-gog-webkit.h
|
||||
include/gnucash/gnc-html-graph-gog.h
|
||||
include/gnucash/gnc-html-gtkhtml-p.h
|
||||
include/gnucash/gnc-html-gtkhtml.h
|
||||
include/gnucash/gnc-html-history.h
|
||||
include/gnucash/gnc-html-p.h
|
||||
include/gnucash/gnc-html-webkit-p.h
|
||||
include/gnucash/gnc-html-webkit.h
|
||||
include/gnucash/gnc-html.h
|
||||
include/gnucash/gnc-icons.h
|
||||
include/gnucash/gnc-import-desc-format.h
|
||||
include/gnucash/gnc-import-format-cb.h
|
||||
include/gnucash/gnc-keyring.h
|
||||
include/gnucash/gnc-main-window.h
|
||||
include/gnucash/gnc-menu-extensions.h
|
||||
include/gnucash/gnc-module-api.h
|
||||
include/gnucash/gnc-module.h
|
||||
include/gnucash/gnc-numeric.h
|
||||
include/gnucash/gnc-path.h
|
||||
include/gnucash/gnc-period-select.h
|
||||
include/gnucash/gnc-plugin-file-history.h
|
||||
include/gnucash/gnc-plugin-manager.h
|
||||
@ -147,10 +155,34 @@ include/gnucash/gnc-tree-view-commodity.h
|
||||
include/gnucash/gnc-tree-view-price.h
|
||||
include/gnucash/gnc-tree-view-sx-list.h
|
||||
include/gnucash/gnc-tree-view.h
|
||||
include/gnucash/gnc-ui-common.h
|
||||
include/gnucash/gnc-ui.h
|
||||
include/gnucash/gnc-ui-util.h
|
||||
include/gnucash/gnc-window.h
|
||||
include/gnucash/gncObject.h
|
||||
include/gnucash/gncAddress.h
|
||||
include/gnucash/gncAddressP.h
|
||||
include/gnucash/gncBillTerm.h
|
||||
include/gnucash/gncBillTermP.h
|
||||
include/gnucash/gncBusGuile.h
|
||||
include/gnucash/gncBusiness.h
|
||||
include/gnucash/gncCustomer.h
|
||||
include/gnucash/gncCustomerP.h
|
||||
include/gnucash/gncEmployee.h
|
||||
include/gnucash/gncEmployeeP.h
|
||||
include/gnucash/gncEntry.h
|
||||
include/gnucash/gncEntryP.h
|
||||
include/gnucash/gncIDSearch.h
|
||||
include/gnucash/gncInvoice.h
|
||||
include/gnucash/gncInvoiceP.h
|
||||
include/gnucash/gncJob.h
|
||||
include/gnucash/gncJobP.h
|
||||
include/gnucash/gncOrder.h
|
||||
include/gnucash/gncOrderP.h
|
||||
include/gnucash/gncOwner.h
|
||||
include/gnucash/gncOwnerP.h
|
||||
include/gnucash/gncTaxTable.h
|
||||
include/gnucash/gncTaxTableP.h
|
||||
include/gnucash/gncVendor.h
|
||||
include/gnucash/gncVendorP.h
|
||||
include/gnucash/gtable.h
|
||||
include/gnucash/guid.h
|
||||
include/gnucash/guile-util.h
|
||||
@ -172,6 +204,7 @@ include/gnucash/qofbackend-p.h
|
||||
include/gnucash/qofbackend.h
|
||||
include/gnucash/qofbook.h
|
||||
include/gnucash/qofbookmerge.h
|
||||
include/gnucash/qofbookslots.h
|
||||
include/gnucash/qofchoice.h
|
||||
include/gnucash/qofclass.h
|
||||
include/gnucash/qofevent.h
|
||||
@ -180,7 +213,6 @@ include/gnucash/qofid-p.h
|
||||
include/gnucash/qofid.h
|
||||
include/gnucash/qofinstance-p.h
|
||||
include/gnucash/qofinstance.h
|
||||
include/gnucash/qofla-dir.h
|
||||
include/gnucash/qoflog.h
|
||||
include/gnucash/qofobject.h
|
||||
include/gnucash/qofquery.h
|
||||
@ -200,10 +232,14 @@ include/gnucash/window-main-summarybar.h
|
||||
include/gnucash/window-report.h
|
||||
lib/gnucash/libgncmod-app-utils.la
|
||||
lib/gnucash/libgncmod-app-utils.so
|
||||
lib/gnucash/libgncmod-backend-file.la
|
||||
lib/gnucash/libgncmod-backend-file.so
|
||||
lib/gnucash/libgncmod-business-backend-file.la
|
||||
lib/gnucash/libgncmod-business-backend-file.so
|
||||
%%AQBANKING%%lib/gnucash/libgncmod-aqbanking.la
|
||||
%%AQBANKING%%lib/gnucash/libgncmod-aqbanking.so
|
||||
%%DATABASE%%lib/gnucash/libgncmod-backend-dbi.la
|
||||
%%DATABASE%%lib/gnucash/libgncmod-backend-dbi.so
|
||||
lib/gnucash/libgncmod-backend-xml.la
|
||||
lib/gnucash/libgncmod-backend-xml.so
|
||||
lib/gnucash/libgncmod-bi_import.la
|
||||
lib/gnucash/libgncmod-bi_import.so
|
||||
lib/gnucash/libgncmod-business-core.la
|
||||
lib/gnucash/libgncmod-business-core.so
|
||||
lib/gnucash/libgncmod-business-gnome.la
|
||||
@ -212,6 +248,8 @@ lib/gnucash/libgncmod-business-utils.la
|
||||
lib/gnucash/libgncmod-business-utils.so
|
||||
lib/gnucash/libgncmod-calculation.la
|
||||
lib/gnucash/libgncmod-calculation.so
|
||||
lib/gnucash/libgncmod-csv.la
|
||||
lib/gnucash/libgncmod-csv.so
|
||||
lib/gnucash/libgncmod-dialog-tax-table.la
|
||||
lib/gnucash/libgncmod-dialog-tax-table.so
|
||||
lib/gnucash/libgncmod-engine.la
|
||||
@ -222,8 +260,8 @@ lib/gnucash/libgncmod-gnome-search.la
|
||||
lib/gnucash/libgncmod-gnome-search.so
|
||||
lib/gnucash/libgncmod-gnome-utils.la
|
||||
lib/gnucash/libgncmod-gnome-utils.so
|
||||
%%AQBANKING%%lib/gnucash/libgncmod-aqbanking.la
|
||||
%%AQBANKING%%lib/gnucash/libgncmod-aqbanking.so
|
||||
lib/gnucash/libgncmod-html.la
|
||||
lib/gnucash/libgncmod-html.so
|
||||
lib/gnucash/libgncmod-ledger-core.la
|
||||
lib/gnucash/libgncmod-ledger-core.so
|
||||
lib/gnucash/libgncmod-locale-reports-us.la
|
||||
@ -253,13 +291,12 @@ lib/gnucash/libgncmod-tax-us.la
|
||||
lib/gnucash/libgncmod-tax-us.so
|
||||
lib/gnucash/libgncmod-utility-reports.la
|
||||
lib/gnucash/libgncmod-utility-reports.so
|
||||
lib/gnucash/libgncqof-backend-qsf.la
|
||||
lib/gnucash/libgncqof-backend-qsf.so
|
||||
lib/libgnc-backend-file-utils.la
|
||||
lib/libgnc-backend-file-utils.so
|
||||
lib/libgnc-backend-file-utils.so.0
|
||||
%%PGBACKEND%%lib/libgnc-backend-postgres.la
|
||||
%%PGBACKEND%%lib/libgnc-backend-postgres.so
|
||||
lib/libgnc-backend-sql.la
|
||||
lib/libgnc-backend-sql.so
|
||||
lib/libgnc-backend-sql.so.0
|
||||
lib/libgnc-backend-xml-utils.la
|
||||
lib/libgnc-backend-xml-utils.so
|
||||
lib/libgnc-backend-xml-utils.so.0
|
||||
lib/libgnc-business-ledger.la
|
||||
lib/libgnc-business-ledger.so
|
||||
lib/libgnc-business-ledger.so.0
|
||||
@ -275,6 +312,23 @@ lib/libgnc-module.so.0
|
||||
lib/libgnc-qof.la
|
||||
lib/libgnc-qof.so
|
||||
lib/libgnc-qof.so.1
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/__init__.py
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/__init__.pyc
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/__init__.pyo
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/_gnucash_core_c.la
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/_gnucash_core_c.so
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/function_class.py
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/function_class.pyc
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/function_class.pyo
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_business.py
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_business.pyc
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_business.pyo
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_core.py
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_core.pyc
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_core.pyo
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_core_c.py
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_core_c.pyc
|
||||
%%PYTHON%%%%PYTHON_SITELIBDIR%%/gnucash/gnucash_core_c.pyo
|
||||
libexec/gnucash/overrides/gnucash-env
|
||||
libexec/gnucash/overrides/gnucash-make-guids
|
||||
libexec/gnucash/overrides/guile
|
||||
@ -295,6 +349,21 @@ share/gnucash/accounts/C/acctchrt_renter.gnucash-xea
|
||||
share/gnucash/accounts/C/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/C/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/C/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_brokerage.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_carloan.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_cdmoneymkt.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_childcare.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_common.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_currency.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_eduloan.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_fixedassets.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_homeloan.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_homeown.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_otherloan.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_renter.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/cs/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/da/acctchrt_car.gnucash-xea
|
||||
share/gnucash/accounts/da/acctchrt_common.gnucash-xea
|
||||
share/gnucash/accounts/da/acctchrt_homeloan.gnucash-xea
|
||||
@ -442,7 +511,6 @@ share/gnucash/accounts/hu_HU/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/hu_HU/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/hu_HU/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/it/acctchrt_brokerage.gnucash-xea
|
||||
share/gnucash/accounts/it/acctchrt_business.gnucash-xea
|
||||
share/gnucash/accounts/it/acctchrt_carloan.gnucash-xea
|
||||
share/gnucash/accounts/it/acctchrt_checkbook.gnucash-xea
|
||||
share/gnucash/accounts/it/acctchrt_childcare.gnucash-xea
|
||||
@ -464,6 +532,7 @@ share/gnucash/accounts/ja/acctchrt_childcare.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_common.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_eduloan.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_fixedassets.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_full.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_homeloan.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_homeown.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_otherloan.gnucash-xea
|
||||
@ -471,6 +540,38 @@ share/gnucash/accounts/ja/acctchrt_renter.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/ja/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_brokerage.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_business.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_carloan.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_cdmoneymkt.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_checkbook.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_childcare.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_common.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_eduloan.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_fixedassets.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_homeloan.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_homeown.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_otherloan.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_renter.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/ko/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_brokerage.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_business.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_carloan.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_cdmoneymkt.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_checkbook.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_childcare.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_common.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_eduloan.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_fixedassets.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_homeloan.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_homeown.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_otherloan.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_renter.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/lv/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/nb/acctchrt_brokerage.gnucash-xea
|
||||
share/gnucash/accounts/nb/acctchrt_business.gnucash-xea
|
||||
share/gnucash/accounts/nb/acctchrt_carloan.gnucash-xea
|
||||
@ -488,7 +589,24 @@ share/gnucash/accounts/nb/acctchrt_renter.gnucash-xea
|
||||
share/gnucash/accounts/nb/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/nb/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/nb/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/nl/acctchrt_checkbook.gnucash-xea
|
||||
share/gnucash/accounts/nl/acctchrt_full.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_brokerage.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_business.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_carloan.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_cdmoneymkt.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_checkbook.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_childcare.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_common.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_eduloan.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_fixedassets.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_homeloan.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_homeown.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_otherloan.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_renter.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_retiremt.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_spouseinc.gnucash-xea
|
||||
share/gnucash/accounts/pl/acctchrt_spouseretire.gnucash-xea
|
||||
share/gnucash/accounts/pt_BR/acctchrt_brokerage.gnucash-xea
|
||||
share/gnucash/accounts/pt_BR/acctchrt_carloan.gnucash-xea
|
||||
share/gnucash/accounts/pt_BR/acctchrt_cdmoneymkt.gnucash-xea
|
||||
@ -565,6 +683,7 @@ share/gnucash/checks/deluxe.chk
|
||||
share/gnucash/checks/liberty.chk
|
||||
share/gnucash/checks/quicken.chk
|
||||
share/gnucash/checks/quicken_wallet.chk
|
||||
share/gnucash/checks/voucher.chk
|
||||
share/gnucash/doc/AUTHORS
|
||||
share/gnucash/doc/COPYING
|
||||
share/gnucash/doc/ChangeLog
|
||||
@ -573,6 +692,8 @@ share/gnucash/doc/ChangeLog.2004
|
||||
share/gnucash/doc/ChangeLog.2005
|
||||
share/gnucash/doc/ChangeLog.2006
|
||||
share/gnucash/doc/ChangeLog.2007
|
||||
share/gnucash/doc/ChangeLog.2008
|
||||
share/gnucash/doc/ChangeLog.2009
|
||||
share/gnucash/doc/DOCUMENTERS
|
||||
share/gnucash/doc/HACKING
|
||||
share/gnucash/doc/INSTALL
|
||||
@ -582,10 +703,12 @@ share/gnucash/doc/README
|
||||
share/gnucash/doc/README-de.win32-bin.txt
|
||||
share/gnucash/doc/README-fr.win32-bin.txt
|
||||
share/gnucash/doc/README-it.win32-bin.txt
|
||||
share/gnucash/doc/README-lv.win32-bin.txt
|
||||
share/gnucash/doc/README-nl.win32-bin.txt
|
||||
share/gnucash/doc/README-zh_CN.win32-bin.txt
|
||||
share/gnucash/doc/README.dependencies
|
||||
share/gnucash/doc/README.francais
|
||||
share/gnucash/doc/README.german
|
||||
share/gnucash/doc/README.patches
|
||||
share/gnucash/doc/README.win32-bin.txt
|
||||
share/gnucash/doc/examples/Money95bank_fr.qif
|
||||
share/gnucash/doc/examples/Money95invst_fr.qif
|
||||
@ -596,36 +719,32 @@ share/gnucash/doc/examples/abc-all.qif
|
||||
share/gnucash/doc/examples/abc.qif
|
||||
share/gnucash/doc/examples/bogus.qif
|
||||
share/gnucash/doc/examples/cbb-export.qif
|
||||
share/gnucash/doc/examples/currency.xac
|
||||
share/gnucash/doc/examples/currency_tree_xml.xac
|
||||
share/gnucash/doc/examples/currency_tree_xml.gnucash
|
||||
share/gnucash/doc/examples/every.qif
|
||||
share/gnucash/doc/examples/ms-money.qif
|
||||
share/gnucash/doc/examples/quicktest.qif
|
||||
share/gnucash/doc/examples/splitdemo.xac
|
||||
share/gnucash/doc/examples/swipe.qif
|
||||
share/gnucash/doc/examples/taxreport.xac
|
||||
share/gnucash/doc/examples/test.xac
|
||||
share/gnucash/doc/examples/test2.xac
|
||||
share/gnucash/doc/examples/test3.xac
|
||||
share/gnucash/doc/examples/test4.xac
|
||||
share/gnucash/doc/examples/trading.xac
|
||||
share/gnucash/doc/examples/trading2.xac
|
||||
share/gnucash/doc/examples/taxreport.gnucash
|
||||
share/gnucash/doc/examples/web.qif
|
||||
share/gnucash/doc/examples/xfer.xac
|
||||
share/gnucash/doc/guile-hackers.txt
|
||||
share/gnucash/doc/projects.html
|
||||
share/gnucash/glade/account.glade
|
||||
share/gnucash/glade/acctperiod.glade
|
||||
%%AQBANKING%%share/gnucash/glade/aqbanking.glade
|
||||
share/gnucash/glade/autoclear.glade
|
||||
share/gnucash/glade/bi_import.glade
|
||||
share/gnucash/glade/billterms.glade
|
||||
share/gnucash/glade/budget.glade
|
||||
share/gnucash/glade/businessprefs.glade
|
||||
share/gnucash/glade/chart-export.glade
|
||||
share/gnucash/glade/choose-owner.glade
|
||||
share/gnucash/glade/commodities.glade
|
||||
share/gnucash/glade/commodity.glade
|
||||
share/gnucash/glade/custom-report-dialog.glade
|
||||
share/gnucash/glade/customer.glade
|
||||
share/gnucash/glade/date-close.glade
|
||||
share/gnucash/glade/dialog-book-close.glade
|
||||
share/gnucash/glade/dialog-file-access.glade
|
||||
share/gnucash/glade/dialog-object-references.glade
|
||||
share/gnucash/glade/dialog-query-list.glade
|
||||
share/gnucash/glade/dialog-reset-warnings.glade
|
||||
share/gnucash/glade/druid-gconf-setup.glade
|
||||
@ -635,14 +754,13 @@ share/gnucash/glade/employee.glade
|
||||
share/gnucash/glade/exchange-dialog.glade
|
||||
share/gnucash/glade/fincalc.glade
|
||||
share/gnucash/glade/generic-import.glade
|
||||
share/gnucash/glade/gnc-csv-preview-dialog.glade
|
||||
share/gnucash/glade/gnc-date-format.glade
|
||||
share/gnucash/glade/gnc-gui-query.glade
|
||||
%%AQBANKING%%share/gnucash/glade/aqbanking.glade
|
||||
share/gnucash/glade/import-provider-format.glade
|
||||
share/gnucash/glade/invoice.glade
|
||||
share/gnucash/glade/job.glade
|
||||
share/gnucash/glade/lots.glade
|
||||
share/gnucash/glade/merge.glade
|
||||
share/gnucash/glade/newuser.glade
|
||||
share/gnucash/glade/order.glade
|
||||
share/gnucash/glade/payment.glade
|
||||
@ -676,45 +794,63 @@ share/gnucash/guile-modules/gnucash/gnome-utils.scm
|
||||
share/gnucash/guile-modules/gnucash/import-export/qif-import.scm
|
||||
share/gnucash/guile-modules/gnucash/main.scm
|
||||
share/gnucash/guile-modules/gnucash/price-quotes.scm
|
||||
share/gnucash/guile-modules/gnucash/report/account-piecharts.scm
|
||||
share/gnucash/guile-modules/gnucash/report/account-summary.scm
|
||||
share/gnucash/guile-modules/gnucash/report/advanced-portfolio.scm
|
||||
share/gnucash/guile-modules/gnucash/printf.scm
|
||||
share/gnucash/guile-modules/gnucash/report/aging.scm
|
||||
share/gnucash/guile-modules/gnucash/report/average-balance.scm
|
||||
share/gnucash/guile-modules/gnucash/report/balance-sheet.scm
|
||||
share/gnucash/guile-modules/gnucash/report/budget.scm
|
||||
share/gnucash/guile-modules/gnucash/report/balsheet-eg.css
|
||||
share/gnucash/guile-modules/gnucash/report/balsheet-eg.eguile.scm
|
||||
share/gnucash/guile-modules/gnucash/report/business-reports.scm
|
||||
share/gnucash/guile-modules/gnucash/report/cash-flow.scm
|
||||
share/gnucash/guile-modules/gnucash/report/category-barchart.scm
|
||||
share/gnucash/guile-modules/gnucash/report/daily-reports.scm
|
||||
share/gnucash/guile-modules/gnucash/report/customer-summary.scm
|
||||
share/gnucash/guile-modules/gnucash/report/easy-invoice.scm
|
||||
share/gnucash/guile-modules/gnucash/report/equity-statement.scm
|
||||
share/gnucash/guile-modules/gnucash/report/eguile-gnc.scm
|
||||
share/gnucash/guile-modules/gnucash/report/eguile-html-utilities.scm
|
||||
share/gnucash/guile-modules/gnucash/report/eguile-utilities.scm
|
||||
share/gnucash/guile-modules/gnucash/report/fancy-invoice.scm
|
||||
share/gnucash/guile-modules/gnucash/report/general-journal.scm
|
||||
share/gnucash/guile-modules/gnucash/report/general-ledger.scm
|
||||
share/gnucash/guile-modules/gnucash/report/hello-world.scm
|
||||
share/gnucash/guile-modules/gnucash/report/income-statement.scm
|
||||
share/gnucash/guile-modules/gnucash/report/invoice.scm
|
||||
share/gnucash/guile-modules/gnucash/report/job-report.scm
|
||||
share/gnucash/guile-modules/gnucash/report/locale-specific/de_DE.scm
|
||||
share/gnucash/guile-modules/gnucash/report/locale-specific/us.scm
|
||||
share/gnucash/guile-modules/gnucash/report/net-barchart.scm
|
||||
share/gnucash/guile-modules/gnucash/report/owner-report.scm
|
||||
share/gnucash/guile-modules/gnucash/report/payables.scm
|
||||
share/gnucash/guile-modules/gnucash/report/portfolio.scm
|
||||
share/gnucash/guile-modules/gnucash/report/price-scatter.scm
|
||||
share/gnucash/guile-modules/gnucash/report/receivables.scm
|
||||
share/gnucash/guile-modules/gnucash/report/register.scm
|
||||
share/gnucash/guile-modules/gnucash/report/report-gnome.scm
|
||||
share/gnucash/guile-modules/gnucash/report/report-system.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/account-piecharts.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/account-summary.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/advanced-portfolio.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/average-balance.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/balance-sheet.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/balsheet-eg.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/budget-balance-sheet.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/budget-barchart.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/budget-flow.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/budget-income-statement.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/budget.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/cash-flow.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/category-barchart.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/daily-reports.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/equity-statement.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/general-journal.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/general-ledger.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/income-statement.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/net-barchart.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/portfolio.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/price-scatter.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/register.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/sx-summary.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/transaction.scm
|
||||
share/gnucash/guile-modules/gnucash/report/standard-reports/trial-balance.scm
|
||||
share/gnucash/guile-modules/gnucash/report/stylesheet-easy.scm
|
||||
share/gnucash/guile-modules/gnucash/report/stylesheet-fancy.scm
|
||||
share/gnucash/guile-modules/gnucash/report/stylesheet-footer.scm
|
||||
share/gnucash/guile-modules/gnucash/report/stylesheet-plain.scm
|
||||
share/gnucash/guile-modules/gnucash/report/stylesheets.scm
|
||||
share/gnucash/guile-modules/gnucash/report/taxinvoice.css
|
||||
share/gnucash/guile-modules/gnucash/report/taxinvoice.eguile.scm
|
||||
share/gnucash/guile-modules/gnucash/report/taxinvoice.scm
|
||||
share/gnucash/guile-modules/gnucash/report/taxtxf-de_DE.scm
|
||||
share/gnucash/guile-modules/gnucash/report/taxtxf.scm
|
||||
share/gnucash/guile-modules/gnucash/report/transaction.scm
|
||||
share/gnucash/guile-modules/gnucash/report/trial-balance.scm
|
||||
share/gnucash/guile-modules/gnucash/report/utility-reports.scm
|
||||
share/gnucash/guile-modules/gnucash/report/view-column.scm
|
||||
share/gnucash/guile-modules/gnucash/report/welcome-to-gnucash.scm
|
||||
@ -735,8 +871,14 @@ share/gnucash/pixmaps/gnc-account-open-16.png
|
||||
share/gnucash/pixmaps/gnc-account-open.png
|
||||
share/gnucash/pixmaps/gnc-account.png
|
||||
share/gnucash/pixmaps/gnc-invoice-16.png
|
||||
share/gnucash/pixmaps/gnc-invoice-duplicate-16.png
|
||||
share/gnucash/pixmaps/gnc-invoice-duplicate.png
|
||||
share/gnucash/pixmaps/gnc-invoice-edit-16.png
|
||||
share/gnucash/pixmaps/gnc-invoice-edit.png
|
||||
share/gnucash/pixmaps/gnc-invoice-new-16.png
|
||||
share/gnucash/pixmaps/gnc-invoice-new.png
|
||||
share/gnucash/pixmaps/gnc-invoice-pay-16.png
|
||||
share/gnucash/pixmaps/gnc-invoice-pay.png
|
||||
share/gnucash/pixmaps/gnc-invoice-post-16.png
|
||||
share/gnucash/pixmaps/gnc-invoice-post.png
|
||||
share/gnucash/pixmaps/gnc-invoice-unpost-16.png
|
||||
@ -750,10 +892,14 @@ share/gnucash/pixmaps/gnc-sx-new-16.png
|
||||
share/gnucash/pixmaps/gnc-sx-new.png
|
||||
share/gnucash/pixmaps/gnc-transfer-16.png
|
||||
share/gnucash/pixmaps/gnc-transfer.png
|
||||
share/gnucash/pixmaps/gnucash-icon-128x128.png
|
||||
share/gnucash/pixmaps/gnucash-icon-16x16.png
|
||||
share/gnucash/pixmaps/gnucash-icon-256x256.png
|
||||
share/gnucash/pixmaps/gnucash-icon-32x32.png
|
||||
share/gnucash/pixmaps/gnucash-icon-48x48.bmp
|
||||
share/gnucash/pixmaps/gnucash-icon-48x48.png
|
||||
share/gnucash/pixmaps/gnucash-icon-64x64.png
|
||||
share/gnucash/pixmaps/gnucash-icon-96x96.png
|
||||
share/gnucash/pixmaps/gnucash-icon.ico
|
||||
share/gnucash/pixmaps/gnucash_splash.png
|
||||
share/gnucash/pixmaps/stock_split_title.png
|
||||
@ -779,6 +925,8 @@ share/gnucash/scm/hooks.scm
|
||||
share/gnucash/scm/html-acct-table.scm
|
||||
share/gnucash/scm/html-barchart.scm
|
||||
share/gnucash/scm/html-document.scm
|
||||
share/gnucash/scm/html-fonts.scm
|
||||
share/gnucash/scm/html-linechart.scm
|
||||
share/gnucash/scm/html-piechart.scm
|
||||
share/gnucash/scm/html-scatter.scm
|
||||
share/gnucash/scm/html-style-info.scm
|
||||
@ -812,11 +960,13 @@ share/gnucash/scm/xml-generator.scm
|
||||
share/gnucash/tip_of_the_day.list
|
||||
share/gnucash/ui/gnc-main-window-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-account-tree-ui.xml
|
||||
%%AQBANKING%%share/gnucash/ui/gnc-plugin-aqbanking-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-basic-commands-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-bi_import-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-budget-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-business-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-csv-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-file-history-ui.xml
|
||||
%%AQBANKING%%share/gnucash/ui/gnc-plugin-aqbanking-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-log-replay-ui.xml
|
||||
%%OFX%%share/gnucash/ui/gnc-plugin-ofx-ui.xml
|
||||
share/gnucash/ui/gnc-plugin-page-account-tree-ui.xml
|
||||
@ -833,32 +983,37 @@ share/gnucash/ui/gnc-reconcile-window-ui.xml
|
||||
share/gnucash/ui/gnc-sxed-to-create-window-ui.xml
|
||||
share/gnucash/ui/gnc-sxed-window-ui-full.xml
|
||||
share/gnucash/ui/gnc-sxed-window-ui.xml
|
||||
share/gnucash/xml/qsf/pilot-qsf-GnuCashInvoice.xml
|
||||
share/gnucash/xml/qsf/pilot-qsf-gncCustomer.xml
|
||||
share/gnucash/xml/qsf/qsf-map.xsd.xml
|
||||
share/gnucash/xml/qsf/qsf-object.xsd.xml
|
||||
share/gnucash/ui/osx_accel_map
|
||||
share/icons/hicolor/128x128/apps/gnucash-icon.png
|
||||
share/icons/hicolor/16x16/apps/gnucash-icon.png
|
||||
share/icons/hicolor/22x22/apps/gnucash-icon.png
|
||||
share/icons/hicolor/24x24/apps/gnucash-icon.png
|
||||
share/icons/hicolor/256x256/apps/gnucash-icon.png
|
||||
share/icons/hicolor/32x32/apps/gnucash-icon.png
|
||||
share/icons/hicolor/48x48/apps/gnucash-icon.png
|
||||
share/icons/hicolor/64x64/apps/gnucash-icon.png
|
||||
share/icons/hicolor/96x96/apps/gnucash-icon.png
|
||||
share/icons/hicolor/scalable/apps/gnucash-icon.svg
|
||||
share/locale/bg/LC_MESSAGES/gnucash.mo
|
||||
share/locale/ca/LC_MESSAGES/gnucash.mo
|
||||
share/locale/cs/LC_MESSAGES/gnucash.mo
|
||||
share/locale/da/LC_MESSAGES/gnucash.mo
|
||||
share/locale/de/LC_MESSAGES/gnucash.mo
|
||||
share/locale/de_CH/LC_MESSAGES/gnucash.mo
|
||||
share/locale/el/LC_MESSAGES/gnucash.mo
|
||||
share/locale/en_GB/LC_MESSAGES/gnucash.mo
|
||||
share/locale/es/LC_MESSAGES/gnucash.mo
|
||||
share/locale/es_NI/LC_MESSAGES/gnucash.mo
|
||||
share/locale/eu/LC_MESSAGES/gnucash.mo
|
||||
share/locale/fa/LC_MESSAGES/gnucash.mo
|
||||
share/locale/fi/LC_MESSAGES/gnucash.mo
|
||||
share/locale/fr/LC_MESSAGES/gnucash.mo
|
||||
share/locale/he/LC_MESSAGES/gnucash.mo
|
||||
share/locale/hu/LC_MESSAGES/gnucash.mo
|
||||
share/locale/it/LC_MESSAGES/gnucash.mo
|
||||
share/locale/ja/LC_MESSAGES/gnucash.mo
|
||||
share/locale/ko/LC_MESSAGES/gnucash.mo
|
||||
share/locale/lt/LC_MESSAGES/gnucash.mo
|
||||
share/locale/lv/LC_MESSAGES/gnucash.mo
|
||||
share/locale/nb/LC_MESSAGES/gnucash.mo
|
||||
share/locale/ne/LC_MESSAGES/gnucash.mo
|
||||
share/locale/nl/LC_MESSAGES/gnucash.mo
|
||||
@ -876,12 +1031,6 @@ share/locale/uk/LC_MESSAGES/gnucash.mo
|
||||
share/locale/vi/LC_MESSAGES/gnucash.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/gnucash.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/gnucash.mo
|
||||
share/xml/gnucash/xsl/README
|
||||
share/xml/gnucash/xsl/date-time.xsl
|
||||
share/xml/gnucash/xsl/gnucash-gnccustomer-vcard2.xsl
|
||||
share/xml/gnucash/xsl/gnucash-std.xsl
|
||||
share/xml/gnucash/xsl/string.xsl
|
||||
share/xml/gnucash/xsl/vcard-gnccustomer.pl
|
||||
@dirrmtry share/locale/rw/LC_MESSAGES
|
||||
@dirrmtry share/locale/rw
|
||||
@dirrmtry share/locale/fi/LC_MESSAGES
|
||||
@ -890,18 +1039,14 @@ share/xml/gnucash/xsl/vcard-gnccustomer.pl
|
||||
@dirrmtry share/locale/es_NI
|
||||
@dirrmtry share/locale/de_CH/LC_MESSAGES
|
||||
@dirrmtry share/locale/de_CH
|
||||
@dirrm share/xml/gnucash/xsl
|
||||
@dirrm share/xml/gnucash
|
||||
@dirrm share/gnucash/xml/qsf
|
||||
@dirrm share/gnucash/xml
|
||||
@dirrm share/gnucash/ui
|
||||
@dirrm share/gnucash/scm/qif-import
|
||||
@dirrm share/gnucash/scm/gnumeric
|
||||
@dirrm share/gnucash/scm
|
||||
@dirrm share/gnucash/pixmaps
|
||||
@dirrm share/gnucash/guile-modules/www
|
||||
@dirrm share/gnucash/guile-modules/srfi
|
||||
@dirrm share/gnucash/guile-modules/gnucash/tax
|
||||
@dirrm share/gnucash/guile-modules/gnucash/report/standard-reports
|
||||
@dirrm share/gnucash/guile-modules/gnucash/report/locale-specific
|
||||
@dirrm share/gnucash/guile-modules/gnucash/report
|
||||
@dirrm share/gnucash/guile-modules/gnucash/import-export
|
||||
@ -917,8 +1062,11 @@ share/xml/gnucash/xsl/vcard-gnccustomer.pl
|
||||
@dirrm share/gnucash/accounts/ru
|
||||
@dirrm share/gnucash/accounts/pt_PT
|
||||
@dirrm share/gnucash/accounts/pt_BR
|
||||
@dirrm share/gnucash/accounts/pl
|
||||
@dirrm share/gnucash/accounts/nl
|
||||
@dirrm share/gnucash/accounts/nb
|
||||
@dirrm share/gnucash/accounts/lv
|
||||
@dirrm share/gnucash/accounts/ko
|
||||
@dirrm share/gnucash/accounts/ja
|
||||
@dirrm share/gnucash/accounts/it
|
||||
@dirrm share/gnucash/accounts/hu_HU
|
||||
@ -934,11 +1082,13 @@ share/xml/gnucash/xsl/vcard-gnccustomer.pl
|
||||
@dirrm share/gnucash/accounts/de_CH
|
||||
@dirrm share/gnucash/accounts/de_AT
|
||||
@dirrm share/gnucash/accounts/da
|
||||
@dirrm share/gnucash/accounts/cs
|
||||
@dirrm share/gnucash/accounts/C
|
||||
@dirrm share/gnucash/accounts
|
||||
@dirrm share/gnucash
|
||||
@dirrm libexec/gnucash/overrides
|
||||
@dirrm libexec/gnucash
|
||||
%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/gnucash
|
||||
@dirrm lib/gnucash
|
||||
@dirrm include/gnucash
|
||||
@dirrm etc/gnucash
|
||||
|
Loading…
Reference in New Issue
Block a user