Permalink
Browse files
H3D-Components: Update to release H3D2.4
For all h3d ports: * Bumped up version numbers and checksums * Updated to cmake 1.1 portgroup * Removed all previous patches * Added size parameter For h3dapi: * Added patch to properly locate audiofile include dir * Added build args to prevent h3dload/h3dviewer from being built
- Loading branch information
Showing
with
79 additions
and 377 deletions.
- +27 −17 graphics/h3dapi/Portfile
- +0 −26 graphics/h3dapi/files/patch-CMakeLists.txt.diff
- +0 −70 graphics/h3dapi/files/patch-CMakeListsPython.diff
- +22 −0 graphics/h3dapi/files/patch-FindAudiofile-PreventFramework.diff
- +0 −29 graphics/h3dapi/files/patch-glutwindow.diff
- +0 −10 graphics/h3dapi/files/patch-h3dapicmake.diff
- +0 −11 graphics/h3dapi/files/patch-include-H3D-X3DParticleEmitterNode.h.diff
- +0 −15 graphics/h3dapi/files/patch-pythonmethods.diff
- +0 −11 graphics/h3dapi/files/patch-pythonscript.diff
- +0 −11 graphics/h3dapi/files/patch-pythontypes.diff
- +0 −11 graphics/h3dapi/files/patch-pythontypesheader.diff
- +0 −11 graphics/h3dapi/files/patch-pytypewrapper.diff
- +7 −8 graphics/h3dmedx3d/Portfile
- +0 −13 graphics/h3dmedx3d/files/patch-build-CMakeLists.txt.diff
- +6 −11 graphics/h3dphysics/Portfile
- +0 −13 graphics/h3dphysics/files/patch-build-CMakeLists.txt.diff
- +0 −13 graphics/h3dphysics/files/patch-bulletcallbacks.diff
- +0 −24 graphics/h3dphysics/files/patch-bulletjoints.diff
- +0 −11 graphics/h3dphysics/files/patch-odecallbacks.diff
- +6 −8 graphics/h3dui/Portfile
- +0 −13 graphics/h3dui/files/patch-build-CMakeLists.txt.diff
- +5 −7 graphics/h3dutil/Portfile
- +0 −13 graphics/h3dutil/files/patch-CMakeLists.txt.diff
- +6 −8 graphics/hapi/Portfile
- +0 −13 graphics/hapi/files/patch-build-CMakeLists.txt.diff
| @@ -0,0 +1,22 @@ | ||
| --- build/modules/FindAudiofile.org.cmake 2019-01-30 08:16:11.000000000 +0100 | ||
| +++ build/modules/FindAudiofile.cmake 2019-04-12 10:03:52.000000000 +0200 | ||
| @@ -13,6 +13,9 @@ | ||
| include( H3DCommonFindModuleFunctions ) | ||
| get_filename_component( module_file_path ${CMAKE_CURRENT_LIST_FILE} PATH ) | ||
| getExternalSearchPathsH3D( module_include_search_paths module_lib_search_paths ${module_file_path} "libaudiofile" ) | ||
| + | ||
| +set( old_CMAKE_FIND_FRAMEWORK ${CMAKE_FIND_FRAMEWORK} ) | ||
| +set( CMAKE_FIND_FRAMEWORK NEVER ) | ||
|
|
||
| # Look for the header file. | ||
| find_path( Audiofile_INCLUDE_DIR NAMES audiofile.h | ||
| @@ -40,4 +43,6 @@ | ||
| # Backwards compatibility values set here. | ||
| set( AUDIOFILE_INCLUDE_DIR ${Audiofile_INCLUDE_DIRS} ) | ||
| set( AUDIOFILE_LIBRARIES ${Audiofile_LIBRARIES} ) | ||
| -set( Audiofile_FOUND ${AUDIOFILE_FOUND} ) # find_package_handle_standard_args for CMake 2.8 only define the upper case variant. | ||
| \ No newline at end of file | ||
| +set( Audiofile_FOUND ${AUDIOFILE_FOUND} ) # find_package_handle_standard_args for CMake 2.8 only define the upper case variant. | ||
| + | ||
| +set( CMAKE_FIND_FRAMEWORK ${old_CMAKE_FIND_FRAMEWORK} ) | ||
| \ No newline at end of file |
Oops, something went wrong.