summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--science/orthanc-webviewer/Makefile2
-rw-r--r--science/orthanc-webviewer/files/patch-Plugin_Cache_CacheManager.h11
-rw-r--r--science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancFramework_Sources_SystemToolbox.cpp11
-rw-r--r--science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Engine_PluginsManager.cpp11
-rw-r--r--science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Samples_ModalityWorklists_Plugin.cpp11
-rw-r--r--science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Sources_OrthancConfiguration.cpp11
6 files changed, 56 insertions, 1 deletions
diff --git a/science/orthanc-webviewer/Makefile b/science/orthanc-webviewer/Makefile
index 2c17c776977f..f24a2979d0f4 100644
--- a/science/orthanc-webviewer/Makefile
+++ b/science/orthanc-webviewer/Makefile
@@ -1,6 +1,6 @@
PORTNAME= orthanc-webviewer
DISTVERSION= 2.8
-PORTREVISION= 10
+PORTREVISION= 11
CATEGORIES= science
MASTER_SITES= https://www.orthanc-server.com/downloads/get.php?path=/plugin-webviewer/:main \
https://www.orthanc-server.com/downloads/get.php?path=/orthanc/:framework \
diff --git a/science/orthanc-webviewer/files/patch-Plugin_Cache_CacheManager.h b/science/orthanc-webviewer/files/patch-Plugin_Cache_CacheManager.h
new file mode 100644
index 000000000000..32c8b562e02b
--- /dev/null
+++ b/science/orthanc-webviewer/files/patch-Plugin_Cache_CacheManager.h
@@ -0,0 +1,11 @@
+--- Plugin/Cache/CacheManager.h.orig 2022-02-22 07:33:59 UTC
++++ Plugin/Cache/CacheManager.h
+@@ -29,6 +29,8 @@
+
+ #include <boost/shared_ptr.hpp>
+
++#include <list>
++
+ namespace OrthancPlugins
+ {
+ enum CacheProperty
diff --git a/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancFramework_Sources_SystemToolbox.cpp b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancFramework_Sources_SystemToolbox.cpp
new file mode 100644
index 000000000000..be3a52257299
--- /dev/null
+++ b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancFramework_Sources_SystemToolbox.cpp
@@ -0,0 +1,11 @@
+--- ThirdPartyDownloads/Orthanc-1.11.0/OrthancFramework/Sources/SystemToolbox.cpp.orig 2022-05-09 09:19:44 UTC
++++ ThirdPartyDownloads/Orthanc-1.11.0/OrthancFramework/Sources/SystemToolbox.cpp
+@@ -728,7 +728,7 @@ namespace Orthanc
+
+ MimeType SystemToolbox::AutodetectMimeType(const std::string& path)
+ {
+- std::string extension = boost::filesystem::extension(path);
++ std::string extension = boost::filesystem::path(path).extension().string();
+ Toolbox::ToLowerCase(extension);
+
+ // http://en.wikipedia.org/wiki/Mime_types
diff --git a/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Engine_PluginsManager.cpp b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Engine_PluginsManager.cpp
new file mode 100644
index 000000000000..7e84c746faa1
--- /dev/null
+++ b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Engine_PluginsManager.cpp
@@ -0,0 +1,11 @@
+--- ThirdPartyDownloads/Orthanc-1.11.0/OrthancServer/Plugins/Engine/PluginsManager.cpp.orig 2022-05-09 09:19:44 UTC
++++ ThirdPartyDownloads/Orthanc-1.11.0/OrthancServer/Plugins/Engine/PluginsManager.cpp
+@@ -292,7 +292,7 @@ namespace Orthanc
+ }
+ else
+ {
+- std::string extension = boost::filesystem::extension(it->path());
++ std::string extension = it->path().extension().string();
+ Toolbox::ToLowerCase(extension);
+
+ if (extension == PLUGIN_EXTENSION)
diff --git a/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Samples_ModalityWorklists_Plugin.cpp b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Samples_ModalityWorklists_Plugin.cpp
new file mode 100644
index 000000000000..dad50da54856
--- /dev/null
+++ b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Plugins_Samples_ModalityWorklists_Plugin.cpp
@@ -0,0 +1,11 @@
+--- ThirdPartyDownloads/Orthanc-1.11.0/OrthancServer/Plugins/Samples/ModalityWorklists/Plugin.cpp.orig 2022-05-09 09:19:44 UTC
++++ ThirdPartyDownloads/Orthanc-1.11.0/OrthancServer/Plugins/Samples/ModalityWorklists/Plugin.cpp
+@@ -163,7 +163,7 @@ OrthancPluginErrorCode Callback(OrthancPluginWorklistA
+ if (type == fs::regular_file ||
+ type == fs::reparse_file) // cf. BitBucket issue #11
+ {
+- std::string extension = fs::extension(it->path());
++ std::string extension = it->path().extension().string();
+ std::transform(extension.begin(), extension.end(), extension.begin(), tolower); // Convert to lowercase
+
+ if (extension == ".wl")
diff --git a/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Sources_OrthancConfiguration.cpp b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Sources_OrthancConfiguration.cpp
new file mode 100644
index 000000000000..9df1a25a54a7
--- /dev/null
+++ b/science/orthanc-webviewer/files/patch-ThirdPartyDownloads_Orthanc-1.11.0_OrthancServer_Sources_OrthancConfiguration.cpp
@@ -0,0 +1,11 @@
+--- ThirdPartyDownloads/Orthanc-1.11.0/OrthancServer/Sources/OrthancConfiguration.cpp.orig 2022-05-09 09:19:44 UTC
++++ ThirdPartyDownloads/Orthanc-1.11.0/OrthancServer/Sources/OrthancConfiguration.cpp
+@@ -113,7 +113,7 @@ namespace Orthanc
+ {
+ if (!is_directory(it->status()))
+ {
+- std::string extension = boost::filesystem::extension(it->path());
++ std::string extension = it->path().extension().string();
+ Toolbox::ToLowerCase(extension);
+
+ if (extension == ".json")