From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9C7F7138335 for ; Sun, 13 Oct 2019 11:41:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFB21E085E; Sun, 13 Oct 2019 11:41:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A738AE085E for ; Sun, 13 Oct 2019 11:41:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4EF4634BCC6 for ; Sun, 13 Oct 2019 11:41:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 52B5889A for ; Sun, 13 Oct 2019 11:40:58 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1570966824.ff46a76b91b203f21ddc917a6486be6d2f73011d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/gnucash/, app-office/gnucash/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/gnucash/files/gnucash-3.7-include-checksymbolexists.patch app-office/gnucash/gnucash-3.7.ebuild X-VCS-Directories: app-office/gnucash/files/ app-office/gnucash/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ff46a76b91b203f21ddc917a6486be6d2f73011d X-VCS-Branch: master Date: Sun, 13 Oct 2019 11:40:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3bcd58cb-7767-43f9-9f36-facf5436d796 X-Archives-Hash: d016fcd55af7f74b2790feb89fe13a56 commit: ff46a76b91b203f21ddc917a6486be6d2f73011d Author: Peter Levine gmail com> AuthorDate: Sun Sep 15 19:58:05 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 13 11:40:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff46a76b app-office/gnucash: Fix check_symbol_exists error Adds "include(CheckSymbolExists)" to avoid the error "Unknown CMake command check_symbol_exists" Closes: https://bugs.gentoo.org/690270 Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Peter Levine gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> .../files/gnucash-3.7-include-checksymbolexists.patch | 12 ++++++++++++ app-office/gnucash/gnucash-3.7.ebuild | 5 ++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/app-office/gnucash/files/gnucash-3.7-include-checksymbolexists.patch b/app-office/gnucash/files/gnucash-3.7-include-checksymbolexists.patch new file mode 100644 index 00000000000..c0e1778164c --- /dev/null +++ b/app-office/gnucash/files/gnucash-3.7-include-checksymbolexists.patch @@ -0,0 +1,12 @@ +Bug: https://bugs.gentoo.org/690270 + +--- a/gnucash/register/register-gnome/CMakeLists.txt ++++ b/gnucash/register/register-gnome/CMakeLists.txt +@@ -1,5 +1,7 @@ + add_subdirectory(test) + ++include(CheckSymbolExists) ++ + #GTK before 3.14 didn't have GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK + check_symbol_exists(GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK gdk/gdktypes.h have_mod_mask) + if (NOT have_mod_mask) diff --git a/app-office/gnucash/gnucash-3.7.ebuild b/app-office/gnucash/gnucash-3.7.ebuild index ec42d91eaae..4b8e26a831c 100644 --- a/app-office/gnucash/gnucash-3.7.ebuild +++ b/app-office/gnucash/gnucash-3.7.ebuild @@ -80,7 +80,10 @@ PDEPEND="doc? ( gnome-extra/yelp )" -PATCHES=( "${FILESDIR}"/${PN}-3.2-no-gui.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-3.2-no-gui.patch + "${FILESDIR}"/${PN}-3.7-include-checksymbolexists.patch +) pkg_setup() { use python && python-single-r1_pkg_setup