Simon, Attached is a patch. It basically disables the "install" failing components with the Qt components are not being built. Let me know if that works and I can have these changes merged into the repository.
Utkarsh On Tue, Sep 30, 2014 at 5:24 PM, Su, Simon M CTR USARMY ARL (US) <[email protected]> wrote: > Classification: UNCLASSIFIED > Caveats: NONE > > Ben, > > Have we talked about how to make the changes? The network setting at ARL is > not letting me through the link... > > Thanks > -simon > > -----Original Message----- > From: Ben Boeckel [mailto:[email protected]] > Sent: Tuesday, September 30, 2014 5:16 PM > To: Su, Simon M CTR USARMY ARL (US) > Cc: [email protected] > Subject: Re: [Paraview] PV 4.2.0 make install error (UNCLASSIFIED) > > On Tue, Sep 30, 2014 at 19:36:13 +0000, Su, Simon M CTR USARMY ARL (US) wrote: >> can I safely ignore the error? Can we assume the binary installation >> is complete? or are there additional installation steps after appdata >> step that is needed for a proper ParaView binary installation? If so, >> how do I get around it? > > There are probably more files which need installed after the appdata, but > making the changes in the changeset should allow your "make install" > from the superbuild to complete fully. Once that happens, the install should > be fine. > > --Ben > > Classification: UNCLASSIFIED > Caveats: NONE > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the ParaView Wiki at: > http://paraview.org/Wiki/ParaView > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview >
From 6f1daf1bf4d5a966469ea9e7c8f6ca96dda5d44c Mon Sep 17 00:00:00 2001 From: Ben Boeckel <[email protected]> Date: Tue, 30 Sep 2014 11:39:45 -0400 Subject: [PATCH] paraview: fix appdata expectations ParaView only installs appdata if the GUI is built (which is controlled by Qt). Change-Id: I90c199fa5a43172ad683ba3bdbcbf81887f147ea --- Projects/unix/paraview.bundle.cmake | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Projects/unix/paraview.bundle.cmake b/Projects/unix/paraview.bundle.cmake index 07f4e0c..fc2f545 100644 --- a/Projects/unix/paraview.bundle.cmake +++ b/Projects/unix/paraview.bundle.cmake @@ -94,18 +94,20 @@ if (mpi_ENABLED AND NOT USE_SYSTEM_mpi) endforeach() endif() -install(DIRECTORY "${install_location}/share/appdata" - DESTINATION "share" - USE_SOURCE_PERMISSIONS - COMPONENT superbuild) -install(DIRECTORY "${install_location}/share/applications" - DESTINATION "share" - USE_SOURCE_PERMISSIONS - COMPONENT superbuild) -install(DIRECTORY "${install_location}/share/icons" - DESTINATION "share" - USE_SOURCE_PERMISSIONS - COMPONENT superbuild) +if (qt_ENABLED) + install(DIRECTORY "${install_location}/share/appdata" + DESTINATION "share" + USE_SOURCE_PERMISSIONS + COMPONENT superbuild) + install(DIRECTORY "${install_location}/share/applications" + DESTINATION "share" + USE_SOURCE_PERMISSIONS + COMPONENT superbuild) + install(DIRECTORY "${install_location}/share/icons" + DESTINATION "share" + USE_SOURCE_PERMISSIONS + COMPONENT superbuild) +endif () # Add ParaViewWeb www directory if available if(python_ENABLED) -- 1.9.1
_______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview
