mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
update wxMaxima to 26.05.0
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
COMMENT = wxWidgets GUI for the computer algebra system maxima
|
||||
|
||||
V = 26.01.0
|
||||
V = 26.05.0
|
||||
GH_ACCOUNT = wxMaxima-developers
|
||||
GH_PROJECT = wxmaxima
|
||||
GH_TAGNAME = Version-$V
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
SHA256 (wxmaxima-Version-26.01.0.tar.gz) = FxbE8nY2+QlnP2PtDHwwYhaD4163vwWl1QEPpn8Dl/Y=
|
||||
SIZE (wxmaxima-Version-26.01.0.tar.gz) = 16304931
|
||||
SHA256 (wxmaxima-Version-26.05.0.tar.gz) = E4DFjSfhsuDq7lQ5NsoYhlioKfw5fLngZOiAMgnjR18=
|
||||
SIZE (wxmaxima-Version-26.05.0.tar.gz) = 16356222
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
wxMaxima should not rely on PWD being set
|
||||
|
||||
Index: CMakeLists.txt
|
||||
--- CMakeLists.txt.orig
|
||||
+++ CMakeLists.txt
|
||||
@@ -220,7 +220,11 @@ add_definitions(-DwxNO_UNSAFE_WXSTRING_CONV)
|
||||
if(WIN32 OR CYGWIN)
|
||||
file(RELATIVE_PATH RELPATH_TO_PO4A_PO_DIRECTORY "${CMAKE_BINARY_DIR}" "${CMAKE_SOURCE_DIR}/locales/manual")
|
||||
else()
|
||||
- file(RELATIVE_PATH RELPATH_TO_PO4A_PO_DIRECTORY "$ENV{PWD}" "${CMAKE_SOURCE_DIR}/locales/manual")
|
||||
+ set(_pwd "$ENV{PWD}")
|
||||
+ if(NOT _pwd OR NOT IS_ABSOLUTE "${_pwd}" OR NOT IS_DIRECTORY "${_pwd}")
|
||||
+ set(_pwd "${CMAKE_BINARY_DIR}")
|
||||
+ endif()
|
||||
+ file(RELATIVE_PATH RELPATH_TO_PO4A_PO_DIRECTORY "${_pwd}" "${CMAKE_SOURCE_DIR}/locales/manual")
|
||||
endif()
|
||||
file(GLOB MANUAL_LANGUAGES "${CMAKE_CURRENT_SOURCE_DIR}/locales/manual/*.po")
|
||||
list(TRANSFORM MANUAL_LANGUAGES REPLACE ".*/(.*).po$" "\\1")
|
||||
@@ -30,8 +30,10 @@ share/doc/wxmaxima/wxMaxima_configuration_001.png
|
||||
share/doc/wxmaxima/wxmaxima.css
|
||||
share/doc/wxmaxima/wxmaxima.de.html
|
||||
share/doc/wxmaxima/wxmaxima.es.html
|
||||
share/doc/wxmaxima/wxmaxima.fr.html
|
||||
share/doc/wxmaxima/wxmaxima.html
|
||||
share/doc/wxmaxima/wxmaxima.it.html
|
||||
share/doc/wxmaxima/wxmaxima.ru.html
|
||||
share/doc/wxmaxima/wxmaxima.svg
|
||||
share/doc/wxmaxima/wxmaxima.tr.html
|
||||
share/doc/wxmaxima/wxmaxima.uk.html
|
||||
|
||||
Reference in New Issue
Block a user