summaryrefslogtreecommitdiff
path: root/finance/gnucash-gtk1/patches
diff options
context:
space:
mode:
authorwiz <wiz>2006-07-11 12:56:25 +0000
committerwiz <wiz>2006-07-11 12:56:25 +0000
commit7cd62190fcf4db10fc7ebb9099a7adaa62ef75c9 (patch)
treee54c0dffa5a3265635812c271537648a03bf05bb /finance/gnucash-gtk1/patches
parent44a3332a51d1e9f47625c7596a30ad4555cd54bd (diff)
downloadpkgsrc-7cd62190fcf4db10fc7ebb9099a7adaa62ef75c9.tar.gz
Reimport gnucash as gnucash-gtk1.
Diffstat (limited to 'finance/gnucash-gtk1/patches')
-rw-r--r--finance/gnucash-gtk1/patches/patch-aa13
-rw-r--r--finance/gnucash-gtk1/patches/patch-ba13
-rw-r--r--finance/gnucash-gtk1/patches/patch-bb13
-rw-r--r--finance/gnucash-gtk1/patches/patch-be26
-rw-r--r--finance/gnucash-gtk1/patches/patch-bf13
-rw-r--r--finance/gnucash-gtk1/patches/patch-bg13
6 files changed, 91 insertions, 0 deletions
diff --git a/finance/gnucash-gtk1/patches/patch-aa b/finance/gnucash-gtk1/patches/patch-aa
new file mode 100644
index 00000000000..7e3c008ce27
--- /dev/null
+++ b/finance/gnucash-gtk1/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2006/07/11 12:56:25 wiz Exp $
+
+--- src/gnome-utils/gnc-html.c.orig 2003-04-12 19:03:30.000000000 +0200
++++ src/gnome-utils/gnc-html.c
+@@ -1335,7 +1335,7 @@ gnc_html_export(gnc_html * html, const c
+ if (!fh)
+ return FALSE;
+
+- gtk_html_save (GTK_HTML(html->html), raw_html_receiver, fh);
++ gtk_html_save (GTK_HTML(html->html), (GtkHTMLSaveReceiverFn)raw_html_receiver, fh);
+
+ fclose (fh);
+
diff --git a/finance/gnucash-gtk1/patches/patch-ba b/finance/gnucash-gtk1/patches/patch-ba
new file mode 100644
index 00000000000..60ca788138a
--- /dev/null
+++ b/finance/gnucash-gtk1/patches/patch-ba
@@ -0,0 +1,13 @@
+$NetBSD: patch-ba,v 1.1.1.1 2006/07/11 12:56:25 wiz Exp $
+
+--- Makefile.in.orig 2005-10-19 22:26:28.000000000 +0200
++++ Makefile.in
+@@ -412,7 +412,7 @@ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+ target_alias = @target_alias@
+-SUBDIRS = intl m4 macros doc lib src intl-scm po rpm accounts
++SUBDIRS = m4 macros doc lib src intl-scm po rpm accounts
+ docdir = ${GNC_DOC_INSTALL_DIR}
+ @GNC_FALSE@dummy_SOURCES = dummy.c
+ noinst_DATA = make-gnucash-patch make-gnucash-potfiles
diff --git a/finance/gnucash-gtk1/patches/patch-bb b/finance/gnucash-gtk1/patches/patch-bb
new file mode 100644
index 00000000000..487d5fa85f3
--- /dev/null
+++ b/finance/gnucash-gtk1/patches/patch-bb
@@ -0,0 +1,13 @@
+$NetBSD: patch-bb,v 1.1.1.1 2006/07/11 12:56:25 wiz Exp $
+
+--- configure.orig 2006-04-01 01:28:08.000000000 -0500
++++ configure
+@@ -18768,7 +18768,7 @@ gnc_have_guile_www=no
+
+ echo "$as_me:$LINENO: checking if guile needs our copy of (guile www)" >&5
+ echo $ECHO_N "checking if guile needs our copy of (guile www)... $ECHO_C" >&6
+-if ${GUILE} -c "(use-modules (www main))" > /dev/null 2>&1
++if false && ${GUILE} -c "(use-modules (www main))" > /dev/null 2>&1
+ then
+ gnc_have_guile_www=yes
+ echo "$as_me:$LINENO: result: no" >&5
diff --git a/finance/gnucash-gtk1/patches/patch-be b/finance/gnucash-gtk1/patches/patch-be
new file mode 100644
index 00000000000..c1dac662ebc
--- /dev/null
+++ b/finance/gnucash-gtk1/patches/patch-be
@@ -0,0 +1,26 @@
+$NetBSD: patch-be,v 1.1.1.1 2006/07/11 12:56:25 wiz Exp $
+
+--- src/doc/Makefile.in.orig 2005-10-19 22:26:09.000000000 +0200
++++ src/doc/Makefile.in
+@@ -388,7 +388,7 @@ EXTRA_DIST = \
+ query-api.txt \
+ user-prefs-howto.txt
+
+-docdir = ${GNC_DOC_INSTALL_DIR}
++docdir = ${datadir}/doc
+ all: all-recursive
+
+ .SUFFIXES:
+@@ -723,10 +723,10 @@ maintainer-clean-local:
+ rm -f refman.pdf
+
+ install-data-hook:
+- $(mkinstalldirs) $(DESTDIR)$(docdir)/html
++ $(mkinstalldirs) $(DESTDIR)$(docdir)/gnucash
+ mkdir -p html #Workaround to allow libofx-cvs user to install without doc.
+ # cp -rp $(srcdir)/html ${docdir}
+- cp -rp html $(DESTDIR)$(docdir)/html
++ -cp -p html/* $(DESTDIR)$(docdir)/gnucash
+
+ uninstall-hook:
+ rm -rf ${docdir}/html
diff --git a/finance/gnucash-gtk1/patches/patch-bf b/finance/gnucash-gtk1/patches/patch-bf
new file mode 100644
index 00000000000..5708d4590ae
--- /dev/null
+++ b/finance/gnucash-gtk1/patches/patch-bf
@@ -0,0 +1,13 @@
+$NetBSD: patch-bf,v 1.1.1.1 2006/07/11 12:56:25 wiz Exp $
+
+--- src/quotes/Makefile.in.orig 2005-10-19 22:26:20.000000000 +0200
++++ src/quotes/Makefile.in
+@@ -357,7 +357,7 @@ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+ target_alias = @target_alias@
+ gncsharedir = ${GNC_SHAREDIR}
+-bin_SCRIPTS = dump-finance-quote gnc-prices update-finance-quote
++bin_SCRIPTS = dump-finance-quote gnc-prices
+ gncshare_SCRIPTS = finance-quote-helper finance-quote-check
+ EXTRA_DIST = \
+ .cvsignore \
diff --git a/finance/gnucash-gtk1/patches/patch-bg b/finance/gnucash-gtk1/patches/patch-bg
new file mode 100644
index 00000000000..4bf46b785cd
--- /dev/null
+++ b/finance/gnucash-gtk1/patches/patch-bg
@@ -0,0 +1,13 @@
+$NetBSD: patch-bg,v 1.1.1.1 2006/07/11 12:56:25 wiz Exp $
+
+--- doc/examples/Makefile.in.orig 2005-10-19 22:25:58.000000000 +0200
++++ doc/examples/Makefile.in
+@@ -361,7 +361,7 @@ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+ target_alias = @target_alias@
+-docdir = ${GNC_DOC_INSTALL_DIR}/examples
++docdir = ${datadir}/examples/gnucash
+ doc_DATA = \
+ Money95bank_fr.qif \
+ Money95invst_fr.qif \