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 09BF8138334 for ; Sun, 9 Sep 2018 01:26:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDF0EE08AC; Sun, 9 Sep 2018 01:26:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 92A17E08AC for ; Sun, 9 Sep 2018 01:26:45 +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 0A3F2340AC7 for ; Sun, 9 Sep 2018 01:26:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 554173C0 for ; Sun, 9 Sep 2018 01:26:42 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1536456358.1490b92a58144421914e945f326e400074bf2cf2.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/kicad/kicad-5.0.0.ebuild X-VCS-Directories: sci-electronics/kicad/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 1490b92a58144421914e945f326e400074bf2cf2 X-VCS-Branch: master Date: Sun, 9 Sep 2018 01:26:42 +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-Archives-Salt: 4efb226d-ef41-437e-8f73-eb10e5c5c7bc X-Archives-Hash: a52a7f06bdeccc062a3f45ee684ed3c3 commit: 1490b92a58144421914e945f326e400074bf2cf2 Author: Virgil Dupras gentoo org> AuthorDate: Sun Sep 9 01:25:58 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Sun Sep 9 01:25:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1490b92a sci-electronics/kicad: fix oce USE flag OCE build flag, being ON by default, was not disabled on "-oce". Also, it was behind an irrelevant "amd64" condition. Bug: https://bugs.gentoo.org/665500 Package-Manager: Portage-2.3.49, Repoman-2.3.10 sci-electronics/kicad/kicad-5.0.0.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sci-electronics/kicad/kicad-5.0.0.ebuild b/sci-electronics/kicad/kicad-5.0.0.ebuild index d1a689a120a..db6476d4b96 100644 --- a/sci-electronics/kicad/kicad-5.0.0.ebuild +++ b/sci-electronics/kicad/kicad-5.0.0.ebuild @@ -69,6 +69,7 @@ src_configure() { -DKICAD_SCRIPTING_WXPYTHON="$(usex python)" -DKICAD_SPICE="$(usex ngspice)" -DKICAD_USE_OCC=OFF + -DKICAD_USE_OCE="$(usex oce)" -DKICAD_INSTALL_DEMOS="$(usex examples)" ) use python && mycmakeargs+=( @@ -77,9 +78,6 @@ src_configure() { -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" -DPYTHON_LIBRARY="$(python_get_library_path)" ) - use amd64 && use oce && mycmakeargs+=( - -DKICAD_USE_OCE=ON - ) cmake-utils_src_configure }