mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 19:36:28 -04:00
- Fix paths for man page, DOCSDIR and locales via patches - Use CMake instead of GNU configure to build the port - Remove patch/patch-data_Makefile.am ChangeLog: https://github.com/andrejv/wxmaxima/releases/tag/Version-17.05.0
19 lines
684 B
Text
19 lines
684 B
Text
--- info/CMakeLists.txt.orig 2017-05-23 18:48:40 UTC
|
|
+++ info/CMakeLists.txt
|
|
@@ -6,7 +6,7 @@ file(GLOB IMAGE_FILES *.jpg *.png)
|
|
if(WIN32)
|
|
install(FILES wxmaxima.html DESTINATION wxMaxima/help)
|
|
else()
|
|
- install(FILES wxmaxima.html DESTINATION share/doc/wxmaxima)
|
|
+ install(FILES wxmaxima.html DESTINATION share/doc/wxMaxima)
|
|
endif()
|
|
#else()
|
|
# message(STATUS "Makeinfo found at ${MAKEINFO}")
|
|
@@ -31,5 +31,5 @@ endif()
|
|
if(WIN32)
|
|
install(FILES ${IMAGE_FILES} DESTINATION wxMaxima/help)
|
|
else()
|
|
- install(FILES ${IMAGE_FILES} DESTINATION share/doc/wxmaxima)
|
|
+ install(FILES ${IMAGE_FILES} DESTINATION share/doc/wxMaxima)
|
|
endif()
|
|
\ No newline at end of file
|