View | Details | Raw Unified | Return to bug 242547 | Differences between
and this patch

Collapse All | Expand All

(-)MOVED (-1 lines)
Lines 10172-10178 Link Here
10172
audio/abcmidi||2018-06-07|Has expired: Broken for more than 6 months
10172
audio/abcmidi||2018-06-07|Has expired: Broken for more than 6 months
10173
benchmarks/netpipe||2018-06-07|Has expired: Broken for more than 6 months
10173
benchmarks/netpipe||2018-06-07|Has expired: Broken for more than 6 months
10174
science/orthanc||2018-06-07|Has expired: Broken for more than 3 months
10174
science/orthanc||2018-06-07|Has expired: Broken for more than 3 months
10175
science/orthanc-dicomweb||2018-06-07|Removed, depends on expired science/orthanc
10176
science/orthanc-postgresql||2018-06-07|Removed, depends on expired science/orthanc
10175
science/orthanc-postgresql||2018-06-07|Removed, depends on expired science/orthanc
10177
science/orthanc-webviewer||2018-06-07|Removed, depends on expired science/orthanc
10176
science/orthanc-webviewer||2018-06-07|Removed, depends on expired science/orthanc
10178
graphics/libkface||2018-06-09|Has expired: No longer maintained upstream
10177
graphics/libkface||2018-06-09|Has expired: No longer maintained upstream
(-)science/Makefile (+1 lines)
Lines 178-183 Link Here
178
    SUBDIR += opensim-core
178
    SUBDIR += opensim-core
179
    SUBDIR += opensph
179
    SUBDIR += opensph
180
    SUBDIR += opsin
180
    SUBDIR += opsin
181
    SUBDIR += orthanc-dicomweb
181
    SUBDIR += p5-Algorithm-SVMLight
182
    SUBDIR += p5-Algorithm-SVMLight
182
    SUBDIR += p5-Chemistry-3DBuilder
183
    SUBDIR += p5-Chemistry-3DBuilder
183
    SUBDIR += p5-Chemistry-Bond-Find
184
    SUBDIR += p5-Chemistry-Bond-Find
(-)science/orthanc-dicomweb/Makefile (+69 lines)
Line 0 Link Here
1
# Created by: maintainer.freebsd@xpoundit.com
2
# $FreeBSD$
3
4
PORTNAME=	orthanc-dicomweb
5
PORTVERSION=	1.2
6
CATEGORIES=	science
7
MASTER_SITES=	http://orthanc-server.com/downloads/get.php?path=/plugin-dicom-web/:main \
8
		http://orthanc-server.com/downloads/get.php?path=/orthanc/:framework \
9
		http://orthanc.osimis.io/ThirdPartyDownloads/:thirdparty \
10
		http://orthanc.osimis.io/ThirdPartyDownloads/dicom-web/:thirdpartydicomweb
11
DISTFILES=	OrthancDicomWeb-${PORTVERSION}.tar.gz:main \
12
		Orthanc-1.7.1.tar.gz:framework \
13
		e2fsprogs-1.44.5.tar.gz:thirdparty \
14
		bootstrap-4.3.1.zip:thirdpartydicomweb \
15
		vuejs-2.6.10.tar.gz:thirdpartydicomweb \
16
		axios-0.19.0.tar.gz:thirdpartydicomweb \
17
		Font-Awesome-4.7.0.tar.gz:thirdpartydicomweb \
18
		bootstrap-vue-2.0.0-rc.24-dist.tar.gz:thirdpartydicomweb \
19
		babel-polyfill-6.26.0.min.js.gz:thirdpartydicomweb
20
DIST_SUBDIR=	orthanc
21
EXTRACT_ONLY=	OrthancDicomWeb-${PORTVERSION}.tar.gz
22
23
MAINTAINER=	maintainer.freebsd@xpoundit.com
24
COMMENT=	Plugin to bring support of the DICOMweb standard into Orthanc
25
26
LICENSE=	AGPLv3
27
LICENSE_FILE=	${WRKSRC}/COPYING
28
29
BUILD_DEPENDS=	${LOCALBASE}/include/orthanc/OrthancCPlugin.h:science/orthanc
30
LIB_DEPENDS=	libboost_atomic.so:devel/boost-libs \
31
		libexpat.so:textproc/expat2 \
32
		libgdcmCommon.so:devel/gdcm \
33
		libicudata.so:devel/icu \
34
		libjsoncpp.so:devel/jsoncpp \
35
		libopenjp2.so:graphics/openjpeg \
36
		libpugixml.so:textproc/pugixml
37
38
USES=		cmake localbase python:build ssl
39
40
WRKSRC=		${WRKDIR}/OrthancDicomWeb-${PORTVERSION}
41
CMAKE_ARGS=	-DUSE_SYSTEM_UUID=OFF \
42
		-DORTHANC_FRAMEWORK_SOURCE=path \
43
		-DORTHANC_FRAMEWORK_ROOT=${WRKSRC}/ThirdPartyDownloads/Orthanc-1.7.1
44
CFLAGS+=	-DORTHANC_ENABLE_LOGGING_PLUGIN \
45
		-DNDEBUG
46
CXXFLAGS+=	-DNDEBUG
47
USE_LDCONFIG=	yes
48
PLIST_FILES=	share/orthanc/plugins/libOrthancDicomWeb.so \
49
		share/orthanc/plugins/libOrthancDicomWeb.so.${PORTVERSION}
50
51
post-extract:
52
		${MKDIR} ${WRKSRC}/ThirdPartyDownloads
53
		${CP} ${DISTDIR}/${DIST_SUBDIR}/e2fsprogs-1.44.5.tar.gz ${WRKSRC}/ThirdPartyDownloads
54
		${CP} ${DISTDIR}/${DIST_SUBDIR}/bootstrap-4.3.1.zip ${WRKSRC}/ThirdPartyDownloads
55
		${CP} ${DISTDIR}/${DIST_SUBDIR}/vuejs-2.6.10.tar.gz ${WRKSRC}/ThirdPartyDownloads
56
		${CP} ${DISTDIR}/${DIST_SUBDIR}/axios-0.19.0.tar.gz ${WRKSRC}/ThirdPartyDownloads
57
		${CP} ${DISTDIR}/${DIST_SUBDIR}/Font-Awesome-4.7.0.tar.gz ${WRKSRC}/ThirdPartyDownloads
58
		${CP} ${DISTDIR}/${DIST_SUBDIR}/bootstrap-vue-2.0.0-rc.24-dist.tar.gz ${WRKSRC}/ThirdPartyDownloads
59
		${CP} ${DISTDIR}/${DIST_SUBDIR}/babel-polyfill-6.26.0.min.js.gz ${WRKSRC}/ThirdPartyDownloads
60
		${CP} ${DISTDIR}/${DIST_SUBDIR}/Orthanc-1.7.1.tar.gz ${WRKSRC}/ThirdPartyDownloads
61
		${TAR} -C ${WRKSRC}/ThirdPartyDownloads -xf ${WRKSRC}/ThirdPartyDownloads/Orthanc-1.7.1.tar.gz
62
63
post-patch:
64
	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/Resources/CMake/*.cmake
65
66
do-test:
67
	@cd ${BUILD_WRKSRC} && ./UnitTests
68
69
.include <bsd.port.mk>
(-)science/orthanc-dicomweb/distinfo (+19 lines)
Line 0 Link Here
1
TIMESTAMP = 1596475311
2
SHA256 (orthanc/OrthancDicomWeb-1.2.tar.gz) = d5082d2b5ea15868c5b320deeec8cdb7b586a59a5b252174e469c5890a36bd7c
3
SIZE (orthanc/OrthancDicomWeb-1.2.tar.gz) = 155997
4
SHA256 (orthanc/Orthanc-1.7.1.tar.gz) = b131c12a0b70a531e5fb2a38ffb258cbced2ab304231a52e491de22d69df8ffc
5
SIZE (orthanc/Orthanc-1.7.1.tar.gz) = 1640397
6
SHA256 (orthanc/e2fsprogs-1.44.5.tar.gz) = 2e211fae27ef74d5af4a4e40b10b8df7f87c655933bd171aab4889bfc4e6d1cc
7
SIZE (orthanc/e2fsprogs-1.44.5.tar.gz) = 7619237
8
SHA256 (orthanc/bootstrap-4.3.1.zip) = c7fcae50c070250e4e1ae36a670e5ee8fe9d529eb3f1a03c527f8223ce3f61bc
9
SIZE (orthanc/bootstrap-4.3.1.zip) = 2705432
10
SHA256 (orthanc/vuejs-2.6.10.tar.gz) = e3d900cd9266b5bed9bb6d575fc9ab6787e79e7ad21c01ee1277bff5453121f2
11
SIZE (orthanc/vuejs-2.6.10.tar.gz) = 1576461
12
SHA256 (orthanc/axios-0.19.0.tar.gz) = 29577c6085b090b4e4a99392fcdd582fb6bbcb49b2aaf2cc7b7fa3874529b380
13
SIZE (orthanc/axios-0.19.0.tar.gz) = 125193
14
SHA256 (orthanc/Font-Awesome-4.7.0.tar.gz) = de512ba0e1dead382bbfce372cde74b3f18971d876fffb635ee9333f0db05d43
15
SIZE (orthanc/Font-Awesome-4.7.0.tar.gz) = 2672776
16
SHA256 (orthanc/bootstrap-vue-2.0.0-rc.24-dist.tar.gz) = bc62cc91c2c3c24ddd29321d91be629e72db6129413ab6b8111ce13c2a57775b
17
SIZE (orthanc/bootstrap-vue-2.0.0-rc.24-dist.tar.gz) = 2448005
18
SHA256 (orthanc/babel-polyfill-6.26.0.min.js.gz) = 087d3d2d6212afb418f50491858f7f055cb54defb6351d6c5d008f662a2a95c2
19
SIZE (orthanc/babel-polyfill-6.26.0.min.js.gz) = 34718
(-)science/orthanc-dicomweb/pkg-descr (+12 lines)
Line 0 Link Here
1
Out-of-the-box, Orthanc comes with its own REST API. This API allows full
2
CRUD operations (create, read, update and delete) on the set of DICOM
3
resources that Orthanc stores, together with commands that trigger calls to
4
the DICOM protocol (C-Echo SCU/SCP, C-Store SCU/SCP, C-Find SCU/SCP, C-Move
5
SCU/SCP).
6
7
The present plugin extends the native REST API of Orthanc with a reference
8
implementation of the DICOMweb standard. Loading the plugin into Orthanc will
9
provide support of WADO-URI (previously known simply as WADO), WADO-RS,
10
QIDO-RS and STOW-RS.
11
12
WWW: https://www.orthanc-server.com/static.php?page=dicomweb

Return to bug 242547