FreeBSD Bugzilla – Attachment 209833 Details for
Bug 242548
[REVIVE] science/orthanc-postgresql: Plugins to use PostgreSQL for indexing and storage in Orthanc
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
.shar of the orthanc-postgresql port
orthanc-postgresql.shar (text/plain), 3.99 KB, created by
Frank Scholl
on 2019-12-10 15:36:02 UTC
(
hide
)
Description:
.shar of the orthanc-postgresql port
Filename:
MIME Type:
Creator:
Frank Scholl
Created:
2019-12-10 15:36:02 UTC
Size:
3.99 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># orthanc-postgresql ># orthanc-postgresql/distinfo ># orthanc-postgresql/pkg-descr ># orthanc-postgresql/Makefile ># >echo c - orthanc-postgresql >mkdir -p orthanc-postgresql > /dev/null 2>&1 >echo x - orthanc-postgresql/distinfo >sed 's/^X//' >orthanc-postgresql/distinfo << '09be478cf3c436d24a44f738a45df907' >XTIMESTAMP = 1573113980 >XSHA256 (orthanc/OrthancPostgreSQL-3.2.tar.gz) = 5d1b17e6bbbaacbecbae6460c6e4067eec57dafe167644a2182df64061ba714a >XSIZE (orthanc/OrthancPostgreSQL-3.2.tar.gz) = 211944 >XSHA256 (orthanc/Orthanc-1.5.8.tar.gz) = da8aa4ce6e6942c8190e3910a595ee36555ed002e75c151395705bee25b73836 >XSIZE (orthanc/Orthanc-1.5.8.tar.gz) = 1561300 >XSHA256 (orthanc/e2fsprogs-1.44.5.tar.gz) = 2e211fae27ef74d5af4a4e40b10b8df7f87c655933bd171aab4889bfc4e6d1cc >XSIZE (orthanc/e2fsprogs-1.44.5.tar.gz) = 7619237 >09be478cf3c436d24a44f738a45df907 >echo x - orthanc-postgresql/pkg-descr >sed 's/^X//' >orthanc-postgresql/pkg-descr << '64053f0fbc61f9359e342b6272095049' >XOrthanc can be extended with two plugins that replace the default SQLite >Xengine of Orthanc with a PostgreSQL back-end. >X >XWWW: https://www.orthanc-server.com/static.php?page=postgresql >64053f0fbc61f9359e342b6272095049 >echo x - orthanc-postgresql/Makefile >sed 's/^X//' >orthanc-postgresql/Makefile << '5f975f5765c481986a0a0cc6c6280f9f' >X# Created by: maintainer.freebsd@xpoundit.com >X# $FreeBSD$ >X >XPORTNAME= orthanc-postgresql >XPORTVERSION= 3.2 >XPORTREVISION= 1 >XCATEGORIES= science >X >XMASTER_SITES= http://orthanc-server.com/downloads/get.php?path=/plugin-postgresql/:main \ >X http://orthanc-server.com/downloads/get.php?path=/orthanc/:framework \ >X http://orthanc.osimis.io/ThirdPartyDownloads/:thirdparty >XDISTFILES= OrthancPostgreSQL-${PORTVERSION}.tar.gz:main \ >X Orthanc-1.5.8.tar.gz:framework \ >X e2fsprogs-1.44.5.tar.gz:thirdparty >X >XDISTNAME= OrthancPostgreSQL-${PORTVERSION} >XDIST_SUBDIR= orthanc >X >XMAINTAINER= maintainer.freebsd@xpoundit.com >XCOMMENT= Plugins to use PostgreSQL as the database back-end of Orthanc instead of SQLite >X >XLICENSE= AGPLv3 >XLICENSE_FILE= ${WRKSRC}/COPYING >X >XBUILD_DEPENDS= ${LOCALBASE}/include/orthanc/OrthancCDatabasePlugin.h:science/orthanc >XLIB_DEPENDS= libgdcmCommon.so:devel/gdcm \ >X libboost_filesystem.so:devel/boost-libs \ >X libboost_thread.so:devel/boost-libs \ >X libboost_system.so:devel/boost-libs \ >X libboost_date_time.so:devel/boost-libs \ >X libboost_regex.so:devel/boost-libs \ >X libboost_locale.so:devel/boost-libs \ >X libjsoncpp.so:devel/jsoncpp \ >X libpugixml.so:textproc/pugixml \ >X libgtest.so:devel/googletest >X >XUSES= cmake pgsql localbase python:build >X >XCMAKE_SOURCE_PATH= ${WRKSRC}/PostgreSQL >XCMAKE_ARGS= -DUSE_SYSTEM_UUID=OFF \ >X -DUSE_SYSTEM_ORTHANC_SDK=OFF \ >X -DORTHANC_FRAMEWORK_SOURCE=path \ >X -DORTHANC_FRAMEWORK_ROOT=${WRKSRC}/PostgreSQL/ThirdPartyDownloads/Orthanc-1.5.8 \ >X -DBUILD_UNIT_TESTS=OFF >X >XCXXFLAGS+= -I${LOCALBASE}/include >XLDFLAGS+= -L${LOCALBASE}/lib >XCFLAGS+= -DORTHANC_ENABLE_LOGGING_PLUGIN >X >XPLIST_FILES= share/orthanc/plugins/libOrthancPostgreSQLIndex.so \ >X share/orthanc/plugins/libOrthancPostgreSQLIndex.so.${PORTVERSION} \ >X share/orthanc/plugins/libOrthancPostgreSQLStorage.so \ >X share/orthanc/plugins/libOrthancPostgreSQLStorage.so.${PORTVERSION} >X >Xpost-extract: >X ${MKDIR} ${WRKSRC}/PostgreSQL/ThirdPartyDownloads >X ${CP} ${DISTDIR}/${DIST_SUBDIR}/e2fsprogs-1.44.5.tar.gz ${WRKSRC}/PostgreSQL/ThirdPartyDownloads >X ${CP} ${DISTDIR}/${DIST_SUBDIR}/Orthanc-1.5.8.tar.gz ${WRKSRC}/PostgreSQL/ThirdPartyDownloads >X ${TAR} -C ${WRKSRC}/PostgreSQL/ThirdPartyDownloads -xf ${WRKSRC}/PostgreSQL/ThirdPartyDownloads/Orthanc-1.5.8.tar.gz >X >Xpost-patch: >X @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/Resources/CMake/*.cmake >X >X.include <bsd.port.mk> >5f975f5765c481986a0a0cc6c6280f9f >exit >
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 Raw
Actions:
View
Attachments on
bug 242548
:
209833
|
214832
|
215910
|
217275
|
225064
|
225339
|
225592
|
225647
|
225707