summaryrefslogtreecommitdiff
path: root/math/cadabra2/files/patch-CMakeLists.txt
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-10-21 09:01:10 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-10-21 09:01:10 +0000
commitf9604d1c29c0918cbb9f30f74ebc52a2a0b00783 (patch)
treea59f7bfade1a507774284e2d3169b7a8b42bdae3 /math/cadabra2/files/patch-CMakeLists.txt
parentsecurity/revealrk: update 1.2.1 -> 1.2.2 (diff)
math/cadabra2: update 2.0.816 -> 2.0.930
- Unbreaks GUI by applying two patches: - Patch in boost headers to prevent EINPROGRESS mishandling https://github.com/zaphoyd/websocketpp/issues/563 - Patch in websocketpp fixing IPv4 vs. IPv6 mismatch https://github.com/zaphoyd/websocketpp/issues/587 - GUI option is made default - Clones icons for the GUI app cadabra2-gui - Adds "USE_TEX=texmf texhash" to allow for unincluded latex macros, and to make tex hash local packages installed by cadabra2 - Verified that cadabra2 GUI now works fine - it is able to run many examples from their website. PR: 213329 Submitted by: Yuri Victorovich <yuri@rawbw.com> (maintainer)
Notes
Notes: svn path=/head/; revision=424395
Diffstat (limited to 'math/cadabra2/files/patch-CMakeLists.txt')
-rw-r--r--math/cadabra2/files/patch-CMakeLists.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/math/cadabra2/files/patch-CMakeLists.txt b/math/cadabra2/files/patch-CMakeLists.txt
deleted file mode 100644
index cbec85133cd9..000000000000
--- a/math/cadabra2/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,15 +0,0 @@
---- CMakeLists.txt.orig 2016-06-20 20:19:43 UTC
-+++ CMakeLists.txt
-@@ -107,7 +107,11 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PAT
-
- add_subdirectory(core)
- add_subdirectory(client_server)
--add_subdirectory(frontend)
- add_subdirectory(tests)
- add_subdirectory(web2 EXCLUDE_FROM_ALL)
-
-+option(ENABLE_FRONTEND "Enable the UI frontend" OFF)
-+if(ENABLE_FRONTEND)
-+ add_subdirectory(frontend)
-+endif()
-+