FreeBSD Bugzilla – Attachment 217276 Details for
Bug 242549
[REVIVE] science/orthanc-webviewer: Plugin to extend Orthanc with a web viewer of medical images
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Diff / the latest version of science/orthanc-webviewer (orthanc-webviewer-2.6_1, diff based on r545144)
orthanc-webviewer.r545144.diff (text/plain), 7.46 KB, created by
Frank Scholl
on 2020-08-17 09:30:16 UTC
(
hide
)
Description:
Diff / the latest version of science/orthanc-webviewer (orthanc-webviewer-2.6_1, diff based on r545144)
Filename:
MIME Type:
Creator:
Frank Scholl
Created:
2020-08-17 09:30:16 UTC
Size:
7.46 KB
patch
obsolete
>Index: MOVED >=================================================================== >--- MOVED (revision 545144) >+++ MOVED (working copy) >@@ -10174,7 +10174,6 @@ > science/orthanc||2018-06-07|Has expired: Broken for more than 3 months > science/orthanc-dicomweb||2018-06-07|Removed, depends on expired science/orthanc > science/orthanc-postgresql||2018-06-07|Removed, depends on expired science/orthanc >-science/orthanc-webviewer||2018-06-07|Removed, depends on expired science/orthanc > graphics/libkface||2018-06-09|Has expired: No longer maintained upstream > math/scilab-toolbox-sivp||2018-06-09|Has expired: Cannot build with newer opencv > math/clipper|graphics/polyclipping|2018-06-11|Duplicate port >Index: science/Makefile >=================================================================== >--- science/Makefile (revision 545144) >+++ science/Makefile (working copy) >@@ -178,6 +178,7 @@ > SUBDIR += opensim-core > SUBDIR += opensph > SUBDIR += opsin >+ SUBDIR += orthanc-webviewer > SUBDIR += p5-Algorithm-SVMLight > SUBDIR += p5-Chemistry-3DBuilder > SUBDIR += p5-Chemistry-Bond-Find >Index: science/orthanc-webviewer/Makefile >=================================================================== >--- science/orthanc-webviewer/Makefile (nonexistent) >+++ science/orthanc-webviewer/Makefile (working copy) >@@ -0,0 +1,70 @@ >+# Created by: maintainer.freebsd@xpoundit.com >+# $FreeBSD$ >+ >+PORTNAME= orthanc-webviewer >+PORTVERSION= 2.6 >+PORTREVISION= 1 >+CATEGORIES= science >+MASTER_SITES= http://orthanc-server.com/downloads/get.php?path=/plugin-webviewer/:main \ >+ http://orthanc-server.com/downloads/get.php?path=/orthanc/:framework \ >+ http://orthanc.osimis.io/ThirdPartyDownloads/WebViewer/:thirdpartywebviewer \ >+ http://orthanc.osimis.io/ThirdPartyDownloads/:thirdparty >+DISTFILES= OrthancWebViewer-${PORTVERSION}.tar.gz:main \ >+ jsPanel-2.3.3-fixed.zip:thirdpartywebviewer \ >+ cornerstone-0.11.0.zip:thirdpartywebviewer \ >+ jquery-ui-1.11.3.zip:thirdpartywebviewer \ >+ pako-0.2.5.zip:thirdpartywebviewer \ >+ js-url-1.8.6.zip:thirdpartywebviewer \ >+ Orthanc-1.6.1.tar.gz:framework \ >+ Orthanc-1.7.1.tar.gz:framework \ >+ e2fsprogs-1.44.5.tar.gz:thirdparty >+DIST_SUBDIR= orthanc >+EXTRACT_ONLY= OrthancWebViewer-${PORTVERSION}.tar.gz >+ >+MAINTAINER= maintainer.freebsd@xpoundit.com >+COMMENT= Plugin to extend Orthanc with a Web viewer of medical images >+ >+LICENSE= AGPLv3 >+LICENSE_FILE= ${WRKSRC}/COPYING >+ >+BUILD_DEPENDS= ${LOCALBASE}/include/orthanc/OrthancCPlugin.h:science/orthanc >+LIB_DEPENDS= libboost_atomic.so:devel/boost-libs \ >+ libexpat.so:textproc/expat2 \ >+ libgdcmCommon.so:devel/gdcm \ >+ libicudata.so:devel/icu \ >+ libjsoncpp.so:devel/jsoncpp \ >+ libopenjp2.so:graphics/openjpeg \ >+ libsqlite3.so:databases/sqlite3 >+ >+USES= cmake localbase python:build ssl >+ >+WRKSRC= ${WRKDIR}/OrthancWebViewer-${PORTVERSION} >+CMAKE_ARGS= -DUSE_SYSTEM_UUID=OFF \ >+ -DORTHANC_FRAMEWORK_SOURCE=path \ >+ -DORTHANC_FRAMEWORK_ROOT=${WRKSRC}/ThirdPartyDownloads/Orthanc-1.7.1 >+CFLAGS+= -I${LOCALBASE}/include \ >+ -DORTHANC_ENABLE_LOGGING_PLUGIN \ >+ -DNDEBUG >+CXXFLAGS+= -DNDEBUG >+USE_LDCONFIG= yes >+PLIST_FILES= share/orthanc/plugins/libOrthancWebViewer.so \ >+ share/orthanc/plugins/libOrthancWebViewer.so.${PORTVERSION} >+ >+post-extract: >+ ${MKDIR} ${WRKSRC}/ThirdPartyDownloads >+ ${CP} ${DISTDIR}/${DIST_SUBDIR}/jsPanel-2.3.3-fixed.zip ${WRKSRC}/ThirdPartyDownloads >+ ${CP} ${DISTDIR}/${DIST_SUBDIR}/cornerstone-0.11.0.zip ${WRKSRC}/ThirdPartyDownloads >+ ${CP} ${DISTDIR}/${DIST_SUBDIR}/jquery-ui-1.11.3.zip ${WRKSRC}/ThirdPartyDownloads >+ ${CP} ${DISTDIR}/${DIST_SUBDIR}/pako-0.2.5.zip ${WRKSRC}/ThirdPartyDownloads >+ ${CP} ${DISTDIR}/${DIST_SUBDIR}/js-url-1.8.6.zip ${WRKSRC}/ThirdPartyDownloads >+ ${CP} ${DISTDIR}/${DIST_SUBDIR}/e2fsprogs-1.44.5.tar.gz ${WRKSRC}/ThirdPartyDownloads >+ ${CP} ${DISTDIR}/${DIST_SUBDIR}/Orthanc-1.7.1.tar.gz ${WRKSRC}/ThirdPartyDownloads >+ ${TAR} -C ${WRKSRC}/ThirdPartyDownloads -xf ${WRKSRC}/ThirdPartyDownloads/Orthanc-1.7.1.tar.gz >+ >+post-patch: >+ @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/Resources/CMake/*.cmake >+ >+post-build: >+ @cd ${BUILD_WRKSRC} && ./UnitTests >+ >+.include <bsd.port.mk> > >Property changes on: science/orthanc-webviewer/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: science/orthanc-webviewer/distinfo >=================================================================== >--- science/orthanc-webviewer/distinfo (nonexistent) >+++ science/orthanc-webviewer/distinfo (working copy) >@@ -0,0 +1,19 @@ >+TIMESTAMP = 1593007705 >+SHA256 (orthanc/OrthancWebViewer-2.6.tar.gz) = 6c02c57d6d7764131ff4286d947a17f638fff0d62af33fb435ef7b71f2aa5999 >+SIZE (orthanc/OrthancWebViewer-2.6.tar.gz) = 95228 >+SHA256 (orthanc/jsPanel-2.3.3-fixed.zip) = 958a15c7009efbb865da62b5850a3a39661c62696e38b151c7f988f4ac445595 >+SIZE (orthanc/jsPanel-2.3.3-fixed.zip) = 826542 >+SHA256 (orthanc/cornerstone-0.11.0.zip) = 1bada9f1f2981968f72daa352e712abea5cac3e0417fe59176f70a23261f1da9 >+SIZE (orthanc/cornerstone-0.11.0.zip) = 935277 >+SHA256 (orthanc/jquery-ui-1.11.3.zip) = 045b52f293bf4f77c6689569064327495edd9e6434839b78a56299c555130282 >+SIZE (orthanc/jquery-ui-1.11.3.zip) = 400437 >+SHA256 (orthanc/pako-0.2.5.zip) = e493010e1b1af5c149631994365ed31e15722eed2d17cc1d95bd9af151f2005f >+SIZE (orthanc/pako-0.2.5.zip) = 704378 >+SHA256 (orthanc/js-url-1.8.6.zip) = ef2c7f50921ba64ac434eacf025669f1e6f39b5584100ffa8194a3edc08d43d3 >+SIZE (orthanc/js-url-1.8.6.zip) = 54717 >+SHA256 (orthanc/Orthanc-1.6.1.tar.gz) = 86f6e1a79bc93f082fd5243dd4daaf5a2ea05fcdf515cf35f100829c5fe5c4df >+SIZE (orthanc/Orthanc-1.6.1.tar.gz) = 1633929 >+SHA256 (orthanc/Orthanc-1.7.1.tar.gz) = b131c12a0b70a531e5fb2a38ffb258cbced2ab304231a52e491de22d69df8ffc >+SIZE (orthanc/Orthanc-1.7.1.tar.gz) = 1640397 >+SHA256 (orthanc/e2fsprogs-1.44.5.tar.gz) = 2e211fae27ef74d5af4a4e40b10b8df7f87c655933bd171aab4889bfc4e6d1cc >+SIZE (orthanc/e2fsprogs-1.44.5.tar.gz) = 7619237 > >Property changes on: science/orthanc-webviewer/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: science/orthanc-webviewer/pkg-descr >=================================================================== >--- science/orthanc-webviewer/pkg-descr (nonexistent) >+++ science/orthanc-webviewer/pkg-descr (working copy) >@@ -0,0 +1,11 @@ >+Orthanc can be extended by a plugin that brings a Web viewer of medical >+images. The Web viewer is based upon the two following projects: >+ >+Cornerstone (https://github.com/chafey/cornerstone), a client-side JavaScript >+library to display medical images in Web browsers, by Chris Hafey, and >+ >+GDCM (http://sourceforge.net/projects/gdcm/), an open-source implementation >+of the DICOM standard with advanced features for image decoding, by Mathieu >+Malaterre. >+ >+WWW: https://www.orthanc-server.com/static.php?page=web-viewer > >Property changes on: science/orthanc-webviewer/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
maintainer.freebsd
:
maintainer-approval+
Actions:
View
|
Diff
Attachments on
bug 242549
:
209834
|
214833
|
215911
|
217276
|
225065
|
225337
|
225593
|
225648
|
225706