From owner-freebsd-ports@freebsd.org Sun Jul 23 19:57:32 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1623DABE23 for ; Sun, 23 Jul 2017 19:57:32 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from mx1.mailbox.org (mx1.mailbox.org [80.241.60.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.mailbox.org", Issuer "SwissSign Server Silver CA 2014 - G22" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 923846D076; Sun, 23 Jul 2017 19:57:32 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id F2C9046D87; Sun, 23 Jul 2017 21:57:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mailbox.org; h= content-type:content-type:mime-version:references:in-reply-to :subject:subject:from:from:message-id:date:date:received; s= mail20150812; t=1500839848; bh=w7XWX5H+4pOfUFuo0C2zTwTwQIjJttUkq wX2C+f8afs=; b=r7e+t0csRdSC0lndf+Tea5ZgHDxD55m28/PSOzb+MU8K7g7Hk TkIck1LYdy+41Rd8rl0JvAfAx7fAJaF1ZZdYyDhxAVDWfDd25PvLfF9IGydnD+wn 0Hqn9U2Q7JVAJY0k60dMcAnPOab0YaQ8jnC/ZTvmBBdCkZ8cYIJWgKTT9ZMUOVWd PWyJ7D25MNn4cUSOJSVrTlCYzaZdVBFC9zjrJWVbgIUCcNnLQR4C79pW++siCa/W IRAh87Q6nou3cLs0Vx8TyvcZl51b34LZX5j+28z1YdTTMVPIH9inEexpADV8LQ6t +H8ki/RkCTOLUEGxAAXlx52VExuVLFnk+TPCw== X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by spamfilter02.heinlein-hosting.de (spamfilter02.heinlein-hosting.de [80.241.56.116]) (amavisd-new, port 10030) with ESMTP id WtUxXYSWOxTG; Sun, 23 Jul 2017 21:57:28 +0200 (CEST) Date: Sun, 23 Jul 2017 21:57:25 +0200 Message-ID: <87bmobncyi.wl-herbert@mailbox.org> From: "Herbert J. Skuhra" To: freebsd-ports@freebsd.org Cc: swills@FreeBSD.org Subject: Re: Blender and opencv2-core In-Reply-To: <7339a34b-1e81-618d-0f01-e3d2eef9e9cb@gjunka.com> References: <00bf95d8-94ce-9eb6-8f8e-fc4494e4b4e7@gjunka.com> <7339a34b-1e81-618d-0f01-e3d2eef9e9cb@gjunka.com> MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jul 2017 19:57:32 -0000 Grzegorz Junka skrev: > > On 23/07/2017 12:42, Grzegorz Junka wrote: >> I am getting the following error when setting up blender >> dependencies in poudriere: >> >> ===> Setting user-specified options for blender-2.78c_3 and dependencies >> blender-2.78c_3: >> "/usr/local/poudriere/ports/local/graphics/opencv2-core" >> non-existent -- dependency list incomplete >> >> Has this been removed but not updated in one of dependent ports? >> >> Grzegorz J >> > > Sent too early, this is the actual error when trying to compile: > > [00:00:17] ====>> Error: graphics/openimageio depends on nonexistent > origin 'graphics/opencv2-core'; Please contact maintainer of the port > to fix this. > [00:00:33] ====>> Error: Fatal errors encountered calculating dependencies > > This is of course when OpenImageIO setting is enabled in blender. Have you tried to modify Makefile? Index: graphics/openimageio/Makefile =================================================================== --- graphics/openimageio/Makefile (revision 446433) +++ graphics/openimageio/Makefile (working copy) @@ -69,7 +69,7 @@ OPENCV_CMAKE_ON= -DUSE_OPENCV:BOOL=ON OPENCV_CMAKE_OFF= -DUSE_OPENCV:BOOL=OFF OPENCV_LIB_DEPENDS= libopencv_highgui.so:graphics/opencv \ - libopencv_core.so:graphics/opencv2-core \ + libopencv_core.so:graphics/opencv-core \ libopenjpeg.so:graphics/openjpeg15 OPENJPEG_CMAKE_ON= -DUSE_OPENJPEG:BOOL=ON -- Herbert