From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carlo Zancanaro Subject: bug#36977: Add OpenSubdiv library, and add as Blender dependency Date: Mon, 12 Aug 2019 20:21:44 +1000 Message-ID: <87pnlar8ef.fsf@zancanaro.id.au> References: <87mugj1xt6.fsf@dustycloud.org> <87o90wkkea.fsf@zancanaro.id.au> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:52199) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hx7Sl-0004LV-BJ for bug-guix@gnu.org; Mon, 12 Aug 2019 06:22:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hx7Sk-0006oT-7Z for bug-guix@gnu.org; Mon, 12 Aug 2019 06:22:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37283) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hx7Sk-0006oN-4N for bug-guix@gnu.org; Mon, 12 Aug 2019 06:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hx7Sj-0001Ay-SO for bug-guix@gnu.org; Mon, 12 Aug 2019 06:22:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:52162) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hx7Sb-0004LE-Cw for bug-guix@gnu.org; Mon, 12 Aug 2019 06:21:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hx7Sa-0006k2-F7 for bug-guix@gnu.org; Mon, 12 Aug 2019 06:21:53 -0400 Received: from zancanaro.com.au ([45.76.117.151]:46284) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hx7Sa-0006ii-2v for bug-guix@gnu.org; Mon, 12 Aug 2019 06:21:52 -0400 In-reply-to: <87o90wkkea.fsf@zancanaro.id.au> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 36977@debbugs.gnu.org --=-=-= Content-Type: text/plain; format=flowed On Sun, Aug 11 2019, Carlo Zancanaro wrote: > ... adding it to the Blender inputs didn't cause the subdivision > modifier to work. ... Well, it turns out I just had to add the -DWITH_OPENSUBDIV=ON configure flag. Here's a new patch to do that! --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-blender-Add-opensubdiv-as-an-input.patch >From 231763df5b336118dae973da9dbde362dd1c1465 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Mon, 12 Aug 2019 20:15:11 +1000 Subject: [PATCH] gnu: blender: Add opensubdiv as an input * gnu/packages/graphics.scm (blender)[inputs]: Add opensubdiv. [arguments]: Add "-DWITH_OPENSUBDIV=ON" to #:configure-flags. --- gnu/packages/graphics.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 11ea550039..b9207f284d 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -147,6 +147,7 @@ architectures.") "-DWITH_INSTALL_PORTABLE=OFF" "-DWITH_JACK=ON" "-DWITH_MOD_OCEANSIM=ON" + "-DWITH_OPENSUBDIV=ON" "-DWITH_PYTHON_INSTALL=OFF" (string-append "-DPYTHON_LIBRARY=python" ,python-version "m") (string-append "-DPYTHON_LIBPATH=" (assoc-ref %build-inputs "python") @@ -182,6 +183,7 @@ architectures.") ("libx11" ,libx11) ("openimageio" ,openimageio) ("openexr" ,openexr) + ("opensubdiv" ,opensubdiv) ("ilmbase" ,ilmbase) ("openjpeg" ,openjpeg) ("libjpeg" ,libjpeg) -- 2.22.0 --=-=-=--