1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-03 10:29:15 -04:00
ports/math/cvc4/files/patch-doc_CMakeLists.txt
Fernando Apesteguía 549b27dafd math/cvc4: update to 1.7
ChangeLog:

https://github.com/CVC4/CVC4/releases/tag/1.7

* New Features:
    Proofs:
        Support for bit-vector proofs with eager bitblasting
    Strings:
        Support for str.replaceall operator.
        New option --re-elim
    SyGuS:
        Support for abduction (--sygus-abduct)

* Improvements:
    Strings:
        Significantly better performance

* Changes:
    API change: Expr::iffExpr() is renamed to Expr::eqExpr()
    Compiling the language bindings now requires SWIG 3 instead of SWIG 2.
    The CVC3 compatibility layer has been removed.
    The build system now uses CMake instead of Autotools
2019-08-01 15:20:28 +00:00

22 lines
995 B
Text

--- doc/CMakeLists.txt.orig 2019-06-06 21:29:05 UTC
+++ doc/CMakeLists.txt
@@ -34,10 +34,10 @@ configure_file(
#-----------------------------------------------------------------------------#
# Install man pages
-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cvc4.1 DESTINATION share/man/man1)
-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cvc4.5 DESTINATION share/man/man5)
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cvc4.1 DESTINATION man/man1)
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cvc4.5 DESTINATION man/man5)
if(ENABLE_PORTFOLIO)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cvc4.1 DESTINATION share/man/man1
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/cvc4.1 DESTINATION man/man1
RENAME pcvc4.1)
endif()
install(FILES
@@ -45,4 +45,4 @@ install(FILES
${CMAKE_CURRENT_BINARY_DIR}/libcvc4parser.3
${CMAKE_CURRENT_BINARY_DIR}/options.3cvc
${CMAKE_CURRENT_BINARY_DIR}/SmtEngine.3cvc
- DESTINATION share/man/man3)
+ DESTINATION man/man3)