Added
Link Here
|
1 |
# Created by: maintainer.freebsd@xpoundit.com |
2 |
|
3 |
PORTNAME= orthanc-mysql |
4 |
PORTVERSION= 4.0 |
5 |
CATEGORIES= science |
6 |
MASTER_SITES= https://www.orthanc-server.com/downloads/get.php?path=/plugin-mysql/:main \ |
7 |
https://www.orthanc-server.com/downloads/get.php?path=/orthanc/:framework \ |
8 |
https://orthanc.osimis.io/ThirdPartyDownloads/:thirdparty |
9 |
DISTFILES= OrthancMySQL-${PORTVERSION}.tar.gz:main \ |
10 |
Orthanc-1.9.3.tar.gz:framework \ |
11 |
e2fsprogs-1.44.5.tar.gz:thirdparty |
12 |
DIST_SUBDIR= orthanc |
13 |
EXTRACT_ONLY= OrthancMySQL-${PORTVERSION}.tar.gz |
14 |
|
15 |
MAINTAINER= maintainer.freebsd@xpoundit.com |
16 |
COMMENT= Orthanc plugin to use MySQL or MariaDB for indexing or storage |
17 |
|
18 |
LICENSE= AGPLv3 |
19 |
LICENSE_FILE= ${WRKSRC}/COPYING |
20 |
|
21 |
BUILD_DEPENDS= ${LOCALBASE}/include/orthanc/OrthancCDatabasePlugin.h:science/orthanc |
22 |
LIB_DEPENDS= libgdcmCommon.so:devel/gdcm \ |
23 |
libboost_filesystem.so:devel/boost-libs \ |
24 |
libcurl.so:ftp/curl \ |
25 |
libjsoncpp.so:devel/jsoncpp \ |
26 |
libpugixml.so:textproc/pugixml \ |
27 |
libgtest.so:devel/googletest |
28 |
RUN_DEPENDS= Orthanc:science/orthanc |
29 |
|
30 |
USES= cmake mysql:client localbase python:build ssl |
31 |
|
32 |
WRKSRC= ${WRKDIR}/OrthancMySQL-${PORTVERSION} |
33 |
CMAKE_SOURCE_PATH= ${WRKSRC}/MySQL |
34 |
CMAKE_ARGS= -DUSE_SYSTEM_UUID=OFF \ |
35 |
-DUSE_SYSTEM_ORTHANC_SDK=OFF \ |
36 |
-DORTHANC_FRAMEWORK_SOURCE=path \ |
37 |
-DORTHANC_FRAMEWORK_ROOT=${WRKSRC}/MySQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources \ |
38 |
-DBUILD_UNIT_TESTS=OFF |
39 |
CXXFLAGS+= -I${LOCALBASE}/include \ |
40 |
-DNDEBUG |
41 |
CFLAGS+= -DORTHANC_ENABLE_LOGGING_PLUGIN \ |
42 |
-DNDEBUG |
43 |
USE_LDCONFIG= yes |
44 |
|
45 |
post-extract: |
46 |
${MKDIR} ${WRKSRC}/MySQL/ThirdPartyDownloads |
47 |
${CP} ${DISTDIR}/${DIST_SUBDIR}/e2fsprogs-1.44.5.tar.gz ${WRKSRC}/MySQL/ThirdPartyDownloads |
48 |
${CP} ${DISTDIR}/${DIST_SUBDIR}/Orthanc-1.9.3.tar.gz ${WRKSRC}/MySQL/ThirdPartyDownloads |
49 |
${TAR} -C ${WRKSRC}/MySQL/ThirdPartyDownloads -xf ${WRKSRC}/MySQL/ThirdPartyDownloads/Orthanc-1.9.3.tar.gz |
50 |
|
51 |
.include <bsd.port.mk> |