aboutsummaryrefslogtreecommitdiffstats
path: root/science
diff options
context:
space:
mode:
authoramdmi3 <amdmi3@FreeBSD.org>2015-08-17 17:17:23 +0800
committeramdmi3 <amdmi3@FreeBSD.org>2015-08-17 17:17:23 +0800
commitd055824f001a0ed93c2d641bf390a88ba9761979 (patch)
tree0a4a68197283eae9c7f84c1a858ab58e67129baa /science
parentcd085585a7df933510d9d637146e0affb11af9ab (diff)
downloadfreebsd-ports-gnome-d055824f001a0ed93c2d641bf390a88ba9761979.tar.gz
freebsd-ports-gnome-d055824f001a0ed93c2d641bf390a88ba9761979.tar.zst
freebsd-ports-gnome-d055824f001a0ed93c2d641bf390a88ba9761979.zip
- Update to 1.2
PR: 202087 Submitted by: mp39590@gmail.com (maintainer)
Diffstat (limited to 'science')
-rw-r--r--science/orthanc-postgresql/Makefile2
-rw-r--r--science/orthanc-postgresql/distinfo4
-rw-r--r--science/orthanc-postgresql/files/patch-CMakeLists.txt54
3 files changed, 3 insertions, 57 deletions
diff --git a/science/orthanc-postgresql/Makefile b/science/orthanc-postgresql/Makefile
index 7b81f3a19f5d..d6386d12745f 100644
--- a/science/orthanc-postgresql/Makefile
+++ b/science/orthanc-postgresql/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= orthanc-portgresql
-PORTVERSION= 1.1
+PORTVERSION= 1.2
CATEGORIES= science graphics
MASTER_SITES= http://orthanc-server.com/downloads/get.php?path=/plugin-postgresql/
DISTNAME= OrthancPostgreSQL-${PORTVERSION}
diff --git a/science/orthanc-postgresql/distinfo b/science/orthanc-postgresql/distinfo
index b0d1370e86ab..3b8bfba03c2e 100644
--- a/science/orthanc-postgresql/distinfo
+++ b/science/orthanc-postgresql/distinfo
@@ -1,2 +1,2 @@
-SHA256 (orthanc/OrthancPostgreSQL-1.1.tar.gz) = f68d98a1f282ad31ac3fde2ff11449db840a5daf8a9605f3a9d5678691bd9b84
-SIZE (orthanc/OrthancPostgreSQL-1.1.tar.gz) = 56750
+SHA256 (orthanc/OrthancPostgreSQL-1.2.tar.gz) = 629bf07a7365d9570b340f336cc2367b30fe6244d32ca881d7a3a0ea9802e8a9
+SIZE (orthanc/OrthancPostgreSQL-1.2.tar.gz) = 81424
diff --git a/science/orthanc-postgresql/files/patch-CMakeLists.txt b/science/orthanc-postgresql/files/patch-CMakeLists.txt
deleted file mode 100644
index 9ba3de08dafb..000000000000
--- a/science/orthanc-postgresql/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,54 +0,0 @@
---- CMakeLists.txt.orig 2015-07-03 09:22:49 UTC
-+++ CMakeLists.txt
-@@ -32,6 +32,7 @@ set(USE_SYSTEM_JSONCPP ON CACHE BOOL "Us
- set(USE_SYSTEM_BOOST ON CACHE BOOL "Use the system version of Boost")
- set(USE_SYSTEM_GOOGLE_TEST ON CACHE BOOL "Use the system version of Google Test")
- set(USE_SYSTEM_LIBPQ ON CACHE BOOL "Use the system version of the PostgreSQL client library")
-+set(BUILD_UNIT_TESTS ON CACHE BOOL "Build UnitTests")
-
- # Distribution-specific settings
- set(USE_GTEST_DEBIAN_SOURCE_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)")
-@@ -47,7 +48,10 @@ include(${CMAKE_SOURCE_DIR}/Resources/CM
- include(${CMAKE_SOURCE_DIR}/Resources/CMake/BoostConfiguration.cmake)
- include(${CMAKE_SOURCE_DIR}/Resources/CMake/PostgreSQLConfiguration.cmake)
- include(${CMAKE_SOURCE_DIR}/Resources/CMake/JsonCppConfiguration.cmake)
--include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleTestConfiguration.cmake)
-+
-+if (BUILD_UNIT_TESTS)
-+ include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleTestConfiguration.cmake)
-+endif()
-
-
- # Check that the Orthanc SDK headers are available or download them
-@@ -123,14 +127,21 @@ set_target_properties(OrthancPostgreSQLI
- SOVERSION ${ORTHANC_POSTGRESQL_VERSION}
- )
-
-+install(
-+ TARGETS OrthancPostgreSQLStorage OrthancPostgreSQLIndex
-+ RUNTIME DESTINATION lib # Destination for Windows
-+ LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux
-+)
-
--add_executable(UnitTests
-- ${CORE_SOURCES}
-- ${GTEST_SOURCES}
-- ${AUTOGENERATED_SOURCES}
-- ${CMAKE_SOURCE_DIR}/IndexPlugin/PostgreSQLWrapper.cpp
-- ${CMAKE_SOURCE_DIR}/StoragePlugin/PostgreSQLStorageArea.cpp
-- ${CMAKE_SOURCE_DIR}/UnitTestsSources/UnitTestsMain.cpp
-- ${CMAKE_SOURCE_DIR}/UnitTestsSources/PostgreSQLTests.cpp
-- ${CMAKE_SOURCE_DIR}/UnitTestsSources/PostgreSQLWrapperTests.cpp
-- )
-+if (BUILD_UNIT_TESTS)
-+ add_executable(UnitTests
-+ ${CORE_SOURCES}
-+ ${GTEST_SOURCES}
-+ ${AUTOGENERATED_SOURCES}
-+ ${CMAKE_SOURCE_DIR}/IndexPlugin/PostgreSQLWrapper.cpp
-+ ${CMAKE_SOURCE_DIR}/StoragePlugin/PostgreSQLStorageArea.cpp
-+ ${CMAKE_SOURCE_DIR}/UnitTestsSources/UnitTestsMain.cpp
-+ ${CMAKE_SOURCE_DIR}/UnitTestsSources/PostgreSQLTests.cpp
-+ ${CMAKE_SOURCE_DIR}/UnitTestsSources/PostgreSQLWrapperTests.cpp
-+ )
-+endif()