diff options
author | Rene Ladan <rene@FreeBSD.org> | 2019-05-09 15:03:38 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2019-05-09 15:03:38 +0000 |
commit | b8b8fa5aeb1df824ed5374149d0a7377dd0c1cd9 (patch) | |
tree | 67d5f350f6c92b847a528d27db9960acb190f10e /graphics/appleseed/files/patch-CMakeLists.txt | |
parent | Restore "hs-" package name prefix for Haskell packages. (diff) |
Remove expired ports:
2019-05-08 databases/ruby-odbc: Broken for more than 6 months
2019-05-08 databases/rubygem-dbd-odbc: Broken for more than 6 months
2019-05-08 devel/dlangui: Broken for more than 6 months
2019-05-08 editors/dlangide: Broken for more than 6 months
2019-05-08 emulators/desmume: Broken for more than 6 months
2019-05-08 emulators/yabause: Broken for more than 6 months
2019-05-08 emulators/yape: Broken for more than 6 months
2019-05-08 games/armagetron: Broken for more than 6 months
2019-05-08 games/boswars: Broken for more than 6 months
2019-05-08 games/ceferino: Broken for more than 6 months
2019-05-08 games/chanta: Broken for more than 6 months
2019-05-08 games/d2x-xl: Broken for more than 6 months
2019-05-08 games/drcreep: Broken for more than 6 months
2019-05-08 games/frobtads: Broken for more than 6 months
2019-05-08 games/paintown: Broken for more than 6 months
2019-05-08 games/pykawari: Broken for more than 6 months
2019-05-08 games/stepmania-devel: Broken for more than 6 months
2019-05-08 games/tinymux: Broken for more than 6 months
2019-05-08 games/voxelands: Broken for more than 6 months
2019-05-08 games/voxelands-server: Broken for more than 6 months
2019-05-08 games/warsow: Broken for more than 6 months
2019-05-08 graphics/appleseed: Broken for more than 6 months
2019-05-08 graphics/apvlv: Broken for more than 6 months
2019-05-08 graphics/qslim: Broken for more than 6 months
2019-05-08 graphics/rawstudio: Broken for more than 6 months
2019-05-08 graphics/tulip: Broken for more than 6 months
2019-05-08 lang/qore: Broken for more than 6 months
2019-05-08 mail/milter-manager: Broken for more than 6 months
2019-05-08 math/goblin: Broken for more than 6 months
2019-05-08 math/mosesdecoder: Broken for more than 6 months
2019-05-08 multimedia/asdcplib: Broken for more than 6 months
2019-05-08 net/crtmpserver: Broken for more than 6 months
2019-05-08 net/linuxigd: Abandonware; use net/miniupnpd instead
2019-05-08 net/openafs: Broken for more than 6 months
2019-05-08 security/quantis: Broken for more than 6 months
2019-05-08 sysutils/boxbackup: Broken for more than 6 months
2019-05-08 sysutils/grub2-efi: Broken for more than 6 months
2019-05-08 sysutils/grub2-pcbsd: Broken for more than 6 months
2019-05-08 sysutils/mdcp: Broken for more than 6 months
2019-05-08 sysutils/sbsigntool: Broken for more than 6 months
2019-05-08 www/py-cherrypy-old: Lates version is in tree and no dependent ports
Diffstat (limited to 'graphics/appleseed/files/patch-CMakeLists.txt')
-rw-r--r-- | graphics/appleseed/files/patch-CMakeLists.txt | 85 |
1 files changed, 0 insertions, 85 deletions
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 () |