Added
Link Here
|
1 |
# Created by: maintainer.freebsd@xpoundit.com |
2 |
|
3 |
PORTNAME= orthanc-postgresql |
4 |
DISTVERSION= 4.0 |
5 |
CATEGORIES= science |
6 |
MASTER_SITES= https://www.orthanc-server.com/downloads/get.php?path=/plugin-postgresql/:main \ |
7 |
https://www.orthanc-server.com/downloads/get.php?path=/orthanc/:framework \ |
8 |
https://orthanc.osimis.io/ThirdPartyDownloads/:thirdparty |
9 |
DISTFILES= OrthancPostgreSQL-${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= OrthancPostgreSQL-${PORTVERSION}.tar.gz |
14 |
|
15 |
MAINTAINER= maintainer.freebsd@xpoundit.com |
16 |
COMMENT= Orthanc plugin to use PostgreSQL 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= libboost_filesystem.so:devel/boost-libs \ |
23 |
libgdcmCommon.so:devel/gdcm \ |
24 |
libjsoncpp.so:devel/jsoncpp \ |
25 |
libpugixml.so:textproc/pugixml |
26 |
RUN_DEPENDS= Orthanc:science/orthanc |
27 |
|
28 |
USES= cmake localbase pgsql:11+ python:build ssl |
29 |
USE_LDCONFIG= yes |
30 |
|
31 |
WRKSRC= ${WRKDIR}/OrthancPostgreSQL-${PORTVERSION} |
32 |
|
33 |
CMAKE_SOURCE_PATH= ${WRKSRC}/PostgreSQL |
34 |
CMAKE_OFF= BUILD_UNIT_TESTS USE_SYSTEM_ORTHANC_SDK USE_SYSTEM_UUID |
35 |
CMAKE_ARGS= -DORTHANC_FRAMEWORK_ROOT=${WRKSRC}/PostgreSQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources \ |
36 |
-DORTHANC_FRAMEWORK_SOURCE=path |
37 |
CXXFLAGS+= -I${LOCALBASE}/include -DNDEBUG |
38 |
LDFLAGS+= -L${LOCALBASE}/lib |
39 |
CFLAGS+= -DORTHANC_ENABLE_LOGGING_PLUGIN -DNDEBUG |
40 |
|
41 |
post-extract: |
42 |
${MKDIR} ${WRKSRC}/PostgreSQL/ThirdPartyDownloads |
43 |
${CP} ${DISTDIR}/${DIST_SUBDIR}/e2fsprogs-1.44.5.tar.gz ${WRKSRC}/PostgreSQL/ThirdPartyDownloads |
44 |
${CP} ${DISTDIR}/${DIST_SUBDIR}/Orthanc-1.9.3.tar.gz ${WRKSRC}/PostgreSQL/ThirdPartyDownloads |
45 |
${TAR} -C ${WRKSRC}/PostgreSQL/ThirdPartyDownloads -xf ${WRKSRC}/PostgreSQL/ThirdPartyDownloads/Orthanc-1.9.3.tar.gz |
46 |
|
47 |
.include <bsd.port.mk> |