From owner-svn-ports-all@freebsd.org Sun Jan 17 17:16:42 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1C47C4D06CE; Sun, 17 Jan 2021 17:16:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DJhRG0DHHz3jWV; Sun, 17 Jan 2021 17:16:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE73024FC9; Sun, 17 Jan 2021 17:16:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10HHGfgP078181; Sun, 17 Jan 2021 17:16:41 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10HHGfn7078180; Sun, 17 Jan 2021 17:16:41 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202101171716.10HHGfn7078180@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jan 2021 17:16:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561837 - head/graphics/mirtk X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/graphics/mirtk X-SVN-Commit-Revision: 561837 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jan 2021 17:16:42 -0000 Author: yuri Date: Sun Jan 17 17:16:41 2021 New Revision: 561837 URL: https://svnweb.freebsd.org/changeset/ports/561837 Log: graphics/mirtk: Change the default of the TBB option to OFF until the upstream makes iy oneTBB-compatible. PR: 252767 Reported by: martymac Modified: head/graphics/mirtk/Makefile Modified: head/graphics/mirtk/Makefile ============================================================================== --- head/graphics/mirtk/Makefile Sun Jan 17 17:11:20 2021 (r561836) +++ head/graphics/mirtk/Makefile Sun Jan 17 17:16:41 2021 (r561837) @@ -3,7 +3,7 @@ PORTNAME= mirtk DISTVERSIONPREFIX= v DISTVERSION= 2.0.0-122 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -g38210fa CATEGORIES= graphics @@ -23,11 +23,12 @@ GH_PROJECT= ${PORTNAME:tu} USE_LDCONFIG= yes OPTIONS_DEFINE= TBB VTK -OPTIONS_DEFAULT= TBB VTK +OPTIONS_DEFAULT= VTK # TBB is OFF by default until the project is oneTBB-compatible, see https://github.com/BioMedIA/MIRTK/issues/760 TBB_DESC= Build with TBB TBB_CMAKE_BOOL= WITH_TBB TBB_LIB_DEPENDS= libtbb.so:devel/tbb +TBB_BROKEN= Not oneTBB-compatible,see https://github.com/BioMedIA/MIRTK/issues/760 VTK_DESC= Build with the VTK toolkit VTK_CMAKE_BOOL= WITH_VTK