diff options
Diffstat (limited to 'graphics')
43 files changed, 0 insertions, 2571 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index 66335dc654b3..1b9d9a963fbc 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -52,8 +52,6 @@ SUBDIR += aoi SUBDIR += apngasm SUBDIR += apngdis - SUBDIR += appleseed - SUBDIR += apvlv SUBDIR += argyllcms SUBDIR += asciio SUBDIR += aseprite @@ -887,7 +885,6 @@ SUBDIR += qgis SUBDIR += qgis-ltr SUBDIR += qiv - SUBDIR += qslim SUBDIR += qt5-3d SUBDIR += qt5-graphicaleffects SUBDIR += qt5-imageformats @@ -904,7 +901,6 @@ SUBDIR += radiance SUBDIR += radius-engine SUBDIR += raster3d - SUBDIR += rawstudio SUBDIR += rawtherapee SUBDIR += rayshade SUBDIR += reactphysics3d @@ -1016,7 +1012,6 @@ SUBDIR += tkpng SUBDIR += togl SUBDIR += ttygif - SUBDIR += tulip SUBDIR += tumble SUBDIR += ufraw SUBDIR += uniconvertor diff --git a/graphics/appleseed/Makefile b/graphics/appleseed/Makefile deleted file mode 100644 index 1b562b87eaad..000000000000 --- a/graphics/appleseed/Makefile +++ /dev/null @@ -1,71 +0,0 @@ -# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= appleseed -DISTVERSION= 1.7.1-beta -PORTREVISION= 8 -CATEGORIES= graphics - -MAINTAINER= danfe@FreeBSD.org -COMMENT= Modern, physically-based production renderer - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE.txt - -BROKEN= fails to build -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2019-05-08 - -LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ - libpng.so:graphics/png \ - libIlmImf.so:graphics/openexr \ - libxerces-c.so:textproc/xerces-c3 \ - liboslexec.so:graphics/openshadinglanguage - -USE_GITHUB= yes -GH_ACCOUNT= ${PORTNAME}hq - -ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= not ported to it yet - -USES= cmake compiler:env - -LDFLAGS+= -lboost_atomic -CMAKE_ARGS= -DUSE_STATIC_BOOST:BOOL=OFF -DUSE_STATIC_OIIO:BOOL=OFF \ - -DUSE_STATIC_OSL:BOOL=OFF -DWITH_DOXYGEN:BOOL=OFF \ - -DWITH_HEADERS:BOOL=OFF -DWITH_PYTHON:BOOL=OFF \ - -DWITH_TESTS:BOOL=OFF -DWARNINGS_AS_ERRORS:BOOL=OFF - -.for lib in EXR OIIO OSL PNG SEEXPR XERCES ZLIB -CMAKE_ARGS+= -DUSE_EXTERNAL_${lib}:BOOL=ON -.endfor - -# Not ready for hier(7)-conforming installation yet -CMAKE_INSTALL_PREFIX= ${PREFIX}/${PKGBASE} -PLIST_SUB= APPHOME=${CMAKE_INSTALL_PREFIX} - -SUB_FILES= pkg-message -SUB_LIST:= ${PLIST_SUB} - -OPTIONS_DEFINE= CPP11 EXAMPLES -OPTIONS_SUB= yes - -CPP11_DESC= Build in C++11 mode - -CPP11_CMAKE_ON= -DUSE_CPP11:BOOL=ON - -EXAMPLES_CMAKE_OFF= -DWITH_SAMPLES:BOOL=OFF - -.include <bsd.port.pre.mk> - -post-patch: - @${RMDIR} ${WRKSRC}/sandbox/docs/api -.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 39 - @${ECHO_MSG} "===> Patching for Core Working Group (CWG) Defect 253 (see r455830)" - @${REINPLACE_CMD} -E 's,const (.*MDF ),\1,' \ - ${WRKSRC}/src/appleseed/renderer/modeling/bsdf/disneybrdf.cpp \ - ${WRKSRC}/src/appleseed/renderer/modeling/bsdf/microfacetbrdf.cpp \ - ${WRKSRC}/src/appleseed/foundation/meta/tests/test_microfacet.cpp -.endif - -.include <bsd.port.post.mk> diff --git a/graphics/appleseed/distinfo b/graphics/appleseed/distinfo deleted file mode 100644 index affaf1feb36f..000000000000 --- a/graphics/appleseed/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1501170801 -SHA256 (appleseedhq-appleseed-1.7.1-beta_GH0.tar.gz) = 9cb6d21ca84a62f6e077038c53a5e91c4aba78aa0bf01ccb7d9792d3cc839fb1 -SIZE (appleseedhq-appleseed-1.7.1-beta_GH0.tar.gz) = 152061805 diff --git a/graphics/appleseed/files/patch-CMakeLists.txt b/graphics/appleseed/files/patch-CMakeLists.txt deleted file mode 100644 index ffe0b0c5e425..000000000000 --- a/graphics/appleseed/files/patch-CMakeLists.txt +++ /dev/null @@ -1,85 +0,0 @@ ---- CMakeLists.txt.orig 2017-07-27 15:53:21 UTC -+++ CMakeLists.txt -@@ -106,6 +106,10 @@ option (USE_EXTERNAL_ZLIB "Use exter - option (WITH_CLI "Build appleseed.cli" ON) - option (WITH_STUDIO "Build appleseed.studio" ON) - option (WITH_TOOLS "Build appleseed tools" ON) -+option (WITH_DOXYGEN "Generate API Reference with Doxygen" ON) -+option (WITH_SAMPLES "Intall sample files (require headers)" ON) -+option (WITH_HEADERS "Intall header files (to build samples)" ON) -+option (WITH_TESTS "Install unit tests and benchmarks" ON) - option (WITH_PYTHON "Build Python bindings" ON) - option (WITH_DISNEY_MATERIAL "Build Disney material" OFF) - -@@ -168,6 +172,9 @@ else () - "Edit ${CMAKE_CURRENT_LIST_FILE} to add support for it.") - endif () - -+# XXX: avoid picking up lz4 headers from /usr/local/include == ${Boost_INCLUDE_DIRS} -+# if `archivers/liblz4' port is installed. -+include_directories (src/lz4) - - #-------------------------------------------------------------------------------------------------- - # Auto-generate version headers. -@@ -262,7 +269,6 @@ endif () - # Common include paths. - include_directories ( - src/appleseed -- src/lz4 - ${PYTHON_INCLUDE_DIRS} - ) - -@@ -579,7 +585,7 @@ endif () - - find_package (Doxygen) - --if (DOXYGEN_FOUND) -+if (DOXYGEN_FOUND AND WITH_DOXYGEN) - configure_file (${PROJECT_SOURCE_DIR}/scripts/appleseed.doxyfile.in ${PROJECT_BINARY_DIR}/appleseed.doxyfile @ONLY) - add_custom_target ( - doc ${DOXYGEN_EXECUTABLE} ${PROJECT_BINARY_DIR}/appleseed.doxyfile -@@ -627,25 +633,35 @@ install ( - DIRECTORY - sandbox/docs - sandbox/icons -- sandbox/samples - sandbox/settings -- sandbox/share - sandbox/stylesheets - DESTINATION . - ) - -+if (WITH_SAMPLES) - install ( -- CODE "FILE (MAKE_DIRECTORY ${CMAKE_INSTALL_PREFIX}/images)" -- CODE "FILE (MAKE_DIRECTORY ${CMAKE_INSTALL_PREFIX}/images/autosave)" -+ DIRECTORY -+ sandbox/samples -+ DESTINATION . - ) -+endif () - - install ( - DIRECTORY -+ sandbox/share -+ DESTINATION .. -+) -+ -+if (WITH_TESTS) -+install ( -+ DIRECTORY - "sandbox/tests/unit benchmarks" - "sandbox/tests/unit tests" - DESTINATION tests - ) -+endif () - -+if (WITH_HEADERS) - install ( - DIRECTORY src/appleseed/foundation - DESTINATION include -@@ -663,3 +679,4 @@ install ( - DESTINATION include - FILES_MATCHING PATTERN "*.h" - ) -+endif () diff --git a/graphics/appleseed/files/patch-src_appleseed.studio_mainwindow_project_texturecollectionitem.cpp b/graphics/appleseed/files/patch-src_appleseed.studio_mainwindow_project_texturecollectionitem.cpp deleted file mode 100644 index b2ff1793384c..000000000000 --- a/graphics/appleseed/files/patch-src_appleseed.studio_mainwindow_project_texturecollectionitem.cpp +++ /dev/null @@ -1,19 +0,0 @@ ---- src/appleseed.studio/mainwindow/project/texturecollectionitem.cpp.orig 2015-06-13 09:38:53 UTC -+++ src/appleseed.studio/mainwindow/project/texturecollectionitem.cpp -@@ -108,11 +108,15 @@ namespace - texture_params.insert("filename", path); - texture_params.insert("color_space", "srgb"); - -+ // Workaround for GCC 4.2.1: we cannot construct object in .create() below -+ // because GCC will attempt to invoke copy ctor which is private of course. -+ SearchPaths paths; -+ - return - DiskTexture2dFactory().create( - texture_name.c_str(), - texture_params, -- SearchPaths()); -+ paths); - } - - auto_release_ptr<TextureInstance> create_texture_instance(const string& texture_name) diff --git a/graphics/appleseed/files/patch-src_appleseed_foundation_platform_thread.h b/graphics/appleseed/files/patch-src_appleseed_foundation_platform_thread.h deleted file mode 100644 index 614d410590a6..000000000000 --- a/graphics/appleseed/files/patch-src_appleseed_foundation_platform_thread.h +++ /dev/null @@ -1,13 +0,0 @@ ---- src/appleseed/foundation/platform/thread.h.orig 2016-12-15 14:57:39 UTC -+++ src/appleseed/foundation/platform/thread.h -@@ -296,9 +296,8 @@ class APPLESEED_DLLSYMBOL ThreadFlag - - inline Spinlock::Spinlock() - { -- // todo: is there a simpler way to initialize m_sp in a platform-independent manner? - boost::detail::spinlock initialized_sp = BOOST_DETAIL_SPINLOCK_INIT; -- m_sp = initialized_sp; -+ std::memcpy(&m_sp, &initialized_sp, sizeof(initialized_sp)); - } - - inline bool Spinlock::try_lock() diff --git a/graphics/appleseed/files/patch-src_cmake_config_linux-gcc.txt b/graphics/appleseed/files/patch-src_cmake_config_linux-gcc.txt deleted file mode 100644 index aa089d4fa22d..000000000000 --- a/graphics/appleseed/files/patch-src_cmake_config_linux-gcc.txt +++ /dev/null @@ -1,15 +0,0 @@ ---- src/cmake/config/linux-gcc.txt.orig 2016-03-29 16:02:26 UTC -+++ src/cmake/config/linux-gcc.txt -@@ -119,12 +119,6 @@ if (HIDE_SYMBOLS) - ) - endif () - --# Release configuration. --set (c_compiler_flags_release -- -O3 # optimization level --) -- -- - #-------------------------------------------------------------------------------------------------- - # Libraries. - #-------------------------------------------------------------------------------------------------- diff --git a/graphics/appleseed/files/pkg-message.in b/graphics/appleseed/files/pkg-message.in deleted file mode 100644 index 2cfd586ec48d..000000000000 --- a/graphics/appleseed/files/pkg-message.in +++ /dev/null @@ -1,6 +0,0 @@ -appleseed currently requires itself to be installed under common prefix: -%%APPHOME%%. To run CLI or GUI version, execute the following -commands, respectively: - - %%APPHOME%%/bin/appleseed.cli - %%APPHOME%%/bin/appleseed.studio diff --git a/graphics/appleseed/pkg-descr b/graphics/appleseed/pkg-descr deleted file mode 100644 index e26303322fb4..000000000000 --- a/graphics/appleseed/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -appleseed is modern, open source, physically-based rendering engine designed -to produce photorealistic images, animations, and visual effects. - -It provides individuals and small studios with an efficient, reliable suite -of tools built on robust foundations and open technologies. - -Started in 2009, it has grown into a robust production rendering toolset and -has been battle-tested on several projects such as TV documentaries, ads, -promotional videos, and animation shorts. - -WWW: https://appleseedhq.net/ diff --git a/graphics/appleseed/pkg-plist b/graphics/appleseed/pkg-plist deleted file mode 100644 index 86bdd87ee334..000000000000 --- a/graphics/appleseed/pkg-plist +++ /dev/null @@ -1,257 +0,0 @@ -share/cmake/Modules/FindAppleseed.cmake -share/cmake/Modules/FindImath.cmake -share/cmake/Modules/FindOSL.cmake -share/cmake/Modules/FindOpenEXR.cmake -share/cmake/Modules/FindOpenImageIO.cmake -share/cmake/Modules/FindPartio.cmake -share/cmake/Modules/FindSeExpr.cmake -share/cmake/Modules/FindSeExprEditor.cmake -share/cmake/Modules/FindXerces.cmake -@cwd %%APPHOME%% -bin/animatecamera -bin/appleseed.cli -bin/convertmany.py -bin/convertmeshfile -bin/dumpmetadata -bin/makefluffy -bin/maketx -bin/oslc -bin/oslinfo -bin/projecttool -bin/rendermanager.py -bin/rendermany.py -bin/rendernode.py -bin/updatemany.py -docs/osl/osl-languagespec.pdf -docs/seexpr/Se_voronoi_1.png -docs/seexpr/Se_voronoi_2.png -docs/seexpr/Se_voronoi_3.png -docs/seexpr/Se_voronoi_4.png -docs/seexpr/Se_voronoi_5.png -docs/seexpr/userdoc.html -icons/appleseed.png -icons/disney_expression.png -icons/disney_expression_hover.png -icons/disney_texture.png -icons/disney_texture_hover.png -icons/project_monitor.png -icons/project_monitor_disabled.png -icons/project_monitor_hover.png -icons/project_new.png -icons/project_new_disabled.png -icons/project_new_hover.png -icons/project_open.png -icons/project_open_disabled.png -icons/project_open_hover.png -icons/project_reload.png -icons/project_reload_disabled.png -icons/project_reload_hover.png -icons/project_save.png -icons/project_save_disabled.png -icons/project_save_hover.png -icons/rendering_settings.png -icons/rendering_settings_disabled.png -icons/rendering_settings_hover.png -icons/rendering_start_final.png -icons/rendering_start_final_disabled.png -icons/rendering_start_final_hover.png -icons/rendering_start_interactive.png -icons/rendering_start_interactive_disabled.png -icons/rendering_start_interactive_hover.png -icons/rendering_stop.png -icons/rendering_stop_disabled.png -icons/rendering_stop_hover.png -icons/renderwidget_clear_frame.png -icons/renderwidget_clear_frame_disabled.png -icons/renderwidget_clear_frame_hover.png -icons/renderwidget_clear_render_region.png -icons/renderwidget_clear_render_region_disabled.png -icons/renderwidget_clear_render_region_hover.png -icons/renderwidget_quicksave_all_aovs.png -icons/renderwidget_quicksave_all_aovs_hover.png -icons/renderwidget_reset_zoom.png -icons/renderwidget_reset_zoom_hover.png -icons/renderwidget_save_all_aovs.png -icons/renderwidget_save_all_aovs_hover.png -icons/renderwidget_set_render_region.png -icons/renderwidget_set_render_region_disabled.png -icons/renderwidget_set_render_region_hover.png -icons/renderwidget_toggle_pixel_inspector.png -icons/renderwidget_toggle_pixel_inspector_hover.png -lib/libappleseed.shared.so -lib/libappleseed.so -%%PORTEXAMPLES%%samples/cpp/basic/CMakeLists.txt -%%PORTEXAMPLES%%samples/cpp/basic/basic.cpp -%%PORTEXAMPLES%%samples/cpp/basic/data/scene.obj -%%PORTEXAMPLES%%samples/cpp/basic/output/preserve.txt -%%PORTEXAMPLES%%samples/cpp/basic/reference output/scene.obj -%%PORTEXAMPLES%%samples/cpp/basic/reference output/test.appleseed -%%PORTEXAMPLES%%samples/cpp/basic/reference output/test.png -%%PORTEXAMPLES%%samples/cpp/heightfield/CMakeLists.txt -%%PORTEXAMPLES%%samples/cpp/heightfield/data/cube.obj -%%PORTEXAMPLES%%samples/cpp/heightfield/data/heightfield.png -%%PORTEXAMPLES%%samples/cpp/heightfield/data/smoothcube.obj -%%PORTEXAMPLES%%samples/cpp/heightfield/heightfield.cpp -%%PORTEXAMPLES%%samples/cpp/heightfield/output/preserve.txt -%%PORTEXAMPLES%%samples/python/basic/README.md -%%PORTEXAMPLES%%samples/python/basic/basic.py -%%PORTEXAMPLES%%samples/python/basic/data/scene.obj -%%PORTEXAMPLES%%samples/python/basic/output/preserve.txt -schemas/project.xsd -schemas/settings.xsd -settings/appleseed.cli.xml -settings/appleseed.studio.xml -settings/appleseed.tools.xml -shaders/appleseed/asDisneyMaterial.oso -shaders/appleseed/asGlass.oso -shaders/appleseed/asVoronoi2D.oso -shaders/appleseed/asVoronoi3D.oso -shaders/as_osl_extensions.h -shaders/gaffer/color/as_blackbody.oso -shaders/gaffer/color/as_color_add.oso -shaders/gaffer/color/as_color_build.oso -shaders/gaffer/color/as_color_mix.oso -shaders/gaffer/color/as_color_multiply.oso -shaders/gaffer/color/as_color_saturation.oso -shaders/gaffer/color/as_color_split.oso -shaders/gaffer/color/as_luminance.oso -shaders/gaffer/color/as_wavelength.oso -shaders/gaffer/float/as_float_add.oso -shaders/gaffer/float/as_float_cast.oso -shaders/gaffer/float/as_float_mix.oso -shaders/gaffer/float/as_float_multiply.oso -shaders/gaffer/float/as_float_pow.oso -shaders/gaffer/float/as_float_remap.oso -shaders/gaffer/input/as_globals.oso -shaders/gaffer/input/as_input.oso -shaders/gaffer/input/as_object_input.oso -shaders/gaffer/input/as_ray_info.oso -shaders/gaffer/material/as_disney_material.oso -shaders/gaffer/material/as_material_builder.oso -shaders/gaffer/normal/as_bump_map.oso -shaders/gaffer/normal/as_normal_map.oso -shaders/gaffer/surface/as_diffuse_surface.oso -shaders/gaffer/surface/as_emission_surface.oso -shaders/gaffer/surface/as_glass_surface.oso -shaders/gaffer/surface/as_glossy_surface.oso -shaders/gaffer/surface/as_metal_surface.oso -shaders/gaffer/surface/as_sheen_surface.oso -shaders/gaffer/surface/as_subsurface_surface.oso -shaders/gaffer/surface/as_surface_add.oso -shaders/gaffer/surface/as_surface_mix.oso -shaders/gaffer/surface/as_surface_multiply.oso -shaders/gaffer/surface/as_surface_switch.oso -shaders/gaffer/surface/as_translucent_surface.oso -shaders/gaffer/surface/as_transparency_surface.oso -shaders/gaffer/texture2d/as_color_texture.oso -shaders/gaffer/texture2d/as_noise2d.oso -shaders/gaffer/texture2d/as_scalar_texture.oso -shaders/gaffer/texture3d/as_noise3d.oso -shaders/gaffer/texture3d/as_noise4d.oso -shaders/gaffer/transform/as_map2d.oso -shaders/gaffer/transform/as_map3d.oso -shaders/gaffer/transform/as_transform.oso -shaders/gaffer/utility/as_condition.oso -shaders/gaffer/utility/as_float2_build.oso -shaders/gaffer/utility/as_float2_split.oso -shaders/gaffer/utility/as_switch.oso -shaders/gaffer/vector/as_anisotropy_dir.oso -shaders/gaffer/vector/as_vector_add.oso -shaders/gaffer/vector/as_vector_build.oso -shaders/gaffer/vector/as_vector_cross.oso -shaders/gaffer/vector/as_vector_dot.oso -shaders/gaffer/vector/as_vector_mix.oso -shaders/gaffer/vector/as_vector_multiply.oso -shaders/gaffer/vector/as_vector_normalize.oso -shaders/gaffer/vector/as_vector_split.oso -shaders/include/appleseed/color/as_chromatic_adaptation.h -shaders/include/appleseed/color/as_color_helpers.h -shaders/include/appleseed/color/as_color_transforms.h -shaders/include/appleseed/color/as_colorimetry.h -shaders/include/appleseed/color/as_transfer_functions.h -shaders/include/appleseed/fractal/as_fractal_helpers.h -shaders/include/appleseed/fractal/as_noise_helpers.h -shaders/include/appleseed/fractal/as_noise_tables.h -shaders/include/appleseed/gaffer/color.h -shaders/include/appleseed/gaffer/transform.h -shaders/include/appleseed/gaffer/udim.h -shaders/include/appleseed/material/as_material_helpers.h -shaders/include/appleseed/math/as_math_complex.h -shaders/include/appleseed/math/as_math_helpers.h -shaders/include/appleseed/maya/as_maya_cms_syncolor_idt.h -shaders/include/appleseed/maya/as_maya_fractal_helpers.h -shaders/include/appleseed/maya/as_maya_helpers.h -shaders/include/appleseed/maya/as_maya_layer_helpers.h -shaders/include/appleseed/maya/as_maya_pattern_helpers.h -shaders/include/appleseed/maya/as_maya_ramp_helpers.h -shaders/include/appleseed/maya/as_maya_transform_helpers.h -shaders/include/appleseed/pattern/as_pattern_helpers.h -shaders/maya/as_maya_addDoubleLinear.oso -shaders/maya/as_maya_addMatrix.oso -shaders/maya/as_maya_anisotropic.oso -shaders/maya/as_maya_areaLight.oso -shaders/maya/as_maya_blendColors.oso -shaders/maya/as_maya_blinn.oso -shaders/maya/as_maya_bulge.oso -shaders/maya/as_maya_bump2d.oso -shaders/maya/as_maya_bump3d.oso -shaders/maya/as_maya_checker.oso -shaders/maya/as_maya_clamp.oso -shaders/maya/as_maya_clearCoat.oso -shaders/maya/as_maya_closure2Surface.oso -shaders/maya/as_maya_cloth.oso -shaders/maya/as_maya_cloud.oso -shaders/maya/as_maya_color2Components.oso -shaders/maya/as_maya_components2Color.oso -shaders/maya/as_maya_components2UV.oso -shaders/maya/as_maya_components2Vector.oso -shaders/maya/as_maya_condition.oso -shaders/maya/as_maya_contrast.oso -shaders/maya/as_maya_distanceBetween.oso -shaders/maya/as_maya_doubleShadingSwitch.oso -shaders/maya/as_maya_envChrome.oso -shaders/maya/as_maya_file.oso -shaders/maya/as_maya_fourByFourMatrix.oso -shaders/maya/as_maya_fractal.oso -shaders/maya/as_maya_gammaCorrect.oso -shaders/maya/as_maya_grid.oso -shaders/maya/as_maya_hsvToRgb.oso -shaders/maya/as_maya_lambert.oso -shaders/maya/as_maya_layeredTexture.oso -shaders/maya/as_maya_luminance.oso -shaders/maya/as_maya_mandelbrot.oso -shaders/maya/as_maya_matrixInverse.oso -shaders/maya/as_maya_mountain.oso -shaders/maya/as_maya_movie.oso -shaders/maya/as_maya_multDoubleLinear.oso -shaders/maya/as_maya_multMatrix.oso -shaders/maya/as_maya_multiplyDivide.oso -shaders/maya/as_maya_noise.oso -shaders/maya/as_maya_phong.oso -shaders/maya/as_maya_phongE.oso -shaders/maya/as_maya_place2dTexture.oso -shaders/maya/as_maya_place3dTexture.oso -shaders/maya/as_maya_plusMinusAverage.oso -shaders/maya/as_maya_psdFileTex.oso -shaders/maya/as_maya_quadShadingSwitch.oso -shaders/maya/as_maya_ramp.oso -shaders/maya/as_maya_remapColor.oso -shaders/maya/as_maya_remapHsv.oso -shaders/maya/as_maya_remapValue.oso -shaders/maya/as_maya_reverse.oso -shaders/maya/as_maya_rgbToHsv.oso -shaders/maya/as_maya_samplerInfo.oso -shaders/maya/as_maya_setRange.oso -shaders/maya/as_maya_singleShadingSwitch.oso -shaders/maya/as_maya_stencil.oso -shaders/maya/as_maya_texture2Surface.oso -shaders/maya/as_maya_transposeMatrix.oso -shaders/maya/as_maya_tripleShadingSwitch.oso -shaders/maya/as_maya_uv2Components.oso -shaders/maya/as_maya_vector2Components.oso -shaders/maya/as_maya_vectorProduct.oso -shaders/maya/as_maya_water.oso -shaders/maya/as_maya_wtAddMatrix.oso -shaders/oslutil.h -shaders/stdosl.h -stylesheets/default.qss diff --git a/graphics/apvlv/Makefile b/graphics/apvlv/Makefile deleted file mode 100644 index 6abff0748bbf..000000000000 --- a/graphics/apvlv/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# Created by: Ju Pengfei <jupengfei@gmail.com> -# $FreeBSD$ - -PORTNAME= apvlv -PORTVERSION= 0.1.4 -PORTREVISION= 10 -CATEGORIES= graphics -MASTER_SITES= GHC -DISTNAME= ${PORTNAME}-${PORTVERSION}-Source - -MAINTAINER= xors@mailup.net -COMMENT= PDF/DJVU Viewer that behaves like Vim - -LICENSE= GPLv2 - -BROKEN= fails to build -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2019-05-08 - -LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib - -USE_GNOME= gtk20 -USES= cmake:insource pkgconfig -USE_GITHUB= yes -GH_ACCOUNT= naihe2010 -CMAKE_ARGS+= -DSYSCONFDIR=${PREFIX}/etc \ - -DMANDIR=${MANPREFIX}/man \ - -DDOCDIR=${DOCSDIR} \ - -DAPVLV_WITH_UMD=OFF \ - -DAPVLV_WITH_HTML=OFF \ - -DAPVLV_WITH_TXT=ON -CFLAGS+= -pthread -LDFLAGS+= -pthread -WRKSRC= ${WRKDIR}/${DISTNAME} - -OPTIONS_DEFINE= DJVU - -DJVU_DESC= DjVu document support - -DJVU_CMAKE_ON= -DAPVLV_WITH_DJVU=ON -DJVU_CMAKE_OFF= -DAPVLV_WITH_DJVU=OFF -DJVU_LIB_DEPENDS= libdjvulibre.so:graphics/djvulibre - -.include <bsd.port.mk> diff --git a/graphics/apvlv/distinfo b/graphics/apvlv/distinfo deleted file mode 100644 index 98cba6ee1c6f..000000000000 --- a/graphics/apvlv/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (apvlv-0.1.4-Source.tar.gz) = f803de89aed82fea08f9386a6d6ddec999d0c96bb68c85e4cd527803838d17cd -SIZE (apvlv-0.1.4-Source.tar.gz) = 337182 diff --git a/graphics/apvlv/files/patch-src_CMakeLists.txt b/graphics/apvlv/files/patch-src_CMakeLists.txt deleted file mode 100644 index 078d338883ba..000000000000 --- a/graphics/apvlv/files/patch-src_CMakeLists.txt +++ /dev/null @@ -1,43 +0,0 @@ ---- src/CMakeLists.txt.orig 2012-06-13 07:44:28.000000000 +0400 -+++ src/CMakeLists.txt 2012-10-05 01:07:49.000000000 +0400 -@@ -17,17 +17,14 @@ - PKG_CHECK_MODULES (GTK2 gtk+-2.0 REQUIRED) - PKG_CHECK_MODULES (GLIB2 glib-2.0 REQUIRED) - PKG_CHECK_MODULES (GTHREAD2 gthread-2.0 REQUIRED) --PKG_CHECK_MODULES (WEBKIT1 webkit-1.0 QUIET) - INCLUDE_DIRECTORIES (${FREETYPE2_INCLUDE_DIRS} - ${GTK2_INCLUDE_DIRS} - ${GLIB2_INCLUDE_DIRS} -- ${GTHREAD2_INCLUDE_DIRS} -- ${WEBKIT1_INCLUDE_DIRS}) -+ ${GTHREAD2_INCLUDE_DIRS}) - LINK_DIRECTORIES (${FREETYPE2_LIBRARY_DIRS} - ${GTK2_LIBRARY_DIRS} - ${GLIB2_LIBRARY_DIRS} -- ${GTHREAD2_LIBRARY_DIRS} -- ${WEBKIT1_LIBRARY_DIRS}) -+ ${GTHREAD2_LIBRARY_DIRS}) - - IF (WIN32) - SET (POPPLER_DIR ${CMAKE_HOME_DIRECTORY}/win32/poppler-src) -@@ -128,6 +125,12 @@ - IF (APVLV_WITH_HTML) - ADD_DEFINITIONS (-DAPVLV_WITH_HTML) - -+ PKG_CHECK_MODULES (WEBKIT1 webkit-1.0 REQUIRED) -+ INCLUDE_DIRECTORIES (${WEBKIT1_INCLUDE_DIRS}) -+ LINK_DIRECTORIES (${WEBKIT1_LIBRARY_DIRS}) -+ SET (APVLV_REQ_LIBRARIES ${WEBKIT1_LIBRARIES} -+ ${APVLV_REQ_LIBRARIES}) -+ - SET (HEADERS ${HEADERS} ApvlvHtm.h) - SET (SOURCES ${SOURCES} ApvlvHtm.cc) - ENDIF (APVLV_WITH_HTML) -@@ -138,7 +141,6 @@ - ${GTK2_LIBRARIES} - ${GLIB2_LIBRARIES} - ${GTHREAD2_LIBRARIES} -- ${WEBKIT1_LIBRARIES} - ${APVLV_REQ_LIBRARIES}) - - IF (WIN32) diff --git a/graphics/apvlv/pkg-descr b/graphics/apvlv/pkg-descr deleted file mode 100644 index 46c147b12482..000000000000 --- a/graphics/apvlv/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Apvlv is a PDF/DJVU Viewer and its behaviour is like Vim's. - -WWW: http://naihe2010.github.com/apvlv/ diff --git a/graphics/apvlv/pkg-plist b/graphics/apvlv/pkg-plist deleted file mode 100644 index ef10adba0f21..000000000000 --- a/graphics/apvlv/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/apvlv -etc/apvlvrc -man/man1/apvlv.1.gz -%%DOCSDIR%%/Startup.pdf -%%DOCSDIR%%/Startup.tex -%%DOCSDIR%%/apvlvrc.example -%%DOCSDIR%%/icons/dir.png -%%DOCSDIR%%/icons/pdf.png -%%DOCSDIR%%/icons/reg.png diff --git a/graphics/qslim/Makefile b/graphics/qslim/Makefile deleted file mode 100644 index a20e5c941873..000000000000 --- a/graphics/qslim/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# Created by: ijliao -# $FreeBSD$ - -PORTNAME= qslim -PORTVERSION= 2.1 -PORTREVISION= 11 -CATEGORIES= graphics -MASTER_SITES= http://mgarland.org/files/dist/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= SlimKit surface modeling tools - -LICENSE= GPLv2 - -BROKEN= fails to link -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2019-05-08 - -LIB_DEPENDS= libpng.so:graphics/png \ - libtiff.so:graphics/tiff \ - libgfx.so:graphics/libgfx - -CONFIGURE_WRKSRC= ${WRKSRC}/mixkit -BUILD_WRKSRC= ${WRKSRC}/mixkit/src - -USES= gmake -USE_GL= glu -GNU_CONFIGURE= yes -MAKE_ENV= FLTKCONFIG="${FLTK_CONFIG}" GUI_LIBS="${GUI_LIBS}" -MAKE_ARGS= CC="${CC}" CXX="${CXX}" -ALL_TARGET= # none -USE_LDCONFIG= yes - -CFLAGS+= -DMIX_ANSI_IOSTREAMS -DHAVE_BOOL -fPIC -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -pthread - -FLTK_CONFIG= ${LOCALBASE}/bin/fltk-config -GUI_LIBS= $$(${FLTK_CONFIG} --use-gl --ldflags) - -post-extract: - @${RM} -r ${WRKSRC}/libgfx/ - -post-patch: - @${REINPLACE_CMD} -e '/gfx-config/d' ${CONFIGURE_WRKSRC}/mix-config.in - @${REINPLACE_CMD} -e 's/\.\..*mix\.a//' ${WRKSRC}/tools/qslim/Makefile - @${REINPLACE_CMD} -e '/gfx-config/d;s/\.a/.so/g;s/[(]AR[)] cru/(CXX) \ - $$(CXXFLAGS) -shared -o/;/RANLIB/d' ${BUILD_WRKSRC}/${MAKEFILE} -.for i in mixkit/src/Makefile tools/qslim/Makefile - @${ECHO_CMD} '.SUFFIXES: .fl .c .cc .cxx .o' >> ${WRKSRC}/${i} - @${ECHO_CMD} '.cxx.o:' >> ${WRKSRC}/${i} - @${ECHO_CMD} ' $$(CXX) -c $$(CXXFLAGS) $$<' >> ${WRKSRC}/${i} -.endfor - -post-build: - @(cd ${BUILD_WRKSRC}/../../tools/qslim && ${SETENV} ${MAKE_ENV} \ - ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET}) - -do-install: -.for i in qslim qvis - (cd ${WRKSRC}/tools/qslim && ${INSTALL_PROGRAM} ${i} \ - ${STAGEDIR}${PREFIX}/bin) -.endfor - @${MKDIR} ${STAGEDIR}${PREFIX}/include/mixkit - (cd ${WRKSRC}/mixkit/src && ${INSTALL_DATA} *.h \ - ${STAGEDIR}${PREFIX}/include/mixkit) - (cd ${WRKSRC}/mixkit/src && ${INSTALL_PROGRAM} libmix.so \ - ${STAGEDIR}${PREFIX}/lib) - @${LN} -sf libmix.so ${STAGEDIR}${PREFIX}/lib/libmix.so.0 - -.include <bsd.port.mk> diff --git a/graphics/qslim/distinfo b/graphics/qslim/distinfo deleted file mode 100644 index 7aa112297489..000000000000 --- a/graphics/qslim/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (qslim-2.1.tar.gz) = af47fb69f7d1a5a0464b90436c9f7051a78a0fce44591096c3f9838d8f970a2a -SIZE (qslim-2.1.tar.gz) = 287513 diff --git a/graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx b/graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx deleted file mode 100644 index a8bb5449016b..000000000000 --- a/graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx +++ /dev/null @@ -1,11 +0,0 @@ ---- mixkit/src/MxStdGUI.cxx.orig 2011-09-06 14:12:15.000000000 +0200 -+++ mixkit/src/MxStdGUI.cxx 2011-09-06 14:12:47.000000000 +0200 -@@ -15,7 +15,7 @@ - #include "MxGLUtils.h" - #include "MxSMF.h" - #include <FL/Fl_Color_Chooser.H> --#include <FL/fl_file_chooser.H> -+#include <FL/Fl_File_Chooser.H> - #include <FL/filename.H> - - diff --git a/graphics/qslim/files/patch-mixkit__src__MxDynBlock.h b/graphics/qslim/files/patch-mixkit__src__MxDynBlock.h deleted file mode 100644 index 605e88e2befd..000000000000 --- a/graphics/qslim/files/patch-mixkit__src__MxDynBlock.h +++ /dev/null @@ -1,29 +0,0 @@ ---- mixkit/src/MxDynBlock.h.orig -+++ mixkit/src/MxDynBlock.h -@@ -35,13 +35,13 @@ - - void room_for(int len) - { -- if( length()<len ) resize(len); -+ if( length()<len ) this->resize(len); - fill = len; - } - - T& add() - { -- if( length()==total_space() ) resize(total_space() * 2); -+ if( length()==total_space() ) this->resize(total_space() * 2); - fill++; - return last(); - } -@@ -62,8 +62,8 @@ - // - int size() const { return length(); } - -- typename MxBlock<T>::iterator end() { return begin()+size(); } -- typename MxBlock<T>::const_iterator end() const { return begin()+size(); } -+ typename MxBlock<T>::iterator end() { return this->begin()+size(); } -+ typename MxBlock<T>::const_iterator end() const { return this->begin()+size(); } - - void push_back(const T& t) { add(t); } - }; diff --git a/graphics/qslim/files/patch-mixkit__src__MxStack.h b/graphics/qslim/files/patch-mixkit__src__MxStack.h deleted file mode 100644 index 3368a868c4a4..000000000000 --- a/graphics/qslim/files/patch-mixkit__src__MxStack.h +++ /dev/null @@ -1,31 +0,0 @@ ---- mixkit/src/MxStack.h.orig -+++ mixkit/src/MxStack.h -@@ -26,14 +26,14 @@ - MxStack(const T& val, unsigned int n) : MxDynBlock<T>(n) - { push(val); } - -- T& top() { return last(); } -- const T& top() const { return last(); } -+ T& top() { return this->last(); } -+ const T& top() const { return this->last(); } - -- bool is_empty() { return length()==0; } -+ bool is_empty() { return this->length()==0; } - -- T& pop() { return drop(); } -+ T& pop() { return this->drop(); } - -- void push(const T& val) { add(val); } -+ void push(const T& val) { this->add(val); } - // - // NOTE: In this code, it is *crucial* that we do the add() and - // assignment in separate steps. The obvious alternative -@@ -41,7 +41,7 @@ - // broken! The top() will grab a pointer into the block, - // but the add() may reallocate the block before doing the - // assignment. Thus, the pointer will become invalid. -- void push() { add(); top() = (*this)[length()-2]; } -+ void push() { this->add(); top() = (*this)[this->length()-2]; } - }; - - // MXSTACK_INCLUDED diff --git a/graphics/qslim/files/patch-tools-qslim_qvis.cxx b/graphics/qslim/files/patch-tools-qslim_qvis.cxx deleted file mode 100644 index 7c1b7390dc5b..000000000000 --- a/graphics/qslim/files/patch-tools-qslim_qvis.cxx +++ /dev/null @@ -1,20 +0,0 @@ ---- tools/qslim/qvis.cxx.orig 2011-09-06 14:13:35.000000000 +0200 -+++ tools/qslim/qvis.cxx 2011-09-06 14:14:02.000000000 +0200 -@@ -14,7 +14,7 @@ - #include <MxStdGUI.h> - #include <stdio.h> - --#include <FL/fl_file_chooser.H> -+#include <FL/Fl_File_Chooser.H> - #include <FL/filename.H> - #include <FL/filename.H> - #include <FL/Fl_Slider.H> -@@ -228,7 +228,7 @@ - // Main application routine - // - --main(int argc, char **argv) -+int main(int argc, char **argv) - { - // Change default values for application variables in GUI version - will_record_history = true; diff --git a/graphics/qslim/files/patch-tools__qslim__qslim.cxx b/graphics/qslim/files/patch-tools__qslim__qslim.cxx deleted file mode 100644 index 040e35c6fc30..000000000000 --- a/graphics/qslim/files/patch-tools__qslim__qslim.cxx +++ /dev/null @@ -1,11 +0,0 @@ ---- tools/qslim/qslim.cxx.orig -+++ tools/qslim/qslim.cxx -@@ -32,7 +32,7 @@ - output_preamble(); - } - --main(int argc, char **argv) -+int main(int argc, char **argv) - { - double input_time, init_time, slim_time, output_time; - diff --git a/graphics/qslim/pkg-descr b/graphics/qslim/pkg-descr deleted file mode 100644 index 36046c4da33d..000000000000 --- a/graphics/qslim/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -This is the SlimKit collection of surface modeling tools. Most of the -programs in this collection simply provide an interface to the -underlying functionality of the MixKit library. - -The primary component of this package is the QSlim 2.0 surface -simplification tool. - -WWW: http://mgarland.org/software/qslim.html diff --git a/graphics/qslim/pkg-plist b/graphics/qslim/pkg-plist deleted file mode 100644 index 8896fc5d1028..000000000000 --- a/graphics/qslim/pkg-plist +++ /dev/null @@ -1,53 +0,0 @@ -bin/qslim -bin/qvis -include/mixkit/MxAsp.h -include/mixkit/MxBlock.h -include/mixkit/MxBlock2.h -include/mixkit/MxBlock3.h -include/mixkit/MxBlockModel.h -include/mixkit/MxCamera.h -include/mixkit/MxCmdParser.h -include/mixkit/MxDualModel.h -include/mixkit/MxDualSlim.h -include/mixkit/MxDynBlock.h -include/mixkit/MxEdgeFilter.h -include/mixkit/MxFaceTree.h -include/mixkit/MxFeatureFilter.h -include/mixkit/MxFitFrame.h -include/mixkit/MxFrame.h -include/mixkit/MxGL.h -include/mixkit/MxGLUtils.h -include/mixkit/MxGUI.h -include/mixkit/MxGeoPrims.h -include/mixkit/MxGeom2D.h -include/mixkit/MxGeom3D.h -include/mixkit/MxHeap.h -include/mixkit/MxManipulator.h -include/mixkit/MxMat2.h -include/mixkit/MxMat3.h -include/mixkit/MxMat4.h -include/mixkit/MxMath.h -include/mixkit/MxMatrix.h -include/mixkit/MxPropSlim.h -include/mixkit/MxQMetric.h -include/mixkit/MxQMetric3.h -include/mixkit/MxQSlim.h -include/mixkit/MxRaster.h -include/mixkit/MxSMF.h -include/mixkit/MxStack.h -include/mixkit/MxStdGUI.h -include/mixkit/MxStdModel.h -include/mixkit/MxStdSlim.h -include/mixkit/MxString.h -include/mixkit/MxTimer.h -include/mixkit/MxVec2.h -include/mixkit/MxVec3.h -include/mixkit/MxVec4.h -include/mixkit/MxVector.h -include/mixkit/mixio.h -include/mixkit/mixmops.h -include/mixkit/mixmsg.h -include/mixkit/mixvops.h -include/mixkit/stdmix.h -lib/libmix.so -lib/libmix.so.0 diff --git a/graphics/rawstudio/Makefile b/graphics/rawstudio/Makefile deleted file mode 100644 index 76f845de5e89..000000000000 --- a/graphics/rawstudio/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# Created by: Alex Samorukov <samm@os2.kiev.ua> -# $FreeBSD$ - -PORTNAME= rawstudio -PORTVERSION= 2.0 -PORTREVISION= 19 -CATEGORIES= graphics -MASTER_SITES= http://rawstudio.org/files/release/ - -MAINTAINER= samm@os2.kiev.ua -COMMENT= Open-source program to read and manipulate RAW photo images - -LICENSE= GPLv2 - -BROKEN= fails to build -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2019-05-08 - -LIB_DEPENDS= libpng.so:graphics/png \ - liblcms.so:graphics/lcms \ - libexiv2.so:graphics/exiv2 \ - libdbus-1.so:devel/dbus \ - libfftw3f.so:math/fftw3-float \ - liblensfun.so:graphics/lensfun \ - libflickcurl.so:www/flickcurl \ - libgphoto2.so:graphics/libgphoto2 -BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3 - -BROKEN_powerpc64= fails to link: libicuuc.so. undefined reference to __cxa_throw_bad_array_new_length - -USES= desktop-file-utils gettext gmake jpeg libtool pathfix pkgconfig \ - sqlite -GNU_CONFIGURE= yes -USE_GNOME= gtk20 libxml2 gconf2 -USE_LDCONFIG= yes -INSTALL_TARGET= install-strip - -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -LIBS+= `pkg-config --libs gthread-2.0` - -post-patch: - @${REINPLACE_CMD} -e 's, libssl,,' ${WRKSRC}/configure -# lensfun 0.3.0 had removed support for LF_MODIFY_CCI - @${REINPLACE_CMD} -e 's, | LF_MODIFY_CCI,,' \ - ${WRKSRC}/plugins/lensfun/lensfun.c - -.include <bsd.port.mk> diff --git a/graphics/rawstudio/distinfo b/graphics/rawstudio/distinfo deleted file mode 100644 index f6cd368b22ae..000000000000 --- a/graphics/rawstudio/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (rawstudio-2.0.tar.gz) = 14cd5aff315ca9a28ec359ed2da0d993f0022b548a1751f208463ea823b2a7fc -SIZE (rawstudio-2.0.tar.gz) = 1537703 diff --git a/graphics/rawstudio/files/patch-libpng15 b/graphics/rawstudio/files/patch-libpng15 deleted file mode 100644 index c23a24f64034..000000000000 --- a/graphics/rawstudio/files/patch-libpng15 +++ /dev/null @@ -1,35 +0,0 @@ ---- plugins/output-pngfile/output-pngfile.c -+++ plugins/output-pngfile/output-pngfile.c -@@ -23,6 +23,7 @@ - #include <gettext.h> - #include "config.h" - #include <png.h> -+#include <zlib.h> - - #define RS_TYPE_PNGFILE (rs_pngfile_type) - #define RS_PNGFILE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), RS_TYPE_PNGFILE, RSPngfile)) -@@ -198,7 +199,7 @@ - rs_icc_profile_get_data(profile, &data, &data_length); - - // FIXME: Insert correct profile name -- png_set_iCCP(png_ptr, info_ptr, "Profile name", PNG_COMPRESSION_TYPE_BASE, data, data_length); -+ png_set_iCCP(png_ptr, info_ptr, "Profile name", PNG_COMPRESSION_TYPE_BASE, (png_const_bytep)data, data_length); - if (pngfile->save16bit) - png_set_gAMA(png_ptr, info_ptr, 1.0); - } ---- plugins/load-gdk/exiv2-colorspace.cpp -+++ plugins/load-gdk/exiv2-colorspace.cpp -@@ -125,11 +125,11 @@ - - int compression_type; - /* Extract embedded ICC profile */ -- if (info_ptr->valid & PNG_INFO_iCCP) -+ if (png_get_valid(png_ptr, info_ptr, TRUE) & PNG_INFO_iCCP) - { - png_uint_32 retval = png_get_iCCP (png_ptr, info_ptr, - (png_charpp) &icc_profile_title, &compression_type, -- (png_charpp) &icc_profile, (png_uint_32*) &icc_profile_size); -+ (png_byte**) &icc_profile, (png_uint_32*) &icc_profile_size); - if (retval != 0) - { - RSIccProfile *icc = rs_icc_profile_new_from_memory((gchar*)icc_profile, icc_profile_size, TRUE); diff --git a/graphics/rawstudio/files/patch-plugins_denoise_fftwindow.cpp b/graphics/rawstudio/files/patch-plugins_denoise_fftwindow.cpp deleted file mode 100644 index 84290eb44403..000000000000 --- a/graphics/rawstudio/files/patch-plugins_denoise_fftwindow.cpp +++ /dev/null @@ -1,38 +0,0 @@ ---- plugins/denoise/fftwindow.cpp.orig 2011-02-15 17:28:03 UTC -+++ plugins/denoise/fftwindow.cpp -@@ -174,7 +174,7 @@ void FFTWindow::applyAnalysisWindowSSE( - if ((uintptr_t)src1 & 15) { - asm volatile - ( -- "loop_analysis_sse_ua:\n" -+ "1:\n" - "prefetchnta (%4)\n" // Prefetch next line (Used once only, so don't pollute cache) - "movups (%1), %%xmm0\n" // src1 pt1 - "movups 16(%1), %%xmm1\n" // src1 pt2 -@@ -193,7 +193,7 @@ void FFTWindow::applyAnalysisWindowSSE( - "add $64, %2\n" - "add $64, %4\n" - "dec %3\n" -- "jnz loop_analysis_sse_ua\n" -+ "jnz 1b\n" - - : /* no output registers */ - : "r" (analysis.getLine(y)), "r" (src1), "r" (dst->getLine(y)), "r" (sizew), "r" (&src1[image->pitch]) -@@ -202,7 +202,7 @@ void FFTWindow::applyAnalysisWindowSSE( - } else { - asm volatile - ( -- "loop_analysis_sse_a:\n" -+ "1:\n" - "prefetchnta (%4)\n" // Prefetch next line (Used once only, so don't pollute cache) - "movaps (%1), %%xmm0\n" // src1 pt1 - "movaps 16(%1), %%xmm1\n" // src1 pt2 -@@ -221,7 +221,7 @@ void FFTWindow::applyAnalysisWindowSSE( - "add $64, %2\n" - "add $64, %4\n" - "dec %3\n" -- "jnz loop_analysis_sse_a\n" -+ "jnz 1b\n" - - : /* no output registers */ - : "r" (analysis.getLine(y)), "r" (src1), "r" (dst->getLine(y)), "r" (sizew), "r" (&src1[image->pitch]) diff --git a/graphics/rawstudio/files/patch-plugins_load-dcraw_dcraw.cc b/graphics/rawstudio/files/patch-plugins_load-dcraw_dcraw.cc deleted file mode 100644 index 3a9cb9944315..000000000000 --- a/graphics/rawstudio/files/patch-plugins_load-dcraw_dcraw.cc +++ /dev/null @@ -1,12 +0,0 @@ ---- plugins/load-dcraw/dcraw.cc.orig 2015-05-29 01:03:46 UTC -+++ plugins/load-dcraw/dcraw.cc -@@ -869,7 +869,8 @@ struct jhead { - - int CLASS ljpeg_start (struct jhead *jh, int info_only) - { -- int c, tag, len; -+ int c, tag; -+ ushort len; - uchar data[0x10000]; - const uchar *dp; - diff --git a/graphics/rawstudio/files/patch-rs-macros.h b/graphics/rawstudio/files/patch-rs-macros.h deleted file mode 100644 index fdc456950c0c..000000000000 --- a/graphics/rawstudio/files/patch-rs-macros.h +++ /dev/null @@ -1,16 +0,0 @@ ---- librawstudio/rs-macros.h 2014-02-19 06:34:15.000000000 +0100 -+++ librawstudio/rs-macros.h 2014-02-19 06:34:21.000000000 +0100 -@@ -51,12 +51,12 @@ - #if __GNUC__ >= 3 - #define likely(x) __builtin_expect (!!(x), 1) - #define unlikely(x) __builtin_expect (!!(x), 0) --#define align(x) __attribute__ ((aligned (x))) -+// #define align(x) __attribute__ ((aligned (x))) - #define __deprecated __attribute__ ((deprecated)) - #else - #define likely(x) (x) - #define unlikely(x) (x) --#define align(x) -+// #define align(x) - #define __deprecated - #endif diff --git a/graphics/rawstudio/files/patch-rs-tag-gui.c b/graphics/rawstudio/files/patch-rs-tag-gui.c deleted file mode 100644 index 3bd36dee10d4..000000000000 --- a/graphics/rawstudio/files/patch-rs-tag-gui.c +++ /dev/null @@ -1,28 +0,0 @@ ---- src/rs-tag-gui.c.orig 2011-02-15 18:28:05.000000000 +0100 -+++ src/rs-tag-gui.c 2014-02-14 18:36:48.000000000 +0100 -@@ -93,11 +93,6 @@ - return box; - } - --GtkWidget * --rs_library_tag_entry_new(RSLibrary *library) --{ -- g_assert(RS_IS_LIBRARY(library)); -- - gboolean - selected(GtkEntryCompletion *completion, GtkTreeModel *model, GtkTreeIter *iter, gpointer user_data) - { -@@ -179,6 +174,13 @@ - return found; - } - -+ -+GtkWidget * -+rs_library_tag_entry_new(RSLibrary *library) -+{ -+ g_assert(RS_IS_LIBRARY(library)); -+ -+ - GtkWidget *entry = gtk_entry_new(); - GtkEntryCompletion *completion = gtk_entry_completion_new(); - GtkListStore *store = gtk_list_store_new(1, G_TYPE_STRING); diff --git a/graphics/rawstudio/files/patch-src_rs-batch.c b/graphics/rawstudio/files/patch-src_rs-batch.c deleted file mode 100644 index 5350facf8b74..000000000000 --- a/graphics/rawstudio/files/patch-src_rs-batch.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/rs-batch.c.orig 2011-04-07 18:05:03 UTC -+++ src/rs-batch.c -@@ -830,7 +830,7 @@ static void - filetype_changed(gpointer active, gpointer user_data) - { - RS_QUEUE *queue = (RS_QUEUE *) user_data; -- GType filetype = GPOINTER_TO_INT(active); -+ GType filetype = (GType)active; - - if (!filetype) - return; diff --git a/graphics/rawstudio/pkg-descr b/graphics/rawstudio/pkg-descr deleted file mode 100644 index df12a8975d98..000000000000 --- a/graphics/rawstudio/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Rawstudio is an open-source program to read and manipulate RAW images from -digital cameras. It will convert your RAW files into JPEG, PNG, or TIFF -images which you can then print or send to friends and clients. You can -also upload photos directly to Picasa, Flickr, and Facebook galleries. - -Rawstudio is intended to be the first tool in your image processing chain. -After you have made your overall image adjustments to your image, you can -use an image editing application to further work on your images. Rawstudio -itself is a highly specialized application for reviewing and processing RAW -images, not a fully featured image editing application. - -WWW: http://rawstudio.org/ diff --git a/graphics/rawstudio/pkg-plist b/graphics/rawstudio/pkg-plist deleted file mode 100644 index 0f4fd1bc26c6..000000000000 --- a/graphics/rawstudio/pkg-plist +++ /dev/null @@ -1,473 +0,0 @@ -bin/rawstudio -include/rawstudio-2.0/rawstudio.h -include/rawstudio-2.0/rs-1d-function.h -include/rawstudio-2.0/rs-color-space-icc.h -include/rawstudio-2.0/rs-color-space-selector.h -include/rawstudio-2.0/rs-color-space.h -include/rawstudio-2.0/rs-color.h -include/rawstudio-2.0/rs-curve.h -include/rawstudio-2.0/rs-dcp-file.h -include/rawstudio-2.0/rs-debug.h -include/rawstudio-2.0/rs-exif.h -include/rawstudio-2.0/rs-filetypes.h -include/rawstudio-2.0/rs-filter-param.h -include/rawstudio-2.0/rs-filter-request.h -include/rawstudio-2.0/rs-filter-response.h -include/rawstudio-2.0/rs-filter.h -include/rawstudio-2.0/rs-gui-functions.h -include/rawstudio-2.0/rs-huesat-map.h -include/rawstudio-2.0/rs-icc-profile.h -include/rawstudio-2.0/rs-image.h -include/rawstudio-2.0/rs-image16.h -include/rawstudio-2.0/rs-io-job-checksum.h -include/rawstudio-2.0/rs-io-job-metadata.h -include/rawstudio-2.0/rs-io-job-prefetch.h -include/rawstudio-2.0/rs-io-job-tagging.h -include/rawstudio-2.0/rs-io-job.h -include/rawstudio-2.0/rs-io.h -include/rawstudio-2.0/rs-job-queue.h -include/rawstudio-2.0/rs-lens-db-editor.h -include/rawstudio-2.0/rs-lens-db.h -include/rawstudio-2.0/rs-lens-fix.h -include/rawstudio-2.0/rs-lens.h -include/rawstudio-2.0/rs-library.h -include/rawstudio-2.0/rs-macros.h -include/rawstudio-2.0/rs-math.h -include/rawstudio-2.0/rs-metadata.h -include/rawstudio-2.0/rs-output.h -include/rawstudio-2.0/rs-plugin-manager.h -include/rawstudio-2.0/rs-plugin.h -include/rawstudio-2.0/rs-profile-camera.h -include/rawstudio-2.0/rs-profile-factory.h -include/rawstudio-2.0/rs-profile-selector.h -include/rawstudio-2.0/rs-rawfile.h -include/rawstudio-2.0/rs-settings.h -include/rawstudio-2.0/rs-spline.h -include/rawstudio-2.0/rs-stock.h -include/rawstudio-2.0/rs-tiff-ifd-entry.h -include/rawstudio-2.0/rs-tiff-ifd.h -include/rawstudio-2.0/rs-tiff.h -include/rawstudio-2.0/rs-types.h -include/rawstudio-2.0/rs-utils.h -include/rawstudio-2.0/x86-cpu.h -lib/librawstudio-2.0.a -lib/librawstudio-2.0.so -lib/librawstudio-2.0.so.0 -lib/librawstudio-2.0.so.0.0.0 -libdata/pkgconfig/rawstudio-2.0.pc -share/applications/rawstudio.desktop -share/icons/rawstudio.png -share/locale/ca/LC_MESSAGES/rawstudio.mo -share/locale/cs/LC_MESSAGES/rawstudio.mo -share/locale/da/LC_MESSAGES/rawstudio.mo -share/locale/de/LC_MESSAGES/rawstudio.mo -share/locale/en/LC_MESSAGES/rawstudio.mo -share/locale/es/LC_MESSAGES/rawstudio.mo -share/locale/fi/LC_MESSAGES/rawstudio.mo -share/locale/fr/LC_MESSAGES/rawstudio.mo -share/locale/hu/LC_MESSAGES/rawstudio.mo -share/locale/it/LC_MESSAGES/rawstudio.mo -share/locale/ja/LC_MESSAGES/rawstudio.mo -share/locale/nb/LC_MESSAGES/rawstudio.mo -share/locale/nl/LC_MESSAGES/rawstudio.mo -share/locale/pl/LC_MESSAGES/rawstudio.mo -share/locale/pt_BR/LC_MESSAGES/rawstudio.mo -share/locale/ru/LC_MESSAGES/rawstudio.mo -share/locale/sv/LC_MESSAGES/rawstudio.mo -share/pixmaps/rawstudio/camera-photo.png -share/pixmaps/rawstudio/cursor-color-picker.png -share/pixmaps/rawstudio/cursor-crop.png -share/pixmaps/rawstudio/cursor-rotate.png -share/pixmaps/rawstudio/overlay_deleted.png -share/pixmaps/rawstudio/overlay_exported.png -share/pixmaps/rawstudio/overlay_priority1.png -share/pixmaps/rawstudio/overlay_priority2.png -share/pixmaps/rawstudio/overlay_priority3.png -share/pixmaps/rawstudio/tool-color-picker.png -share/pixmaps/rawstudio/tool-crop.png -share/pixmaps/rawstudio/tool-rotate.png -share/pixmaps/rawstudio/transform_180.png -share/pixmaps/rawstudio/transform_270.png -share/pixmaps/rawstudio/transform_90.png -share/pixmaps/rawstudio/transform_flip.png -share/pixmaps/rawstudio/transform_mirror.png -share/rawspeed/cameras.xml -%%DATADIR%%/lens_fix.xml -%%DATADIR%%/plugins/cache.a -%%DATADIR%%/plugins/cache.so -%%DATADIR%%/plugins/colorspace_adobergb.a -%%DATADIR%%/plugins/colorspace_adobergb.so -%%DATADIR%%/plugins/colorspace_prophoto.a -%%DATADIR%%/plugins/colorspace_prophoto.so -%%DATADIR%%/plugins/colorspace_srgb.a -%%DATADIR%%/plugins/colorspace_srgb.so -%%DATADIR%%/plugins/colorspace_transform.a -%%DATADIR%%/plugins/colorspace_transform.so -%%DATADIR%%/plugins/crop.a -%%DATADIR%%/plugins/crop.so -%%DATADIR%%/plugins/dcp.a -%%DATADIR%%/plugins/dcp.so -%%DATADIR%%/plugins/demosaic.a -%%DATADIR%%/plugins/demosaic.so -%%DATADIR%%/plugins/denoise.a -%%DATADIR%%/plugins/denoise.so -%%DATADIR%%/plugins/exposure_mask.a -%%DATADIR%%/plugins/exposure_mask.so -%%DATADIR%%/plugins/facebook-logo.svg -%%DATADIR%%/plugins/flickr-logo.svg -%%DATADIR%%/plugins/fuji_rotate.a -%%DATADIR%%/plugins/fuji_rotate.so -%%DATADIR%%/plugins/input_file.a -%%DATADIR%%/plugins/input_file.so -%%DATADIR%%/plugins/input_image16.a -%%DATADIR%%/plugins/input_image16.so -%%DATADIR%%/plugins/lensfun.a -%%DATADIR%%/plugins/lensfun.so -%%DATADIR%%/plugins/load_dcraw.a -%%DATADIR%%/plugins/load_dcraw.so -%%DATADIR%%/plugins/load_gdk.a -%%DATADIR%%/plugins/load_gdk.so -%%DATADIR%%/plugins/load_rawspeed.a -%%DATADIR%%/plugins/load_rawspeed.so -%%DATADIR%%/plugins/meta_ciff.a -%%DATADIR%%/plugins/meta_ciff.so -%%DATADIR%%/plugins/meta_exiv2.a -%%DATADIR%%/plugins/meta_exiv2.so -%%DATADIR%%/plugins/meta_mrw.a -%%DATADIR%%/plugins/meta_mrw.so -%%DATADIR%%/plugins/meta_raf.a -%%DATADIR%%/plugins/meta_raf.so -%%DATADIR%%/plugins/meta_tiff.a -%%DATADIR%%/plugins/meta_tiff.so -%%DATADIR%%/plugins/meta_x3f.a -%%DATADIR%%/plugins/meta_x3f.so -%%DATADIR%%/plugins/output_facebook.a -%%DATADIR%%/plugins/output_facebook.so -%%DATADIR%%/plugins/output_flickr.a -%%DATADIR%%/plugins/output_flickr.so -%%DATADIR%%/plugins/output_jpegfile.a -%%DATADIR%%/plugins/output_jpegfile.so -%%DATADIR%%/plugins/output_picasa.a -%%DATADIR%%/plugins/output_picasa.so -%%DATADIR%%/plugins/output_pngfile.a -%%DATADIR%%/plugins/output_pngfile.so -%%DATADIR%%/plugins/output_tifffile.a -%%DATADIR%%/plugins/output_tifffile.so -%%DATADIR%%/plugins/picasa-logo.svg -%%DATADIR%%/plugins/resample.a -%%DATADIR%%/plugins/resample.so -%%DATADIR%%/plugins/rotate.a -%%DATADIR%%/plugins/rotate.so -%%DATADIR%%/profiles/AGFAPHOTO_DC-833m-simple.dcp -%%DATADIR%%/profiles/Apple_QuickTake-simple.dcp -%%DATADIR%%/profiles/CASIO_EX-S20-simple.dcp -%%DATADIR%%/profiles/CASIO_EX-Z750-simple.dcp -%%DATADIR%%/profiles/CINE-simple.dcp -%%DATADIR%%/profiles/CINE_650-simple.dcp -%%DATADIR%%/profiles/CINE_660-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1DS-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1D_Mark_II-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1D_Mark_III-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1D_Mark_II_N-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1D_Mark_IV-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1Ds_Mark_II-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-1Ds_Mark_III-simple.dcp -%%DATADIR%%/profiles/Canon_EOS-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_1000D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_10D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_1100D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_20D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_20Da-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_300D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_30D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_350D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_400D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_40D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_450D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_500D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_50D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_550D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_5D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_5D_Mark_II-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_600D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_60D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_7D-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_D2000-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_D30-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_D60-simple.dcp -%%DATADIR%%/profiles/Canon_EOS_D6000-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A470-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A5-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A50-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A530-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A610-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A620-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A630-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A640-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A650-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_A720-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G1-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G10-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G11-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G12-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G2-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G3-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G5-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G6-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_G9-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_Pro1-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_Pro70-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_Pro90-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S30-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S3_IS-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S40-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S45-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S50-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S60-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S70-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S90-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_S95-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_SX110_IS-simple.dcp -%%DATADIR%%/profiles/Canon_PowerShot_SX1_IS-simple.dcp -%%DATADIR%%/profiles/Contax_N_Digital-simple.dcp -%%DATADIR%%/profiles/EPSON_R-D1-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_E550-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_E900-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_F7-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_F8-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S100FS-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S20Pro-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S2Pro-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S3Pro-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S5000-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S5100-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S5200-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S5500-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S5600-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S5Pro-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S6-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S6000fd-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S7000-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S9000-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S9100-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S9500-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_FinePix_S9600-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_IS-1-simple.dcp -%%DATADIR%%/profiles/FUJIFILM_IS_Pro-simple.dcp -%%DATADIR%%/profiles/Fuji_HS10-simple.dcp -%%DATADIR%%/profiles/Imacon_Ixpress-simple.dcp -%%DATADIR%%/profiles/KODAK_DCS420-simple.dcp -%%DATADIR%%/profiles/KODAK_DCS460-simple.dcp -%%DATADIR%%/profiles/KODAK_EASYSHARE_Z1015-simple.dcp -%%DATADIR%%/profiles/KODAK_EOSDCS1-simple.dcp -%%DATADIR%%/profiles/KODAK_EOSDCS3B-simple.dcp -%%DATADIR%%/profiles/KODAK_EasyShare_Z980-simple.dcp -%%DATADIR%%/profiles/KODAK_NC2000-simple.dcp -%%DATADIR%%/profiles/KODAK_P712-simple.dcp -%%DATADIR%%/profiles/KODAK_P850-simple.dcp -%%DATADIR%%/profiles/KODAK_P880-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS315C-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS330C-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS520C-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS560C-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS620C-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS620X-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS660C-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS720X-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS760C-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS_Pro_14-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS_Pro_14nx-simple.dcp -%%DATADIR%%/profiles/Kodak_DCS_Pro_SLR-simple.dcp -%%DATADIR%%/profiles/Kodak_ProBack-simple.dcp -%%DATADIR%%/profiles/Kodak_ProBack645-simple.dcp -%%DATADIR%%/profiles/Konica_Minolta_DiMAGE_A2-simple.dcp -%%DATADIR%%/profiles/Konica_Minolta_DiMAGE_A200-simple.dcp -%%DATADIR%%/profiles/Konica_Minolta_Maxxum_5D-simple.dcp -%%DATADIR%%/profiles/Konica_Minolta_Maxxum_7D-simple.dcp -%%DATADIR%%/profiles/Leaf-simple.dcp -%%DATADIR%%/profiles/Leaf_Aptus_54S-simple.dcp -%%DATADIR%%/profiles/Leaf_Aptus_65-simple.dcp -%%DATADIR%%/profiles/Leaf_Aptus_75-simple.dcp -%%DATADIR%%/profiles/Leaf_CMost-simple.dcp -%%DATADIR%%/profiles/Leaf_Valeo_6-simple.dcp -%%DATADIR%%/profiles/Leica-M8-simple.dcp -%%DATADIR%%/profiles/Leica-S2-simple.dcp -%%DATADIR%%/profiles/Leica-X1-native.dcp -%%DATADIR%%/profiles/MINOLTA_DYNAX_5-simple.dcp -%%DATADIR%%/profiles/MINOLTA_DYNAX_7-simple.dcp -%%DATADIR%%/profiles/MOTOROLA_PIXL-simple.dcp -%%DATADIR%%/profiles/Mamiya_ZD-simple.dcp -%%DATADIR%%/profiles/Micron_2010-simple.dcp -%%DATADIR%%/profiles/Minolta_DiMAGE_5-simple.dcp -%%DATADIR%%/profiles/Minolta_DiMAGE_7-simple.dcp -%%DATADIR%%/profiles/Minolta_DiMAGE_7Hi-simple.dcp -%%DATADIR%%/profiles/Minolta_DiMAGE_7i-simple.dcp -%%DATADIR%%/profiles/Minolta_DiMAGE_A1-simple.dcp -%%DATADIR%%/profiles/Minolta_DiMAGE_Z2-simple.dcp -%%DATADIR%%/profiles/NIKON_COOLPIX_P6000-simple.dcp -%%DATADIR%%/profiles/NIKON_COOLPIX_P7000-simple.dcp -%%DATADIR%%/profiles/NIKON_D1-simple.dcp -%%DATADIR%%/profiles/NIKON_D100-simple.dcp -%%DATADIR%%/profiles/NIKON_D1H-simple.dcp -%%DATADIR%%/profiles/NIKON_D1X-simple.dcp -%%DATADIR%%/profiles/NIKON_D200-simple.dcp -%%DATADIR%%/profiles/NIKON_D2H-simple.dcp -%%DATADIR%%/profiles/NIKON_D2X-simple.dcp -%%DATADIR%%/profiles/NIKON_D3-simple.dcp -%%DATADIR%%/profiles/NIKON_D300-simple.dcp -%%DATADIR%%/profiles/NIKON_D3000-simple.dcp -%%DATADIR%%/profiles/NIKON_D3100-simple.dcp -%%DATADIR%%/profiles/NIKON_D3S-simple.dcp -%%DATADIR%%/profiles/NIKON_D3X-simple.dcp -%%DATADIR%%/profiles/NIKON_D40-simple.dcp -%%DATADIR%%/profiles/NIKON_D40X-simple.dcp -%%DATADIR%%/profiles/NIKON_D50-simple.dcp -%%DATADIR%%/profiles/NIKON_D5000-simple.dcp -%%DATADIR%%/profiles/NIKON_D60-simple.dcp -%%DATADIR%%/profiles/NIKON_D70-simple.dcp -%%DATADIR%%/profiles/NIKON_D700-simple.dcp -%%DATADIR%%/profiles/NIKON_D7000-simple.dcp -%%DATADIR%%/profiles/NIKON_D70s-simple.dcp -%%DATADIR%%/profiles/NIKON_D80-simple.dcp -%%DATADIR%%/profiles/NIKON_D90-simple.dcp -%%DATADIR%%/profiles/NIKON_E2100-simple.dcp -%%DATADIR%%/profiles/NIKON_E2500-simple.dcp -%%DATADIR%%/profiles/NIKON_E4300-simple.dcp -%%DATADIR%%/profiles/NIKON_E4500-simple.dcp -%%DATADIR%%/profiles/NIKON_E5000-simple.dcp -%%DATADIR%%/profiles/NIKON_E5400-simple.dcp -%%DATADIR%%/profiles/NIKON_E5700-simple.dcp -%%DATADIR%%/profiles/NIKON_E8400-simple.dcp -%%DATADIR%%/profiles/NIKON_E8700-simple.dcp -%%DATADIR%%/profiles/NIKON_E8800-simple.dcp -%%DATADIR%%/profiles/NIKON_E950-simple.dcp -%%DATADIR%%/profiles/NIKON_E995-simple.dcp -%%DATADIR%%/profiles/Neutral-With-Tonecurve-AdobeRGB.dcp -%%DATADIR%%/profiles/Neutral-With-Tonecurve-Prophoto.dcp -%%DATADIR%%/profiles/Neutral-With-Tonecurve-sRGB.dcp -%%DATADIR%%/profiles/OLYMPUS_C5050-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_C5060-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_C70-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_C7070-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_C80-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-1-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-10-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-20-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-3-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-30-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-300-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-330-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-400-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-410-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-420-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-450-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-5-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-500-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-510-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-520-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-620-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-P1-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-PL1-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-PL1s-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_E-PL2-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_SP3-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_SP350-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_SP500UZ-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_SP510UZ-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_SP550UZ-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_SP560UZ-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_SP570UZ-simple.dcp -%%DATADIR%%/profiles/OLYMPUS_XZ-1-simple.dcp -%%DATADIR%%/profiles/PENTAX_645D-simple.dcp -%%DATADIR%%/profiles/PENTAX_K-5-simple.dcp -%%DATADIR%%/profiles/PENTAX_K-7-simple.dcp -%%DATADIR%%/profiles/PENTAX_K-m-simple.dcp -%%DATADIR%%/profiles/PENTAX_K-r-simple.dcp -%%DATADIR%%/profiles/PENTAX_K-x-simple.dcp -%%DATADIR%%/profiles/PENTAX_K1-simple.dcp -%%DATADIR%%/profiles/PENTAX_K10D-simple.dcp -%%DATADIR%%/profiles/PENTAX_K2000-simple.dcp -%%DATADIR%%/profiles/PENTAX_K200D-simple.dcp -%%DATADIR%%/profiles/PENTAX_K20D-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-FX150-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-FZ18-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-FZ28-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-FZ30-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-FZ35-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-FZ50-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-FZ8-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-G1-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-G10-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-G2-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-GF1-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-GF2-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-GH1-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-GH2-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-L1-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-L10-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-LC1-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-LX1-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-LX2-simple.dcp -%%DATADIR%%/profiles/Panasonic_DMC-LX3-simple.dcp -%%DATADIR%%/profiles/Panasonic_FZ100-simple.dcp -%%DATADIR%%/profiles/Panasonic_FZ40-simple.dcp -%%DATADIR%%/profiles/Panasonic_LX5-simple.dcp -%%DATADIR%%/profiles/Phase_One_H_20-simple.dcp -%%DATADIR%%/profiles/Phase_One_P65-simple.dcp -%%DATADIR%%/profiles/Phase_One_P_2-simple.dcp -%%DATADIR%%/profiles/Phase_One_P_30-simple.dcp -%%DATADIR%%/profiles/Phase_One_P_45-simple.dcp -%%DATADIR%%/profiles/Ricoh_A12_28mm-simple.dcp -%%DATADIR%%/profiles/Ricoh_A12_50mm-simple.dcp -%%DATADIR%%/profiles/Ricoh_Digital_3-simple.dcp -%%DATADIR%%/profiles/Ricoh_GX200-simple.dcp -%%DATADIR%%/profiles/Ricoh_S10_24-72mm-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_EX1-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_GX-1-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_GX-1L-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_GX-1S-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_GX10-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_GX20-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_NX10-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_NX100-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_NX11-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_NX5-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_S85-simple.dcp -%%DATADIR%%/profiles/SAMSUNG_WB2000-simple.dcp -%%DATADIR%%/profiles/SONY_DSC-F828-simple.dcp -%%DATADIR%%/profiles/SONY_DSC-R1-simple.dcp -%%DATADIR%%/profiles/SONY_DSC-V3-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A100-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A200-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A230-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A290-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A300-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A330-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A350-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A380-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A390-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A450-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A5-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A500-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A550-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A560-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A580-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A700-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A850-simple.dcp -%%DATADIR%%/profiles/SONY_DSLR-A900-simple.dcp -%%DATADIR%%/profiles/SONY_NEX-3-simple.dcp -%%DATADIR%%/profiles/SONY_NEX-5-simple.dcp -%%DATADIR%%/profiles/SONY_SLTA33-simple.dcp -%%DATADIR%%/profiles/SONY_SLTA55V-simple.dcp -%%DATADIR%%/profiles/Sinar-simple.dcp -%%DATADIR%%/profiles/compatibleWithAdobeRGB1998-linear.icc -%%DATADIR%%/profiles/compatibleWithAdobeRGB1998.icc -%%DATADIR%%/profiles/generic_camera_profile.icc -%%DATADIR%%/profiles/prophoto-linear.icc -%%DATADIR%%/profiles/prophoto.icc -%%DATADIR%%/profiles/rawstudio-cameras.xml -%%DATADIR%%/profiles/sRGB-linear.icc -%%DATADIR%%/profiles/sRGB.icc -%%DATADIR%%/rawstudio.gtkrc -%%DATADIR%%/ui.xml diff --git a/graphics/tulip/Makefile b/graphics/tulip/Makefile deleted file mode 100644 index b42c3bc28cdc..000000000000 --- a/graphics/tulip/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -# Created by: ijliao -# $FreeBSD$ - -PORTNAME= tulip -PORTVERSION= 4.10.0 -PORTREVISION= 9 -DISTVERSIONSUFFIX= _src -CATEGORIES= graphics -MASTER_SITES= SF/auber/${PORTNAME}/${PORTNAME}-${PORTVERSION} - -MAINTAINER= woodsb02@FreeBSD.org -COMMENT= System dedicated to the visualization of huge graphs - -LICENSE= LGPL3 - -BROKEN= Missing libquazip.so:archivers/quazip@qt4 -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2019-05-08 -LIB_DEPENDS= libpng.so:graphics/png \ - libOGDF.so:math/ogdf \ - libfreetype.so:print/freetype2 - -BROKEN_powerpc64= fails to link: libOGDF.so: undefined reference to CoinPackedVector::CoinPackedVector - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -USES= cmake:noninja compiler:c++11-lib dos2unix jpeg python qt:5 \ - shebangfix -SHEBANG_FILES= tulip-config.in -DOS2UNIX_FILES= software/tulip/src/main.cpp -USE_GL= gl glew glut -USE_GNOME= libxml2 -CMAKE_ARGS= -DBUILD_DOC:BOOL=OFF \ - -DOGDFInclude:STRING=${LOCALBASE}/include \ - -DOGDFLibrary:STRING=${LOCALBASE}/lib/libOGDF.so -USE_LDCONFIG= ${PREFIX}/lib/tulip -USE_QT= core gui network opengl webkit widgets \ - xml xmlpatterns \ - buildtools_build qmake_build - -CXXFLAGS+= -fPIC -I${LOCALBASE}/include -DNDEBUG -DOGDF_DLL -# Unhide std::to_string() to fix build with GCC (see ports/193528 for details) -CXXFLAGS+= -D_GLIBCXX_USE_C99 -LDFLAGS+= -L${LOCALBASE}/lib -lCOIN - -PLIST_SUB= TULIP_VERSION="${PORTVERSION}" \ - TULIP_VERS="${PORTVERSION:R}" - -DESKTOP_ENTRIES="Tulip" "" "${PREFIX}/share/pixmaps.tulip.png" "tulip" "" "" - -CMAKE_ON= USE_QT5_IF_INSTALLED - -BROKEN= does not build - -post-build: - @${LN} -sf logo32x32.png \ - ${WRKSRC}/library/tulip-gui/resources/icons/tulip.png - -post-install: - (cd ${WRKSRC}/library/tulip-gui/resources/icons && ${INSTALL_DATA} \ - tulip.png ${STAGEDIR}${PREFIX}/share/pixmaps) - -.include <bsd.port.mk> diff --git a/graphics/tulip/distinfo b/graphics/tulip/distinfo deleted file mode 100644 index f4ccce9d3819..000000000000 --- a/graphics/tulip/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1482046849 -SHA256 (tulip-4.10.0_src.tar.gz) = f7c2196f8e892a3474c90b4cc11a0777fdef7054b0edd20fbcb94736e6a7cc9f -SIZE (tulip-4.10.0_src.tar.gz) = 74675072 diff --git a/graphics/tulip/files/patch-CMakeLists.txt b/graphics/tulip/files/patch-CMakeLists.txt deleted file mode 100644 index 3d6cbd622f9f..000000000000 --- a/graphics/tulip/files/patch-CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ ---- CMakeLists.txt.orig 2016-07-07 20:16:41 UTC -+++ CMakeLists.txt -@@ -564,8 +564,8 @@ IF(NOT BUILD_CORE_ONLY) - SET(Tess2Library tess2-tulip-${TulipMMVersion}) - ENDIF(NOT BUILD_CORE_ONLY) - --SET(OGDFInclude ${PROJECT_SOURCE_DIR}/thirdparty/OGDF/include) --SET(OGDFLibrary OGDF-tulip-${TulipMMVersion}) -+#SET(OGDFInclude ${PROJECT_SOURCE_DIR}/thirdparty/OGDF/include) -+#SET(OGDFLibrary OGDF-tulip-${TulipMMVersion}) - SET(QHULLInclude ${PROJECT_SOURCE_DIR}/thirdparty) - SET(UTF8CppInclude ${PROJECT_SOURCE_DIR}/thirdparty/utf8-cpp/source) - SET(YajlLibrary yajl-tulip-${TulipMMVersion}) diff --git a/graphics/tulip/files/patch-software_crash__handling_StackWalker.cpp b/graphics/tulip/files/patch-software_crash__handling_StackWalker.cpp deleted file mode 100644 index d79d9f4ee222..000000000000 --- a/graphics/tulip/files/patch-software_crash__handling_StackWalker.cpp +++ /dev/null @@ -1,16 +0,0 @@ ---- software/crash_handling/StackWalker.cpp.orig 2015-04-18 20:15:52 UTC -+++ software/crash_handling/StackWalker.cpp -@@ -255,8 +255,13 @@ void StackWalkerGCC::printCallStack(std: - char * real_name = abi::__cxa_demangle(mangled_name, 0, 0, &status); - - char *end; -+#if defined(__FreeBSD__) && __FreeBSD_version < 9000000 -+ int64_t runtimeAddr = static_cast<int64_t>(strtol(runtime_addr, &end, 16)); -+ int64_t runtimeOffset = static_cast<int64_t>(strtol(runtime_offset, &end, 0)); -+#else - int64_t runtimeAddr = static_cast<int64_t>(strtoll(runtime_addr, &end, 16)); - int64_t runtimeOffset = static_cast<int64_t>(strtoll(runtime_offset, &end, 0)); -+#endif - - if (runtimeAddr == 1 && i == (size - 1)) - break; diff --git a/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp b/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp deleted file mode 100644 index 3655e73b5a1f..000000000000 --- a/graphics/tulip/files/patch-software_tulip__perspective_src_main.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- software/tulip_perspective/src/main.cpp.orig 2016-07-07 20:15:39 UTC -+++ software/tulip_perspective/src/main.cpp -@@ -135,7 +135,9 @@ void usage(const QString &error) { - - int main(int argc,char **argv) { - -+#ifndef __FreeBSD__ - CrashHandling::installCrashHandler(); -+#endif - - QString appName("Tulip "); - QString iconPath; diff --git a/graphics/tulip/files/patch-software_tulip_src_main.cpp b/graphics/tulip/files/patch-software_tulip_src_main.cpp deleted file mode 100644 index a6b9295937b1..000000000000 --- a/graphics/tulip/files/patch-software_tulip_src_main.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- software/tulip/src/main.cpp.orig 2016-07-07 20:15:40 UTC -+++ software/tulip/src/main.cpp -@@ -124,7 +124,9 @@ void checkTulipRunning(const QString& pe - } - - int main(int argc, char **argv) { -+#ifndef __FreeBSD__ - CrashHandling::installCrashHandler(); -+#endif - - QApplication tulip_agent(argc, argv); - QString name("Tulip "); diff --git a/graphics/tulip/files/patch-thirdparty_CMakeLists.txt b/graphics/tulip/files/patch-thirdparty_CMakeLists.txt deleted file mode 100644 index 31c5743e683b..000000000000 --- a/graphics/tulip/files/patch-thirdparty_CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- thirdparty/CMakeLists.txt.orig 2016-07-07 20:15:36 UTC -+++ thirdparty/CMakeLists.txt -@@ -8,7 +8,7 @@ ADD_CORE_FILES(CMakeLists.txt - ) - - ADD_SUBDIRECTORY(gzstream) --ADD_SUBDIRECTORY(OGDF) -+#ADD_SUBDIRECTORY(OGDF) - ADD_SUBDIRECTORY(libqhull) - ADD_SUBDIRECTORY(yajl) - IF(NOT BUILD_CORE_ONLY) diff --git a/graphics/tulip/pkg-descr b/graphics/tulip/pkg-descr deleted file mode 100644 index 1beeb8145b15..000000000000 --- a/graphics/tulip/pkg-descr +++ /dev/null @@ -1,14 +0,0 @@ -Tulip software is a system dedicated to the visualization of huge -graphs. It manages graphs with a number of elements(node and edges) up -to 500.000 on a personal computer(PIII 600, with 256mo). Its SuperGraph -technology architecture enables to do the following things : - * 3D visualizations - * 3D modifications - * Plug-in support for easy evolution - * Building of clusters and navigation into it - * Automatic drawing of graphs - * Automatic clustering of graphs - * Automatic selection of elements - * Automatic Metric coloration of graphs - -WWW: http://tulip.labri.fr/ diff --git a/graphics/tulip/pkg-plist b/graphics/tulip/pkg-plist deleted file mode 100644 index 784b78cd8653..000000000000 --- a/graphics/tulip/pkg-plist +++ /dev/null @@ -1,931 +0,0 @@ -bin/tulip -bin/tulip-config -bin/tulip_perspective -include/tulip/APIDataBase.h -include/tulip/AboutTulipPage.h -include/tulip/AbstractGlCurve.h -include/tulip/AbstractProperty.h -include/tulip/AcyclicTest.h -include/tulip/Algorithm.h -include/tulip/Animation.h -include/tulip/Array.h -include/tulip/AutoCompletionDataBase.h -include/tulip/Bfs.h -include/tulip/BiconnectedTest.h -include/tulip/BooleanProperty.h -include/tulip/BoundingBox.h -include/tulip/CSVContentHandler.h -include/tulip/CSVGraphImport.h -include/tulip/CSVGraphMappingConfigurationWidget.h -include/tulip/CSVImportConfigurationWidget.h -include/tulip/CSVImportWizard.h -include/tulip/CSVParser.h -include/tulip/CSVParserConfigurationWidget.h -include/tulip/CachedPropertyAnimation.h -include/tulip/Camera.h -include/tulip/CaptionGraphicsItem.h -include/tulip/CaptionGraphicsSubItems.h -include/tulip/CaptionItem.h -include/tulip/Circle.h -include/tulip/ClearableLineEdit.h -include/tulip/Color.h -include/tulip/ColorButton.h -include/tulip/ColorProperty.h -include/tulip/ColorPropertyAnimation.h -include/tulip/ColorScale.h -include/tulip/ColorScaleButton.h -include/tulip/ColorScaleConfigDialog.h -include/tulip/ColorScaleWidget.h -include/tulip/ColorScalesManager.h -include/tulip/ConcatIterator.h -include/tulip/ConnectedTest.h -include/tulip/ConsoleUtils.h -include/tulip/ConvexHull.h -include/tulip/Coord.h -include/tulip/CoordEditor.h -include/tulip/CopyPropertyDialog.h -include/tulip/Curves.h -include/tulip/DataSet.h -include/tulip/Delaunay.h -include/tulip/DoubleProperty.h -include/tulip/DoublePropertyAnimation.h -include/tulip/DoubleStringsListSelectionWidget.h -include/tulip/DownloadManager.h -include/tulip/DragHandle.h -include/tulip/DrawingTools.h -include/tulip/Edge.h -include/tulip/EdgeExtremityGlyph.h -include/tulip/EdgeExtremityGlyphManager.h -include/tulip/ExportModule.h -include/tulip/Face.h -include/tulip/FaceIterator.h -include/tulip/ForEach.h -include/tulip/GLInteractor.h -include/tulip/Gl2DRect.h -include/tulip/GlAbstractPolygon.h -include/tulip/GlAxis.h -include/tulip/GlBezierCurve.h -include/tulip/GlBoundingBoxSceneVisitor.h -include/tulip/GlBox.h -include/tulip/GlCPULODCalculator.h -include/tulip/GlCatmullRomCurve.h -include/tulip/GlCircle.h -include/tulip/GlColorScale.h -include/tulip/GlComplexPolygon.h -include/tulip/GlComplexeEntity.h -include/tulip/GlComposite.h -include/tulip/GlCompositeHierarchyManager.h -include/tulip/GlConvexGraphHull.h -include/tulip/GlConvexHull.h -include/tulip/GlCubicBSplineInterpolation.h -include/tulip/GlCurve.h -include/tulip/GlDisplayListManager.h -include/tulip/GlEdge.h -include/tulip/GlEntity.h -include/tulip/GlFeedBackBuilder.h -include/tulip/GlFeedBackRecorder.h -include/tulip/GlGlyphRenderer.h -include/tulip/GlGraphComposite.h -include/tulip/GlGraphHighDetailsRenderer.h -include/tulip/GlGraphInputData.h -include/tulip/GlGraphLowDetailsRenderer.h -include/tulip/GlGraphRenderer.h -include/tulip/GlGraphRenderingParameters.h -include/tulip/GlGraphStaticData.h -include/tulip/GlGrid.h -include/tulip/GlHexagon.h -include/tulip/GlLODCalculator.h -include/tulip/GlLODSceneVisitor.h -include/tulip/GlLabel.h -include/tulip/GlLayer.h -include/tulip/GlLine.h -include/tulip/GlLines.h -include/tulip/GlMainView.h -include/tulip/GlMainWidget.h -include/tulip/GlMainWidgetGraphicsItem.h -include/tulip/GlMetaNodeRenderer.h -include/tulip/GlNode.h -include/tulip/GlNominativeAxis.h -include/tulip/GlOffscreenRenderer.h -include/tulip/GlOpenUniformCubicBSpline.h -include/tulip/GlOverviewGraphicsItem.h -include/tulip/GlPentagon.h -include/tulip/GlPolyQuad.h -include/tulip/GlPolygon.h -include/tulip/GlProgressBar.h -include/tulip/GlQuad.h -include/tulip/GlQuadTreeLODCalculator.h -include/tulip/GlQuantitativeAxis.h -include/tulip/GlRect.h -include/tulip/GlRegularPolygon.h -include/tulip/GlScene.h -include/tulip/GlSceneObserver.h -include/tulip/GlSceneVisitor.h -include/tulip/GlSceneZoomAndPan.h -include/tulip/GlSelectSceneVisitor.h -include/tulip/GlShaderProgram.h -include/tulip/GlSimpleEntity.h -include/tulip/GlSimpleEntityItemModel.h -include/tulip/GlSphere.h -include/tulip/GlStar.h -include/tulip/GlTLPFeedBackBuilder.h -include/tulip/GlTextureManager.h -include/tulip/GlTools.h -include/tulip/GlTriangle.h -include/tulip/GlVertexArrayManager.h -include/tulip/GlVertexArrayVisitor.h -include/tulip/GlXMLTools.h -include/tulip/Glyph.h -include/tulip/GlyphManager.h -include/tulip/GlyphRenderer.h -include/tulip/Graph.h -include/tulip/GraphAbstract.h -include/tulip/GraphDecorator.h -include/tulip/GraphElementModel.h -include/tulip/GraphHierarchiesModel.h -include/tulip/GraphMeasure.h -include/tulip/GraphModel.h -include/tulip/GraphNeedsSavingObserver.h -include/tulip/GraphPropertiesModel.h -include/tulip/GraphPropertiesSelectionWidget.h -include/tulip/GraphProperty.h -include/tulip/GraphTableItemDelegate.h -include/tulip/GraphTest.h -include/tulip/GraphTools.h -include/tulip/ImportModule.h -include/tulip/IntegerProperty.h -include/tulip/Interactor.h -include/tulip/InteractorComposite.h -include/tulip/ItemsListWidget.h -include/tulip/Iterator.h -include/tulip/LayoutProperty.h -include/tulip/LayoutPropertyAnimation.h -include/tulip/MapIterator.h -include/tulip/Matrix.h -include/tulip/MouseBoxZoomer.h -include/tulip/MouseEdgeBendEditor.h -include/tulip/MouseEdgeBuilder.h -include/tulip/MouseEdgeSelector.h -include/tulip/MouseInteractors.h -include/tulip/MouseNodeBuilder.h -include/tulip/MouseSelectionEditor.h -include/tulip/MouseSelector.h -include/tulip/MouseShowElementInfos.h -include/tulip/MutableContainer.h -include/tulip/Node.h -include/tulip/NodeLinkDiagramComponent.h -include/tulip/NodeLinkDiagramComponentInteractor.h -include/tulip/NumericProperty.h -include/tulip/Observable.h -include/tulip/OcclusionTest.h -include/tulip/OpenGlConfigManager.h -include/tulip/Ordering.h -include/tulip/OuterPlanarTest.h -include/tulip/ParameterListModel.h -include/tulip/ParametricCurves.h -include/tulip/Perspective.h -include/tulip/PlaceHolderWidget.h -include/tulip/PlanarConMap.h -include/tulip/PlanarityTest.h -include/tulip/Plugin.h -include/tulip/PluginContext.h -include/tulip/PluginLibraryLoader.h -include/tulip/PluginLister.h -include/tulip/PluginLoader.h -include/tulip/PluginLoaderTxt.h -include/tulip/PluginModel.h -include/tulip/PluginProgress.h -include/tulip/ProcessingAnimationItem.h -include/tulip/PropertyAlgorithm.h -include/tulip/PropertyAnimation.h -include/tulip/PropertyCreationDialog.h -include/tulip/PropertyInterface.h -include/tulip/PropertyTypes.h -include/tulip/PythonCodeEditor.h -include/tulip/PythonCppTypesConverter.h -include/tulip/PythonEditorsTabWidget.h -include/tulip/PythonInterpreter.cxx -include/tulip/PythonInterpreter.h -include/tulip/PythonShellWidget.h -include/tulip/PythonVersionChecker.h -include/tulip/QGlBufferManager.h -include/tulip/QGlPixelBufferManager.h -include/tulip/QtGlSceneZoomAndPanAnimator.h -include/tulip/QuaZIPFacade.h -include/tulip/QuadTree.h -include/tulip/QuickAccessBar.h -include/tulip/Rectangle.h -include/tulip/RenamePropertyDialog.h -include/tulip/SceneConfigWidget.h -include/tulip/SceneLayersConfigWidget.h -include/tulip/ScrollPopupButton.h -include/tulip/SerializableType.h -include/tulip/SimplePluginProgress.h -include/tulip/SimplePluginProgressWidget.h -include/tulip/SimpleStringsListSelectionWidget.h -include/tulip/SimpleTest.h -include/tulip/Size.h -include/tulip/SizeProperty.h -include/tulip/SizePropertyAnimation.h -include/tulip/SnapshotDialog.h -include/tulip/SortIterator.h -include/tulip/StableIterator.h -include/tulip/StlFunctions.h -include/tulip/StlIterator.h -include/tulip/StoredType.h -include/tulip/StringCollection.h -include/tulip/StringEditor.h -include/tulip/StringProperty.h -include/tulip/StringsListSelectionDialog.h -include/tulip/StringsListSelectionWidget.h -include/tulip/StringsListSelectionWidgetInterface.h -include/tulip/TemplateAlgorithm.h -include/tulip/TextureFileDialog.h -include/tulip/TlpQtTools.h -include/tulip/TlpTools.h -include/tulip/TreeTest.h -include/tulip/TreeViewComboBox.h -include/tulip/TriconnectedTest.h -include/tulip/TulipException.h -include/tulip/TulipFont.h -include/tulip/TulipFontAwesome.h -include/tulip/TulipFontDialog.h -include/tulip/TulipItemDelegate.h -include/tulip/TulipItemEditorCreators.h -include/tulip/TulipMetaTypes.h -include/tulip/TulipMimes.h -include/tulip/TulipModel.h -include/tulip/TulipParallelAnimationGroup.h -include/tulip/TulipPluginHeaders.h -include/tulip/TulipProject.h -include/tulip/TulipRelease.h -include/tulip/TulipSettings.h -include/tulip/TulipViewSettings.h -include/tulip/TypeInterface.h -include/tulip/Vector.h -include/tulip/VectorEditor.h -include/tulip/VectorPropertyAnimation.h -include/tulip/View.h -include/tulip/ViewWidget.h -include/tulip/WithDependency.h -include/tulip/WithParameter.h -include/tulip/Workspace.h -include/tulip/WorkspaceExposeWidget.h -include/tulip/WorkspacePanel.h -include/tulip/YajlFacade.h -include/tulip/conversioniterator.h -include/tulip/cxx/AbstractProperty.cxx -include/tulip/cxx/Array.cxx -include/tulip/cxx/CachedPropertyAnimation.cxx -include/tulip/cxx/Circle.cxx -include/tulip/cxx/DataSet.cxx -include/tulip/cxx/Graph.cxx -include/tulip/cxx/GraphPropertiesModel.cxx -include/tulip/cxx/Matrix.cxx -include/tulip/cxx/MutableContainer.cxx -include/tulip/cxx/PropertyAnimation.cxx -include/tulip/cxx/TulipItemDelegate.cxx -include/tulip/cxx/TulipItemEditorCreators.cxx -include/tulip/cxx/Vector.cxx -include/tulip/cxx/VectorPropertyAnimation.cxx -include/tulip/cxx/minmaxproperty.cxx -include/tulip/filteriterator.h -include/tulip/memorypool.h -include/tulip/minmaxproperty.h -include/tulip/tulipconf.h -include/tulip/tuliphash.h -include/tulip/vectorgraph.h -include/tulip/vectorgraphproperty.h -include/tulip2ogdf/OGDFLayoutPluginBase.h -include/tulip2ogdf/TulipToOGDF.h -lib/libftgl-tulip-%%TULIP_VERS%%.so -lib/libftgl-tulip-%%TULIP_VERS%%.so.2 -lib/libftgl-tulip-%%TULIP_VERS%%.so.2.1 -lib/libgzstream-tulip-%%TULIP_VERS%%.so -lib/libgzstream-tulip-%%TULIP_VERS%%.so.0 -lib/libquazip-tulip-%%TULIP_VERS%%.so -lib/libquazip-tulip-%%TULIP_VERS%%.so.1 -lib/libquazip-tulip-%%TULIP_VERS%%.so.1.0.0 -lib/libtess2-tulip-%%TULIP_VERS%%.so -lib/libtulip-core-%%TULIP_VERS%%.so -lib/libtulip-gui-%%TULIP_VERS%%.so -lib/libtulip-ogdf-%%TULIP_VERS%%.so -lib/libtulip-ogl-%%TULIP_VERS%%.so -lib/libtulip-python-%%TULIP_VERS%%.so -lib/libyajl-tulip-%%TULIP_VERS%%.so -lib/libyajl-tulip-%%TULIP_VERS%%.so.2 -lib/libyajl-tulip-%%TULIP_VERS%%.so.2.1.0 -lib/python/tulip/__init__.py -lib/python/tulip/native/_stl.so -lib/python/tulip/native/_tulip.so -lib/python/tulipgui/__init__.py -lib/python/tulipgui/native/_tulipgui.so -lib/python/tulipogl/__init__.py -lib/python/tulipogl/native/_tulipogl.so -lib/python/tulipplugins.py -lib/python/tulipsip.so -lib/tulip/glyph/libBillboard-%%TULIP_VERSION%%.so -lib/tulip/glyph/libChristmasTree-%%TULIP_VERSION%%.so -lib/tulip/glyph/libCircle-%%TULIP_VERSION%%.so -lib/tulip/glyph/libCone-%%TULIP_VERSION%%.so -lib/tulip/glyph/libCross-%%TULIP_VERSION%%.so -lib/tulip/glyph/libCube-%%TULIP_VERSION%%.so -lib/tulip/glyph/libCubeOutlinedTransparent-%%TULIP_VERSION%%.so -lib/tulip/glyph/libCylinder-%%TULIP_VERSION%%.so -lib/tulip/glyph/libDiamond-%%TULIP_VERSION%%.so -lib/tulip/glyph/libFontAwesomeIcon-%%TULIP_VERSION%%.so -lib/tulip/glyph/libGlowSphere-%%TULIP_VERSION%%.so -lib/tulip/glyph/libHexagone-%%TULIP_VERSION%%.so -lib/tulip/glyph/libPentagone-%%TULIP_VERSION%%.so -lib/tulip/glyph/libRing-%%TULIP_VERSION%%.so -lib/tulip/glyph/libRoundedBox-%%TULIP_VERSION%%.so -lib/tulip/glyph/libSphere-%%TULIP_VERSION%%.so -lib/tulip/glyph/libSquare-%%TULIP_VERSION%%.so -lib/tulip/glyph/libStar-%%TULIP_VERSION%%.so -lib/tulip/glyph/libTriangle-%%TULIP_VERSION%%.so -lib/tulip/glyph/libWindow-%%TULIP_VERSION%%.so -lib/tulip/interactor/libFishEyeInteractor-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorAddNodeEdge-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorDeleteElement-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorEditEdgeBends-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorGetInformation-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorNavigation-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorRectangleZoom-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorSelection-%%TULIP_VERSION%%.so -lib/tulip/interactor/libInteractorSelectionModifier-%%TULIP_VERSION%%.so -lib/tulip/interactor/libMouseLassoNodesSelector-%%TULIP_VERSION%%.so -lib/tulip/interactor/libMouseMagnifyingGlass-%%TULIP_VERSION%%.so -lib/tulip/interactor/libNeighborhoodHighlighter-%%TULIP_VERSION%%.so -lib/tulip/interactor/libPathFinder-%%TULIP_VERSION%%.so -lib/tulip/libAcyclic-%%TULIP_VERSION%%.so -lib/tulip/libAdjacencyMatrixImport-%%TULIP_VERSION%%.so -lib/tulip/libAutoSize-%%TULIP_VERSION%%.so -lib/tulip/libBetweennessCentrality-%%TULIP_VERSION%%.so -lib/tulip/libBiconnected-%%TULIP_VERSION%%.so -lib/tulip/libBiconnectedComponent-%%TULIP_VERSION%%.so -lib/tulip/libBubbleTree-%%TULIP_VERSION%%.so -lib/tulip/libCircular-%%TULIP_VERSION%%.so -lib/tulip/libClusterMetric-%%TULIP_VERSION%%.so -lib/tulip/libColorMapping-%%TULIP_VERSION%%.so -lib/tulip/libCompleteGraph-%%TULIP_VERSION%%.so -lib/tulip/libCompleteTree-%%TULIP_VERSION%%.so -lib/tulip/libConeTreeExtended-%%TULIP_VERSION%%.so -lib/tulip/libConnected-%%TULIP_VERSION%%.so -lib/tulip/libConnectedComponent-%%TULIP_VERSION%%.so -lib/tulip/libConnectedComponentPacking-%%TULIP_VERSION%%.so -lib/tulip/libConvolutionClustering-%%TULIP_VERSION%%.so -lib/tulip/libCurveEdges-%%TULIP_VERSION%%.so -lib/tulip/libDagLevelMetric-%%TULIP_VERSION%%.so -lib/tulip/libDegreeMetric-%%TULIP_VERSION%%.so -lib/tulip/libDelaunay-%%TULIP_VERSION%%.so -lib/tulip/libDendrogram-%%TULIP_VERSION%%.so -lib/tulip/libDepthMetric-%%TULIP_VERSION%%.so -lib/tulip/libDotImport-%%TULIP_VERSION%%.so -lib/tulip/libEccentricity-%%TULIP_VERSION%%.so -lib/tulip/libEdgeBundling-%%TULIP_VERSION%%.so -lib/tulip/libEmptyGraph-%%TULIP_VERSION%%.so -lib/tulip/libEqualValueClustering-%%TULIP_VERSION%%.so -lib/tulip/libFastOverlapRemoval-%%TULIP_VERSION%%.so -lib/tulip/libFileSystem-%%TULIP_VERSION%%.so -lib/tulip/libGEXFImport-%%TULIP_VERSION%%.so -lib/tulip/libGMLExport-%%TULIP_VERSION%%.so -lib/tulip/libGMLImport-%%TULIP_VERSION%%.so -lib/tulip/libGemLayout-%%TULIP_VERSION%%.so -lib/tulip/libGrid-%%TULIP_VERSION%%.so -lib/tulip/libGrip-%%TULIP_VERSION%%.so -lib/tulip/libHierarchicalClustering-%%TULIP_VERSION%%.so -lib/tulip/libHierarchicalGraph-%%TULIP_VERSION%%.so -lib/tulip/libIdMetric-%%TULIP_VERSION%%.so -lib/tulip/libImportPajek-%%TULIP_VERSION%%.so -lib/tulip/libImportUCINET-%%TULIP_VERSION%%.so -lib/tulip/libImprovedWalker-%%TULIP_VERSION%%.so -lib/tulip/libInducedSubGraphSelection-%%TULIP_VERSION%%.so -lib/tulip/libKCores-%%TULIP_VERSION%%.so -lib/tulip/libKruskal-%%TULIP_VERSION%%.so -lib/tulip/libLeafMetric-%%TULIP_VERSION%%.so -lib/tulip/libLinLog-%%TULIP_VERSION%%.so -lib/tulip/libLinkCommunities-%%TULIP_VERSION%%.so -lib/tulip/libLoopSelection-%%TULIP_VERSION%%.so -lib/tulip/libLouvainClustering-%%TULIP_VERSION%%.so -lib/tulip/libMCLClustering-%%TULIP_VERSION%%.so -lib/tulip/libMakeGraph-%%TULIP_VERSION%%.so -lib/tulip/libMetricSizeMapping-%%TULIP_VERSION%%.so -lib/tulip/libMixedModel-%%TULIP_VERSION%%.so -lib/tulip/libMultipleSelection-%%TULIP_VERSION%%.so -lib/tulip/libNodeMetric-%%TULIP_VERSION%%.so -lib/tulip/libOGDFBalloon-%%TULIP_VERSION%%.so -lib/tulip/libOGDFBertaultLayout-%%TULIP_VERSION%%.so -lib/tulip/libOGDFCircular-%%TULIP_VERSION%%.so -lib/tulip/libOGDFDavidsonHarel-%%TULIP_VERSION%%.so -lib/tulip/libOGDFDominance-%%TULIP_VERSION%%.so -lib/tulip/libOGDFFastMultipoleEmbedder-%%TULIP_VERSION%%.so -lib/tulip/libOGDFFastMultipoleMultilevelEmbedder-%%TULIP_VERSION%%.so -lib/tulip/libOGDFFm3-%%TULIP_VERSION%%.so -lib/tulip/libOGDFFrutchermanReingold-%%TULIP_VERSION%%.so -lib/tulip/libOGDFGemFrick-%%TULIP_VERSION%%.so -lib/tulip/libOGDFKamadaKawai-%%TULIP_VERSION%%.so -lib/tulip/libOGDFMMMExampleFastLayout-%%TULIP_VERSION%%.so -lib/tulip/libOGDFMMMExampleNiceLayout-%%TULIP_VERSION%%.so -lib/tulip/libOGDFMMMExampleNoTwistLayout-%%TULIP_VERSION%%.so -lib/tulip/libOGDFPivotMDS-%%TULIP_VERSION%%.so -lib/tulip/libOGDFPlanarizationGrid-%%TULIP_VERSION%%.so -lib/tulip/libOGDFPlanarizationLayout-%%TULIP_VERSION%%.so -lib/tulip/libOGDFStressMajorization-%%TULIP_VERSION%%.so -lib/tulip/libOGDFSugiyama-%%TULIP_VERSION%%.so -lib/tulip/libOGDFTileToRowsPacking-%%TULIP_VERSION%%.so -lib/tulip/libOGDFTree-%%TULIP_VERSION%%.so -lib/tulip/libOGDFUpwardPlanarization-%%TULIP_VERSION%%.so -lib/tulip/libOGDFVisibility-%%TULIP_VERSION%%.so -lib/tulip/libOuterplanar-%%TULIP_VERSION%%.so -lib/tulip/libPageRank-%%TULIP_VERSION%%.so -lib/tulip/libPathLengthMetric-%%TULIP_VERSION%%.so -lib/tulip/libPerfectLayout-%%TULIP_VERSION%%.so -lib/tulip/libPlanarGraph-%%TULIP_VERSION%%.so -lib/tulip/libPlanarity-%%TULIP_VERSION%%.so -lib/tulip/libPolyominoPacking-%%TULIP_VERSION%%.so -lib/tulip/libQuotientClustering-%%TULIP_VERSION%%.so -lib/tulip/libRandom-%%TULIP_VERSION%%.so -lib/tulip/libRandomGraph-%%TULIP_VERSION%%.so -lib/tulip/libRandomMetric-%%TULIP_VERSION%%.so -lib/tulip/libRandomSimpleGraph-%%TULIP_VERSION%%.so -lib/tulip/libRandomTree-%%TULIP_VERSION%%.so -lib/tulip/libRandomTreeGeneral-%%TULIP_VERSION%%.so -lib/tulip/libReachableSubGraphSelection-%%TULIP_VERSION%%.so -lib/tulip/libReverseEdges-%%TULIP_VERSION%%.so -lib/tulip/libSVGExport-%%TULIP_VERSION%%.so -lib/tulip/libSimple-%%TULIP_VERSION%%.so -lib/tulip/libSmallWorldGraph-%%TULIP_VERSION%%.so -lib/tulip/libSpanningDagSelection-%%TULIP_VERSION%%.so -lib/tulip/libSpanningTreeSelection-%%TULIP_VERSION%%.so -lib/tulip/libSquarifiedTreeMap-%%TULIP_VERSION%%.so -lib/tulip/libStrahlerMetric-%%TULIP_VERSION%%.so -lib/tulip/libStrengthClustering-%%TULIP_VERSION%%.so -lib/tulip/libStrengthMetric-%%TULIP_VERSION%%.so -lib/tulip/libStrongComponent-%%TULIP_VERSION%%.so -lib/tulip/libToLabels-%%TULIP_VERSION%%.so -lib/tulip/libTree-%%TULIP_VERSION%%.so -lib/tulip/libTreeLeaf-%%TULIP_VERSION%%.so -lib/tulip/libTreeRadial-%%TULIP_VERSION%%.so -lib/tulip/libTreeReingoldAndTilforExtended-%%TULIP_VERSION%%.so -lib/tulip/libTriconnected-%%TULIP_VERSION%%.so -lib/tulip/libTutte-%%TULIP_VERSION%%.so -lib/tulip/libVoronoi-%%TULIP_VERSION%%.so -lib/tulip/libWebImport-%%TULIP_VERSION%%.so -lib/tulip/libWelshPowell-%%TULIP_VERSION%%.so -lib/tulip/perspective/libGraphPerspective-%%TULIP_VERSION%%.so -lib/tulip/view/libGeographicView-%%TULIP_VERSION%%.so -lib/tulip/view/libHistogramView-%%TULIP_VERSION%%.so -lib/tulip/view/libMatrixView-%%TULIP_VERSION%%.so -lib/tulip/view/libParallelCoordinatesView-%%TULIP_VERSION%%.so -lib/tulip/view/libPixelOrientedView-%%TULIP_VERSION%%.so -lib/tulip/view/libPythonScriptView-%%TULIP_VERSION%%.so -lib/tulip/view/libSOMView-%%TULIP_VERSION%%.so -lib/tulip/view/libScatterPlot2DView-%%TULIP_VERSION%%.so -lib/tulip/view/libTableView-%%TULIP_VERSION%%.so -share/pixmaps/tulip.png -%%DATADIR%%/AUTHORS -%%DATADIR%%/COPYING.LESSER -%%DATADIR%%/FindGLEW.cmake -%%DATADIR%%/FindQtX.cmake -%%DATADIR%%/FindTULIP.cmake -%%DATADIR%%/TulipUseFile.cmake -%%DATADIR%%/apiFiles/PyQt4.api -%%DATADIR%%/apiFiles/Python-2.4.api -%%DATADIR%%/apiFiles/Python-2.5.api -%%DATADIR%%/apiFiles/Python-2.6.api -%%DATADIR%%/apiFiles/Python-2.7.api -%%DATADIR%%/apiFiles/Python-3.1.api -%%DATADIR%%/apiFiles/Python-3.2.api -%%DATADIR%%/apiFiles/Python-3.3.api -%%DATADIR%%/apiFiles/Python-3.4.api -%%DATADIR%%/apiFiles/Python-3.5.api -%%DATADIR%%/apiFiles/tulip.api -%%DATADIR%%/apiFiles/tulipgui.api -%%DATADIR%%/apiFiles/tulipogl.api -%%DATADIR%%/bitmaps/arrowSprite.png -%%DATADIR%%/bitmaps/candiSprite.png -%%DATADIR%%/bitmaps/colorscales/Accent_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Accent_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Accent_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Accent_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Accent_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Accent_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BiologicalHeatMap.png -%%DATADIR%%/bitmaps/colorscales/BlackPink.png -%%DATADIR%%/bitmaps/colorscales/BlackRedYellowWhite.png -%%DATADIR%%/bitmaps/colorscales/Blue.png -%%DATADIR%%/bitmaps/colorscales/BlueGreenYellow.png -%%DATADIR%%/bitmaps/colorscales/Blues_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Blues_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Blues_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Blues_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Blues_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Blues_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Blues_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BrBG_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Brown.png -%%DATADIR%%/bitmaps/colorscales/BrownCyan.png -%%DATADIR%%/bitmaps/colorscales/BuGn_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuGn_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuGn_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuGn_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuGn_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuGn_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuGn_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuPu_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuPu_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuPu_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuPu_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuPu_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuPu_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/BuPu_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/CMYK.png -%%DATADIR%%/bitmaps/colorscales/Dark2_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Dark2_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Dark2_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Dark2_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Dark2_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Dark2_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GnBu_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GnBu_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GnBu_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GnBu_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GnBu_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GnBu_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GnBu_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/GreenRed.png -%%DATADIR%%/bitmaps/colorscales/Greens_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greens_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greens_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greens_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greens_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greens_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greens_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greys_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greys_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greys_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greys_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greys_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greys_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Greys_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/MentheGrenadine.png -%%DATADIR%%/bitmaps/colorscales/OrRd_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/OrRd_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/OrRd_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/OrRd_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/OrRd_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/OrRd_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/OrRd_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/OrangeBlue.png -%%DATADIR%%/bitmaps/colorscales/Oranges_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Oranges_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Oranges_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Oranges_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Oranges_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Oranges_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Oranges_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PRGn_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Paired_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel1_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel1_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel1_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel1_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel1_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel1_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel1_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel2_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel2_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel2_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel2_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel2_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pastel2_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PiYG_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Pink.png -%%DATADIR%%/bitmaps/colorscales/PuBuGn_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBuGn_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBuGn_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBuGn_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBuGn_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBuGn_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBuGn_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBu_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBu_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBu_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBu_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBu_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBu_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuBu_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuOr_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuRd_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuRd_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuRd_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuRd_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuRd_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuRd_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/PuRd_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Purples_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Purples_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Purples_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Purples_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Purples_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Purples_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Purples_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Rainbow.png -%%DATADIR%%/bitmaps/colorscales/RdBu_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdBu_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdGy_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdPu_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdPu_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdPu_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdPu_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdPu_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdPu_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdPu_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlBu_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/RdYlGn_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Red.png -%%DATADIR%%/bitmaps/colorscales/RedBlue.png -%%DATADIR%%/bitmaps/colorscales/RedYellow.png -%%DATADIR%%/bitmaps/colorscales/Reds_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Reds_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Reds_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Reds_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Reds_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Reds_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Reds_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set1_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set1_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set1_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set1_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set1_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set1_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set1_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set2_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set2_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set2_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set2_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set2_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set2_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_12_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Set3_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_10_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_11_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Spectral_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/Temperature.png -%%DATADIR%%/bitmaps/colorscales/YlGnBu_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGnBu_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGnBu_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGnBu_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGnBu_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGnBu_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGnBu_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGn_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGn_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGn_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGn_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGn_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGn_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlGn_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrBr_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrBr_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrBr_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrBr_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrBr_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrBr_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrBr_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrRd_3_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrRd_4_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrRd_5_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrRd_6_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrRd_7_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrRd_8_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/colorscales/YlOrRd_9_from_ColorBrewer.org.png -%%DATADIR%%/bitmaps/cylinderTexture.png -%%DATADIR%%/bitmaps/edgeBlomSprite.png -%%DATADIR%%/bitmaps/edgeSpring.png -%%DATADIR%%/bitmaps/font.ttf -%%DATADIR%%/bitmaps/fontawesome-webfont.ttf -%%DATADIR%%/bitmaps/fontawesome-webfont.woff -%%DATADIR%%/bitmaps/fontawesome-webfont.woff2 -%%DATADIR%%/bitmaps/fontb.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono_Bold.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuMono/DejaVuMono_Italic.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSans/DejaVuSans.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSans/DejaVuSans_Bold.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSans/DejaVuSans_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSans/DejaVuSans_Italic.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSerif/DejaVuSerif.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSerif/DejaVuSerif_Bold.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSerif/DejaVuSerif_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/DejaVuSerif/DejaVuSerif_Italic.ttf -%%DATADIR%%/bitmaps/fonts/FreeMono/FreeMono.ttf -%%DATADIR%%/bitmaps/fonts/FreeMono/FreeMono_Bold.ttf -%%DATADIR%%/bitmaps/fonts/FreeMono/FreeMono_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/FreeMono/FreeMono_Italic.ttf -%%DATADIR%%/bitmaps/fonts/FreeSans/FreeSans.ttf -%%DATADIR%%/bitmaps/fonts/FreeSans/FreeSans_Bold.ttf -%%DATADIR%%/bitmaps/fonts/FreeSans/FreeSans_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/FreeSans/FreeSans_Italic.ttf -%%DATADIR%%/bitmaps/fonts/FreeSerif/FreeSerif.ttf -%%DATADIR%%/bitmaps/fonts/FreeSerif/FreeSerif_Bold.ttf -%%DATADIR%%/bitmaps/fonts/FreeSerif/FreeSerif_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/FreeSerif/FreeSerif_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Garuda/Garuda.ttf -%%DATADIR%%/bitmaps/fonts/Garuda/Garuda_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Garuda/Garuda_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Garuda/Garuda_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Kinnari/Kinnari.ttf -%%DATADIR%%/bitmaps/fonts/Kinnari/Kinnari_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Kinnari/Kinnari_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Kinnari/Kinnari_Italic.ttf -%%DATADIR%%/bitmaps/fonts/LiberationMono/LiberationMono.ttf -%%DATADIR%%/bitmaps/fonts/LiberationMono/LiberationMono_Bold.ttf -%%DATADIR%%/bitmaps/fonts/LiberationMono/LiberationMono_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/LiberationMono/LiberationMono_Italic.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSans/LiberationSans.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSans/LiberationSans_Bold.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSans/LiberationSans_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSans/LiberationSans_Italic.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSerif/LiberationSerif.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSerif/LiberationSerif_Bold.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSerif/LiberationSerif_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/LiberationSerif/LiberationSerif_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Loma/Loma.ttf -%%DATADIR%%/bitmaps/fonts/Loma/Loma_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Loma/Loma_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Loma/Loma_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Norasi/Norasi.ttf -%%DATADIR%%/bitmaps/fonts/Norasi/Norasi_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Norasi/Norasi_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Norasi/Norasi_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Purisa/Purisa.ttf -%%DATADIR%%/bitmaps/fonts/Purisa/Purisa_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Purisa/Purisa_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Purisa/Purisa_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Sawasdee/Sawasdee.ttf -%%DATADIR%%/bitmaps/fonts/Sawasdee/Sawasdee_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Sawasdee/Sawasdee_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Sawasdee/Sawasdee_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgMono/TlwgMono.ttf -%%DATADIR%%/bitmaps/fonts/TlwgMono/TlwgMono_Bold.ttf -%%DATADIR%%/bitmaps/fonts/TlwgMono/TlwgMono_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgMono/TlwgMono_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypewriter/TlwgTypewriter.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypewriter/TlwgTypewriter_Bold.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypewriter/TlwgTypewriter_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypewriter/TlwgTypewriter_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypist/TlwgTypist.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypist/TlwgTypist_Bold.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypist/TlwgTypist_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypist/TlwgTypist_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypo/TlwgTypo.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypo/TlwgTypo_Bold.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypo/TlwgTypo_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/TlwgTypo/TlwgTypo_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Ubuntu/Ubuntu.ttf -%%DATADIR%%/bitmaps/fonts/Ubuntu/Ubuntu_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Ubuntu/Ubuntu_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Ubuntu/Ubuntu_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Umpush/Umpush.ttf -%%DATADIR%%/bitmaps/fonts/Umpush/Umpush_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Umpush/Umpush_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Umpush/Umpush_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Waree/Waree.ttf -%%DATADIR%%/bitmaps/fonts/Waree/Waree_Bold.ttf -%%DATADIR%%/bitmaps/fonts/Waree/Waree_Bold_Italic.ttf -%%DATADIR%%/bitmaps/fonts/Waree/Waree_Italic.ttf -%%DATADIR%%/bitmaps/halfCylinderTexture.png -%%DATADIR%%/bitmaps/logo.bmp -%%DATADIR%%/bitmaps/logo32x32.ico -%%DATADIR%%/bitmaps/logolabri.jpg -%%DATADIR%%/bitmaps/radialGradientTexture.png -%%DATADIR%%/bitmaps/roundTexture.png -%%DATADIR%%/bitmaps/samplePictures/1221.png -%%DATADIR%%/bitmaps/samplePictures/1531.png -%%DATADIR%%/bitmaps/samplePictures/1861.jpg -%%DATADIR%%/bitmaps/titlebarGradient.png -%%DATADIR%%/bitmaps/tulip-file-icon.ico -%%DATADIR%%/bitmaps/tulip.ico -%%DATADIR%%/bitmaps/welcomelogo.bmp -%%DATADIR%%/wizards/README.txt -%%DATADIR%%/wizards/tlpalgorithm/algorithm.cmake -%%DATADIR%%/wizards/tlpalgorithm/algorithmplugin.cpp -%%DATADIR%%/wizards/tlpalgorithm/algorithmplugin.h -%%DATADIR%%/wizards/tlpalgorithm/logo.png -%%DATADIR%%/wizards/tlpalgorithm/wizard.xml -%%DATADIR%%/wizards/tlpexport/export.cmake -%%DATADIR%%/wizards/tlpexport/exportplugin.cpp -%%DATADIR%%/wizards/tlpexport/exportplugin.h -%%DATADIR%%/wizards/tlpexport/logo.png -%%DATADIR%%/wizards/tlpexport/wizard.xml -%%DATADIR%%/wizards/tlpimport/import.cmake -%%DATADIR%%/wizards/tlpimport/importplugin.cpp -%%DATADIR%%/wizards/tlpimport/importplugin.h -%%DATADIR%%/wizards/tlpimport/logo.png -%%DATADIR%%/wizards/tlpimport/wizard.xml -%%DATADIR%%/wizards/tlpinteractor/interactor.cmake -%%DATADIR%%/wizards/tlpinteractor/interactor.cpp -%%DATADIR%%/wizards/tlpinteractor/interactor.h -%%DATADIR%%/wizards/tlpinteractor/logo.png -%%DATADIR%%/wizards/tlpinteractor/wizard.xml -%%DATADIR%%/wizards/tlpmain/logo.png -%%DATADIR%%/wizards/tlpmain/main.cmake -%%DATADIR%%/wizards/tlpmain/main.cpp -%%DATADIR%%/wizards/tlpmain/wizard.xml -%%DATADIR%%/wizards/tlpproperty/logo.png -%%DATADIR%%/wizards/tlpproperty/property.cmake -%%DATADIR%%/wizards/tlpproperty/propertyplugin.cpp -%%DATADIR%%/wizards/tlpproperty/propertyplugin.h -%%DATADIR%%/wizards/tlpproperty/wizard.xml -%%DATADIR%%/wizards/tlpview/logo.png -%%DATADIR%%/wizards/tlpview/view.cmake -%%DATADIR%%/wizards/tlpview/view.cpp -%%DATADIR%%/wizards/tlpview/view.h -%%DATADIR%%/wizards/tlpview/wizard.xml |