pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

gnucash: update to 2.7.5.



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <tk%giga.or.at@localhost>
Pushed By:	wiz
Date:		Mon Feb 26 09:31:05 2018 +0100
Changeset:	c89fdd1e8f29fbcc90325fce4bbd6b96ec80ca43

Modified Files:
	gnucash-devel/Makefile
	gnucash-devel/PLIST
	gnucash-devel/distinfo
	gnucash-devel/patches/patch-gnucash_gnucash-bin.c
Removed Files:
	gnucash-devel/patches/patch-gnucash_CMakeLists.txt
	gnucash-devel/patches/patch-gnucash_ugly-hack_CMakeLists.txt

Log Message:
gnucash: update to 2.7.5.

New Features for Users

  * Locate all user data and configuration files to platform-dependent standard locations:
      * Windows: CSIDL_APPDATA/Gnucash
      * MacOS: $HOME/Library/Application Support/Gnucash
      * Linux: $XDG_CONFIG_HOME/gnucash (or the default $HOME/.config/gnucash)
    GnuCash currently uses the following files in this directory:
        log.conf (to set what gets logged to gnucash.trace)
        config-user.scm (to add custom scheme code like custom reports; replaces config.user and config-<version>.user)
        gtk-3.0.css (For theming)
    On Windows and with the MacOS Gnucash.app we distribute the files will already be in the correct locations; users will
    need to rename any config*.user files to config.scm. On other platforms except MacOS, where those files were previously
    stored in $HOME/.gnucash, GnuCash will move log.conf (if it exists) and the most recent config*.user, renaming the
    latter, automatically. MacOS installations other than our Gnucash.app bundle will have their data and configuration
    files in $HOME/.gnucash but users will have to copy the files to $HOME/Library/Application Support/Gnucash themselves.
  * Further improvements to the Transaction and Income-GST-statement reports.
  * Transaction Report: omit display of $0 in subtotals in other currencies. Previously in dual-subtotal columns, the dual-
    subtotal would attempt to print all commodities in the row. This meant if user chose common-currency thereby triggering
    additional commodities, the dual-subtotal would attempt to add amounts in other commodities which would be 0, and
    display the 0 amount.

For Developers and Distro packagers:

  * Some cruft removal in libgnucash/scm plus moving some code to its only use location. "main.scm" is renamed to
    "utilities.scm".
  * The "printf" family of Scheme custom functions is replaced with the built-in "format" facility.
  * Change a generally unnecessary warning about being unable to open a module (usually because the file is still being
    created) to a debug message. It appears mostly during highly parallel builds and was distracting.
  * Added dependency information to all CMake targets, replacing a dependency on build order that was carried over from
    autotools. Highly parallel builds in ninja now complete without interuption.
  * Ensure that all GtkBuilder and GtkUIManager files are correctly installed and that no configuration of build products in
    those directories are.
  * Appstream configuration is updated to the latest spec.
  * Fix installation of a gnucash-only gschemas.compiled overwriting the system one. Note that if you install to a DESTDIR
    you'll need to re-run glib-compile-scemas after moving the contents of $DESTDIR$PREFIX/share/glib-2.0/schemas to
    $PREFIX.
  * Added two functions to the Scheme option API:
      * gnc:option-make-internal! will hide an existing option. e.g. a derived report can set the value for a Display/*
        option and hide it from the user.
      * gnc:unregister-option will unregister option. This is primarily useful for derived options e.g. another report
        copies from transaction.scm and removes some options and recreates them with different parameters.
    For example, unregister existing option from section "Accounts" name "Accounts", and recreate with different parameters
    e.g. limited account types.

Bugs fixed in this release

  * Bug 787095 - Gnucash Crashes when opening old XML file.
  * Bug 792157 - Cannot create account with different currency
  * Bug 792833 - User specifies source of 'num' field'; either transaction number or split action (requires at least GnuCash
                 2.5.0) Strip leading delimiters from KVP keys when reading them from the database. Leading delimiters are
                 incorrectly included in databases created with GnuCash 2.6.x.
  * Bug 792883 - cmake: no way to turn off -Werror Prepend settings to CMAKE_C_FLAGS and CMAKE_CXX_FLAGS so that values
                 supplied on the command line can override the fixed settings.
  * Bug 792884 - cmake: gschemas.compiled missing
  * Bug 793122 - 2.7.3: ninja build fails.
  * Bug 793155 - Gnucash 2.7.4 crashes on launch MacOS 10.13.4 PB1
  * Bug 793278 - wrong data in charts with accumulated values (like "net-linechart", "net-barchart" and "liabilities
                 barchart")
  * Bug 793568 - "Cash Flow" report crashes

Some other fixes not associated with reported bugs:

  * An optimization in the GncDateTime string constructor provides substantial speed up of loading SQL databases, and one in
    Scheduled Transaction creation will speed up creation of large numbers of scheduled transactions.
  * More dialogs have transient-for set so that they pop up over the window instead of in the upper left-hand corner of the
    monitor.

KNOWN PROBLEMS:

  * Bug 789594 - Unable to overwrite splite3 database file
  * Bug 791823 - There is no Gtk3 theme-setting tool for Windows.
  * Bug 791825 - Accounting period dates off-by-1

Updated Translations: German, Greek, Slovak, Spanish

    A new set of business account templates for India's new GST; use locale en_IN to enable them.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c89fdd1e8f29fbcc90325fce4bbd6b96ec80ca43

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 gnucash-devel/Makefile                             | 14 +++-----
 gnucash-devel/PLIST                                | 39 ++++------------------
 gnucash-devel/distinfo                             | 12 +++----
 gnucash-devel/patches/patch-gnucash_CMakeLists.txt | 26 ---------------
 gnucash-devel/patches/patch-gnucash_gnucash-bin.c  |  6 ++--
 .../patches/patch-gnucash_ugly-hack_CMakeLists.txt |  8 -----
 6 files changed, 19 insertions(+), 86 deletions(-)

diffs:
diff --git a/gnucash-devel/Makefile b/gnucash-devel/Makefile
index b2d587cd14..267d203597 100644
--- a/gnucash-devel/Makefile
+++ b/gnucash-devel/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD: Makefile,v 1.248 2017/07/03 11:49:37 wiz Exp $
 
-DISTNAME=		gnucash-2.7.4
+DISTNAME=		gnucash-2.7.5
 CATEGORIES=		finance
 MASTER_SITES=		${MASTER_SITE_SOURCEFORGE:=gnucash/}
 EXTRACT_SUFX=		.tar.bz2
@@ -52,17 +52,11 @@ REPLACE_PERL+=		util/elegant-sort.pl
 PLIST_SRC=		PLIST
 
 PKG_SYSCONFSUBDIR=	gnucash
-CONF_FILES+=		${PREFIX}/share/examples/gnucash/gnucash/config ${PKG_SYSCONFDIR}/config
-CONF_FILES+=		${PREFIX}/share/examples/gnucash/gnucash/environment ${PKG_SYSCONFDIR}/environment
-INSTALLATION_DIRS=	share/examples/gnucash/gnucash
+CONF_FILES+=		${PREFIX}/share/examples/gnucash/environment ${PKG_SYSCONFDIR}/environment
+INSTALLATION_DIRS=	share/examples/gnucash
 
 post-install:
-	${MV} ${DESTDIR}${PREFIX}/etc/gnucash/config ${DESTDIR}${PREFIX}/share/examples/gnucash/gnucash/config
-	${MV} ${DESTDIR}${PREFIX}/etc/gnucash/environment ${DESTDIR}${PREFIX}/share/examples/gnucash/gnucash/environment
-
-# remove after 2.7.5
-pre-patch:
-	${MKDIR} -p ${WRKSRC}/gnucash/ugly-hack
+	${MV} ${DESTDIR}${PREFIX}/etc/gnucash/environment ${DESTDIR}${PREFIX}/share/examples/gnucash/environment
 
 .include "options.mk"
 
diff --git a/gnucash-devel/PLIST b/gnucash-devel/PLIST
index 9992fed1bd..af3dec9756 100644
--- a/gnucash-devel/PLIST
+++ b/gnucash-devel/PLIST
@@ -250,7 +250,6 @@ lib/gnucash/libgncmod-report-gnome.so
 lib/gnucash/libgncmod-report-system.so
 lib/gnucash/libgncmod-stylesheets.so
 lib/gnucash/libgncmod-tax-us.so
-lib/gnucash/scm/ccache/2.2/build-config.go
 lib/gnucash/scm/ccache/2.2/business-options.go
 lib/gnucash/scm/ccache/2.2/business-prefs.go
 lib/gnucash/scm/ccache/2.2/c-interface.go
@@ -281,9 +280,8 @@ lib/gnucash/scm/ccache/2.2/gnucash/gnc-modules/test/test-gnc-module-scm-multi.go
 lib/gnucash/scm/ccache/2.2/gnucash/gnc-modules/test/test-gnc-module-swigged-c.go
 lib/gnucash/scm/ccache/2.2/gnucash/gnome-utils.go
 lib/gnucash/scm/ccache/2.2/gnucash/import-export/qif-import.go
-lib/gnucash/scm/ccache/2.2/gnucash/main.go
+lib/gnucash/scm/ccache/2.2/gnucash/import-export/string.go
 lib/gnucash/scm/ccache/2.2/gnucash/price-quotes.go
-lib/gnucash/scm/ccache/2.2/gnucash/printf.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/aging.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/balsheet-eg.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/business-reports.go
@@ -367,8 +365,7 @@ lib/gnucash/scm/ccache/2.2/gnucash/reports/test-load-report-gnome-module.go
 lib/gnucash/scm/ccache/2.2/gnucash/tax/de_DE.go
 lib/gnucash/scm/ccache/2.2/gnucash/tax/us.go
 lib/gnucash/scm/ccache/2.2/gnucash/unittest-support.go
-lib/gnucash/scm/ccache/2.2/gnumeric/gnumeric-utilities.go
-lib/gnucash/scm/ccache/2.2/gnumeric/table-utils.go
+lib/gnucash/scm/ccache/2.2/gnucash/utilities.go
 lib/gnucash/scm/ccache/2.2/hooks.go
 lib/gnucash/scm/ccache/2.2/html-acct-table.go
 lib/gnucash/scm/ccache/2.2/html-barchart.go
@@ -399,8 +396,6 @@ lib/gnucash/scm/ccache/2.2/qif-import/qif-utils.go
 lib/gnucash/scm/ccache/2.2/report-utilities.go
 lib/gnucash/scm/ccache/2.2/report.go
 lib/gnucash/scm/ccache/2.2/simple-obj.go
-lib/gnucash/scm/ccache/2.2/string.go
-lib/gnucash/scm/ccache/2.2/substring-search.go
 lib/gnucash/scm/ccache/2.2/test-account.go
 lib/gnucash/scm/ccache/2.2/test-c-interface.go
 lib/gnucash/scm/ccache/2.2/test-create-account.go
@@ -410,7 +405,6 @@ lib/gnucash/scm/ccache/2.2/txf-de_DE.go
 lib/gnucash/scm/ccache/2.2/txf-help-de_DE.go
 lib/gnucash/scm/ccache/2.2/txf-help.go
 lib/gnucash/scm/ccache/2.2/txf.go
-lib/gnucash/scm/ccache/2.2/xml-generator.go
 lib/libgnc-backend-sql.so
 lib/libgnc-backend-xml-utils.so
 lib/libgnc-core-utils.so
@@ -470,6 +464,7 @@ share/doc/gnucash/bogus.qif
 share/doc/gnucash/cbb-export.qif
 share/doc/gnucash/currency_tree_xml.gnucash
 share/doc/gnucash/every.qif
+share/doc/gnucash/gtk-3.0.css
 share/doc/gnucash/guile-hackers.txt
 share/doc/gnucash/invoice.csv
 share/doc/gnucash/ms-money.qif
@@ -478,8 +473,7 @@ share/doc/gnucash/quicktest.qif
 share/doc/gnucash/swipe.qif
 share/doc/gnucash/taxreport.gnucash
 share/doc/gnucash/web.qif
-share/examples/gnucash/gnucash/config
-share/examples/gnucash/gnucash/environment
+share/examples/gnucash/environment
 share/glib-2.0/schemas/org.gnucash.dialogs.business.gschema.xml
 share/glib-2.0/schemas/org.gnucash.dialogs.checkprinting.gschema.xml
 share/glib-2.0/schemas/org.gnucash.dialogs.commodities.gschema.xml
@@ -596,6 +590,7 @@ share/gnucash/accounts/en_GB/acctchrt_retiremt.gnucash-xea
 share/gnucash/accounts/en_GB/acctchrt_spouseinc.gnucash-xea
 share/gnucash/accounts/en_GB/acctchrt_spouseretire.gnucash-xea
 share/gnucash/accounts/en_GB/uk-vat.gnucash-xea
+share/gnucash/accounts/en_IN/acctchrt_gstindia.gnucash-xea
 share/gnucash/accounts/es_ES/acctchrt_brokerage.gnucash-xea
 share/gnucash/accounts/es_ES/acctchrt_carloan.gnucash-xea
 share/gnucash/accounts/es_ES/acctchrt_cdmoneymkt.gnucash-xea
@@ -879,10 +874,6 @@ share/gnucash/checks/quicken_3part.chk
 share/gnucash/checks/quicken_check_21.chk
 share/gnucash/checks/quicken_wallet.chk
 share/gnucash/checks/voucher.chk
-share/gnucash/gtkbuilder/CMakeFiles/CMakeDirectoryInformation.cmake
-share/gnucash/gtkbuilder/CMakeFiles/progress.marks
-share/gnucash/gtkbuilder/CTestTestfile.cmake
-share/gnucash/gtkbuilder/Makefile
 share/gnucash/gtkbuilder/assistant-acct-period.glade
 share/gnucash/gtkbuilder/assistant-csv-account-import.glade
 share/gnucash/gtkbuilder/assistant-csv-export.glade
@@ -895,7 +886,6 @@ share/gnucash/gtkbuilder/assistant-stock-split.glade
 share/gnucash/gtkbuilder/assistant-xml-encoding.glade
 share/gnucash/gtkbuilder/business-options-gnome.glade
 share/gnucash/gtkbuilder/business-prefs.glade
-share/gnucash/gtkbuilder/cmake_install.cmake
 share/gnucash/gtkbuilder/dialog-account-picker.glade
 share/gnucash/gtkbuilder/dialog-account.glade
 share/gnucash/gtkbuilder/dialog-bi-import-gui.glade
@@ -1013,15 +1003,10 @@ share/gnucash/jqplot/jquery.jqplot.js
 share/gnucash/jqplot/jquery.min.js
 share/gnucash/make-prefs-migration-script.xsl
 share/gnucash/migratable-prefs.xml
-share/gnucash/pixmaps/CMakeFiles/CMakeDirectoryInformation.cmake
-share/gnucash/pixmaps/CMakeFiles/progress.marks
-share/gnucash/pixmaps/CTestTestfile.cmake
 share/gnucash/pixmaps/Makefile
-share/gnucash/pixmaps/cmake_install.cmake
 share/gnucash/pixmaps/gnucash-icon-48x48.bmp
 share/gnucash/pixmaps/gnucash-icon.ico
 share/gnucash/pixmaps/gnucash_splash.png
-share/gnucash/scm/build-config.scm
 share/gnucash/scm/business-options.scm
 share/gnucash/scm/business-prefs.scm
 share/gnucash/scm/c-interface.scm
@@ -1052,9 +1037,8 @@ share/gnucash/scm/gnucash/gnc-modules/test/test-gnc-module-scm-multi.scm
 share/gnucash/scm/gnucash/gnc-modules/test/test-gnc-module-swigged-c.scm
 share/gnucash/scm/gnucash/gnome-utils.scm
 share/gnucash/scm/gnucash/import-export/qif-import.scm
-share/gnucash/scm/gnucash/main.scm
+share/gnucash/scm/gnucash/import-export/string.scm
 share/gnucash/scm/gnucash/price-quotes.scm
-share/gnucash/scm/gnucash/printf.scm
 share/gnucash/scm/gnucash/report/aging.scm
 share/gnucash/scm/gnucash/report/balsheet-eg.css
 share/gnucash/scm/gnucash/report/balsheet-eg.eguile.scm
@@ -1144,8 +1128,7 @@ share/gnucash/scm/gnucash/reports/test-load-report-gnome-module.scm
 share/gnucash/scm/gnucash/tax/de_DE.scm
 share/gnucash/scm/gnucash/tax/us.scm
 share/gnucash/scm/gnucash/unittest-support.scm
-share/gnucash/scm/gnumeric/gnumeric-utilities.scm
-share/gnucash/scm/gnumeric/table-utils.scm
+share/gnucash/scm/gnucash/utilities.scm
 share/gnucash/scm/hooks.scm
 share/gnucash/scm/html-acct-table.scm
 share/gnucash/scm/html-barchart.scm
@@ -1176,8 +1159,6 @@ share/gnucash/scm/qif-import/qif-utils.scm
 share/gnucash/scm/report-utilities.scm
 share/gnucash/scm/report.scm
 share/gnucash/scm/simple-obj.scm
-share/gnucash/scm/string.scm
-share/gnucash/scm/substring-search.scm
 share/gnucash/scm/test-account.scm
 share/gnucash/scm/test-c-interface.scm
 share/gnucash/scm/test-create-account.scm
@@ -1187,13 +1168,7 @@ share/gnucash/scm/txf-de_DE.scm
 share/gnucash/scm/txf-help-de_DE.scm
 share/gnucash/scm/txf-help.scm
 share/gnucash/scm/txf.scm
-share/gnucash/scm/xml-generator.scm
 share/gnucash/tip_of_the_day.list
-share/gnucash/ui/CMakeFiles/CMakeDirectoryInformation.cmake
-share/gnucash/ui/CMakeFiles/progress.marks
-share/gnucash/ui/CTestTestfile.cmake
-share/gnucash/ui/Makefile
-share/gnucash/ui/cmake_install.cmake
 share/gnucash/ui/gnc-main-window-ui.xml
 share/gnucash/ui/gnc-plugin-account-tree-ui.xml
 share/gnucash/ui/gnc-plugin-basic-commands-ui.xml
diff --git a/gnucash-devel/distinfo b/gnucash-devel/distinfo
index 3ec1edca2a..7d2e8dffa3 100644
--- a/gnucash-devel/distinfo
+++ b/gnucash-devel/distinfo
@@ -1,13 +1,11 @@
 $NetBSD: distinfo,v 1.82 2017/07/03 11:49:37 wiz Exp $
 
-SHA1 (gnucash-2.7.4.tar.bz2) = b9807d8fa222c6a3747575956a7d52ebfaeffb1c
-RMD160 (gnucash-2.7.4.tar.bz2) = fa25781fd701d64ec705fb8a1895e67e7756bb39
-SHA512 (gnucash-2.7.4.tar.bz2) = d096ec2a3907dcd09c936f0a49ef6fb5028a17d2e0ade9e68eae7303530480ce19e08c1864efd862d363fda9ef6343260396b794b3c4ac74544baa2628a310eb
-Size (gnucash-2.7.4.tar.bz2) = 13364512 bytes
+SHA1 (gnucash-2.7.5.tar.bz2) = df2c53c733b9e08904f5cbd508e20d5abeb40579
+RMD160 (gnucash-2.7.5.tar.bz2) = baf2c5cb39516d86d5109fe03e768662a68700bd
+SHA512 (gnucash-2.7.5.tar.bz2) = 68cd6e6f61a43b8837e9efe693d22f62ebe10a8bb7d593814fb6a12d035d74ec1e444f53010ad53c6b1adf28c75aa482403c06052314a91636c2a8baa30e09af
+Size (gnucash-2.7.5.tar.bz2) = 13330271 bytes
 SHA1 (googletest-1.8.0.tar.gz) = e7e646a6204638fe8e87e165292b8dd9cd4c36ed
 RMD160 (googletest-1.8.0.tar.gz) = b0a9e48874df3291a261ed85a0c0a4d677b01dc1
 SHA512 (googletest-1.8.0.tar.gz) = 1dbece324473e53a83a60601b02c92c089f5d314761351974e097b2cf4d24af4296f9eb8653b6b03b1e363d9c5f793897acae1f0c7ac40149216035c4d395d9d
 Size (googletest-1.8.0.tar.gz) = 1281617 bytes
-SHA1 (patch-gnucash_CMakeLists.txt) = e88a47ee90e9db8d91238a81a89b89d436fd6f5d
-SHA1 (patch-gnucash_gnucash-bin.c) = 065610e4bdf340913cb15e08e6382a7f92a0908f
-SHA1 (patch-gnucash_ugly-hack_CMakeLists.txt) = f5f163869ec55e3f895c30343412ffe793909517
+SHA1 (patch-gnucash_gnucash-bin.c) = 4178d8f06685b42bd4ac9c4290085257b78935c8
diff --git a/gnucash-devel/patches/patch-gnucash_CMakeLists.txt b/gnucash-devel/patches/patch-gnucash_CMakeLists.txt
deleted file mode 100644
index 0bd91740bd..0000000000
--- a/gnucash-devel/patches/patch-gnucash_CMakeLists.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD$
-
-From https://bugzilla.gnome.org/show_bug.cgi?id=792884
-
---- gnucash/CMakeLists.txt.orig	2018-02-03 15:01:36.000000000 +0000
-+++ gnucash/CMakeLists.txt
-@@ -27,6 +27,9 @@ ADD_SUBDIRECTORY (import-export)
- ADD_SUBDIRECTORY (python)
- ADD_SUBDIRECTORY (register)
- ADD_SUBDIRECTORY (report)
-+#This needs to go last so that glib-compile-schemas runs after all of
-+#the schema files are installed.
-+ADD_SUBDIRECTORY (ugly-hack)
- 
- ADD_DEFINITIONS (-DHAVE_CONFIG_H)
- 
-@@ -257,9 +260,6 @@ add_custom_command(
- 
- add_custom_target(compiled-schemas ALL DEPENDS ${SCHEMADIR_BUILD}/gschemas.compiled)
- 
--install(FILES ${SCHEMADIR_BUILD}/gschemas.compiled DESTINATION ${CMAKE_INSTALL_DATADIR}/glib-2.0/schemas)
--
--
- # The GResource Files are absolute paths but SET_LOCAL_DIST requires
- # relative paths.
- FOREACH(gres_file ${gresource_files})
diff --git a/gnucash-devel/patches/patch-gnucash_gnucash-bin.c b/gnucash-devel/patches/patch-gnucash_gnucash-bin.c
index 9e2456f7f4..28278c186f 100644
--- a/gnucash-devel/patches/patch-gnucash_gnucash-bin.c
+++ b/gnucash-devel/patches/patch-gnucash_gnucash-bin.c
@@ -4,7 +4,7 @@ Allow starting gnucash in the background.
 python's readline module causes a SIGTTOU to be sent and if this
 is not handled (even by ignoring it), it stops the process.
 
---- gnucash/gnucash-bin.c.orig	2017-10-28 21:23:58.000000000 +0000
+--- gnucash/gnucash-bin.c.orig	2018-02-24 22:14:19.000000000 +0000
 +++ gnucash/gnucash-bin.c
 @@ -22,6 +22,7 @@
   */
@@ -14,7 +14,7 @@ is not handled (even by ignoring it), it stops the process.
  #include <stdlib.h>
  #include <stdio.h>
  #include <string.h>
-@@ -608,6 +609,8 @@ inner_main (void *closure, int argc, cha
+@@ -602,6 +603,8 @@ inner_main (void *closure, int argc, cha
      SCM main_mod;
      char* fn;
  
@@ -22,4 +22,4 @@ is not handled (even by ignoring it), it stops the process.
 +
      scm_c_eval_string("(debug-set! stack 200000)");
  
-     main_mod = scm_c_resolve_module("gnucash main");
+     main_mod = scm_c_resolve_module("gnucash utilities");
diff --git a/gnucash-devel/patches/patch-gnucash_ugly-hack_CMakeLists.txt b/gnucash-devel/patches/patch-gnucash_ugly-hack_CMakeLists.txt
deleted file mode 100644
index 15ff388420..0000000000
--- a/gnucash-devel/patches/patch-gnucash_ugly-hack_CMakeLists.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-$NetBSD$
-
-From https://bugzilla.gnome.org/show_bug.cgi?id=792884
-
---- gnucash/ugly-hack/CMakeLists.txt.orig	2018-02-09 20:30:58.475024471 +0000
-+++ gnucash/ugly-hack/CMakeLists.txt
-@@ -0,0 +1 @@
-+install(CODE "execute_process(COMMAND ${GLIB_COMPILE_SCHEMAS} ${CMAKE_INSTALL_FULL_DATADIR}/glib-2.0/schemas)")


Home | Main Index | Thread Index | Old Index