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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7279E1581FB for ; Sun, 24 Nov 2024 20:25:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5F47E0843; Sun, 24 Nov 2024 20:25:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFA7AE0843 for ; Sun, 24 Nov 2024 20:25:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E57F533C1EB for ; Sun, 24 Nov 2024 20:25:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07B011F41 for ; Sun, 24 Nov 2024 20:25:10 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732479863.e817ecb5a04970530a63ac31e9e43a562d939736.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/freecad/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/freecad/freecad-1.0.0-r1.ebuild X-VCS-Directories: media-gfx/freecad/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e817ecb5a04970530a63ac31e9e43a562d939736 X-VCS-Branch: master Date: Sun, 24 Nov 2024 20:25:10 +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: c066247b-a0bf-4135-99f1-d648b728ea6b X-Archives-Hash: cd5e2258f1a0433747a0b8e5d03bebeb commit: e817ecb5a04970530a63ac31e9e43a562d939736 Author: Chris Mayo gmail com> AuthorDate: Tue Oct 29 19:57:31 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 24 20:24:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e817ecb5 media-gfx/freecad: Review mycmakeargs Signed-off-by: Chris Mayo gmail.com> Signed-off-by: Sam James gentoo.org> media-gfx/freecad/freecad-1.0.0-r1.ebuild | 39 ++++++++++++++++--------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/media-gfx/freecad/freecad-1.0.0-r1.ebuild b/media-gfx/freecad/freecad-1.0.0-r1.ebuild index ee1a19f95dda..1fb2ff17498b 100644 --- a/media-gfx/freecad/freecad-1.0.0-r1.ebuild +++ b/media-gfx/freecad/freecad-1.0.0-r1.ebuild @@ -29,8 +29,8 @@ SLOT="0" IUSE="debug designer +gui qt5 spacenav test X" FREECAD_EXPERIMENTAL_MODULES="cloud netgen pcl" -FREECAD_STABLE_MODULES="addonmgr fem idf image inspection material - openscad part-design path points raytracing robot show smesh +FREECAD_STABLE_MODULES="addonmgr fem idf inspection material + openscad part-design points robot show smesh surface techdraw tux" for module in ${FREECAD_STABLE_MODULES}; do @@ -60,7 +60,6 @@ REQUIRED_USE=" fem? ( smesh ) inspection? ( points ) openscad? ( smesh ) - path? ( robot ) python_single_target_python3_12? ( gui? ( !qt5 ) ) " # There is no py3.12 support planned for pyside2 @@ -194,48 +193,50 @@ src_configure() { append-ldflags -Wl,--copy-dt-needed-entries local mycmakeargs=( + -DBUILD_DESIGNER_PLUGIN=$(usex designer) + -DBUILD_FORCE_DIRECTORY=ON # force building in a dedicated directory + -DBUILD_GUI=$(usex gui) + -DBUILD_SMESH=$(usex smesh) + -DBUILD_VR=OFF + -DBUILD_WITH_CONDA=OFF + + # Modules -DBUILD_ADDONMGR=$(usex addonmgr) - -DBUILD_ARCH=ON - -DBUILD_ASSEMBLY=OFF # Requires OndselSolver + -DBUILD_ASSEMBLY=OFF # Requires OndselSolver + -DBUILD_BIM=ON + -DBUILD_CAM=ON -DBUILD_CLOUD=$(usex cloud) - -DBUILD_COMPLETE=OFF # deprecated -DBUILD_DRAFT=ON - -DBUILD_DESIGNER_PLUGIN=$(usex designer) - -DBUILD_ENABLE_CXX_STD:STRING="C++17" # needed for current git master + # see below for DRAWING -DBUILD_FEM=$(usex fem) -DBUILD_FEM_NETGEN=$(usex netgen) - -DBUILD_FLAT_MESH=ON - -DBUILD_FORCE_DIRECTORY=ON # force building in a dedicated directory - -DBUILD_FREETYPE=ON # automagic dep - -DBUILD_GUI=$(usex gui) + -DBUILD_FLAT_MESH=ON # a submodule of MeshPart + -DBUILD_HELP=ON -DBUILD_IDF=$(usex idf) - -DBUILD_IMAGE=$(usex image) -DBUILD_IMPORT=ON # import module for various file formats -DBUILD_INSPECTION=$(usex inspection) - -DBUILD_JTREADER=OFF # code has been removed upstream, but option is still there + -DBUILD_JTREADER=OFF # uses an old proprietary library -DBUILD_MATERIAL=$(usex material) + -DBUILD_MEASURE=ON -DBUILD_MESH=ON -DBUILD_MESH_PART=ON -DBUILD_OPENSCAD=$(usex openscad) -DBUILD_PART=ON -DBUILD_PART_DESIGN=$(usex part-design) - -DBUILD_PATH=$(usex path) + -DBUILD_PLOT=ON -DBUILD_POINTS=$(usex points) - -DBUILD_RAYTRACING=$(usex raytracing) -DBUILD_REVERSEENGINEERING=OFF # currently only an empty sandbox -DBUILD_ROBOT=$(usex robot) + -DBUILD_SANDBOX=OFF -DBUILD_SHOW=$(usex show) -DBUILD_SKETCHER=ON # needed by draft workspace - -DBUILD_SMESH=$(usex smesh) -DBUILD_SPREADSHEET=ON -DBUILD_START=ON -DBUILD_SURFACE=$(usex surface) -DBUILD_TECHDRAW=$(usex techdraw) -DBUILD_TEST=ON # always build test workbench for run-time testing -DBUILD_TUX=$(usex tux) - -DBUILD_VR=OFF -DBUILD_WEB=ON # needed by start workspace - -DBUILD_WITH_CONDA=OFF -DCMAKE_INSTALL_DATADIR=/usr/share/${PN}/data -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}