From owner-svn-ports-all@freebsd.org Sun Dec 31 03:15:45 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D4A0E85168; Sun, 31 Dec 2017 03:15:45 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38E427D839; Sun, 31 Dec 2017 03:15:45 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBV3FiUe091088; Sun, 31 Dec 2017 03:15:44 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBV3Fir3091086; Sun, 31 Dec 2017 03:15:44 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201712310315.vBV3Fir3091086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sun, 31 Dec 2017 03:15:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457666 - in head/science/InsightToolkit: . files X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: in head/science/InsightToolkit: . files X-SVN-Commit-Revision: 457666 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2017 03:15:45 -0000 Author: woodsb02 Date: Sun Dec 31 03:15:44 2017 New Revision: 457666 URL: https://svnweb.freebsd.org/changeset/ports/457666 Log: science/InsightToolkit: Fix build (r457496 accidentally excluded patch) Added: head/science/InsightToolkit/files/ head/science/InsightToolkit/files/patch-Modules_ThirdParty_MINC_src_libminc_CMakeLists.txt (contents, props changed) Modified: head/science/InsightToolkit/Makefile Modified: head/science/InsightToolkit/Makefile ============================================================================== --- head/science/InsightToolkit/Makefile Sun Dec 31 02:18:15 2017 (r457665) +++ head/science/InsightToolkit/Makefile Sun Dec 31 03:15:44 2017 (r457666) @@ -3,6 +3,7 @@ PORTNAME= InsightToolkit PORTVERSION= 4.13.0 +PORTREVISION= 1 CATEGORIES= science biology MASTER_SITES= SF/itk/itk/${ITK_VER} Added: head/science/InsightToolkit/files/patch-Modules_ThirdParty_MINC_src_libminc_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/InsightToolkit/files/patch-Modules_ThirdParty_MINC_src_libminc_CMakeLists.txt Sun Dec 31 03:15:44 2017 (r457666) @@ -0,0 +1,27 @@ +--- Modules/ThirdParty/MINC/src/libminc/CMakeLists.txt.orig 2017-12-29 06:00:13 UTC ++++ Modules/ThirdParty/MINC/src/libminc/CMakeLists.txt +@@ -387,8 +387,8 @@ SET(LIBMINC_LIBRARIES ${LIBMINC_LIBRARY} ${HDF5_LIBRAR + SET(LIBMINC_STATIC_LIBRARIES ${LIBMINC_LIBRARY_STATIC} ${HDF5_LIBRARIES} ${NIFTI_LIBRARIES} ${ZLIB_LIBRARY}) + + IF(UNIX) +- SET(LIBMINC_LIBRARIES ${LIBMINC_LIBRARIES} m dl ${RT_LIBRARY}) +- SET(LIBMINC_STATIC_LIBRARIES ${LIBMINC_STATIC_LIBRARIES} m dl ${RT_LIBRARY}) ++ SET(LIBMINC_LIBRARIES ${LIBMINC_LIBRARIES} m ${RT_LIBRARY}) ++ SET(LIBMINC_STATIC_LIBRARIES ${LIBMINC_STATIC_LIBRARIES} m ${RT_LIBRARY}) + ENDIF(UNIX) + + SET(minc_LIB_SRCS ${minc2_LIB_SRCS} ${minc_common_SRCS}) +@@ -425,11 +425,11 @@ ENDIF(NOT LIBMINC_USE_SYSTEM_NIFTI AND NOT LIBMINC_EX + #EXPORT(TARGETS ${LIBMINC_LIBRARY} FILE "${LIBMINC_EXPORTED_TARGETS}.cmake") + + IF(UNIX) +- TARGET_LINK_LIBRARIES(${LIBMINC_LIBRARY} m dl ) ++ TARGET_LINK_LIBRARIES(${LIBMINC_LIBRARY} m ) + + IF(LIBMINC_BUILD_SHARED_LIBS) + ADD_LIBRARY(${LIBMINC_LIBRARY_STATIC} STATIC ${minc_LIB_SRCS} ${minc_HEADERS} ${volume_io_LIB_SRCS} ${volume_io_HEADERS} ) +- TARGET_LINK_LIBRARIES(${LIBMINC_LIBRARY_STATIC} ${HDF5_LIBRARY} ${NIFTI_LIBRARIES} ${ZLIB_LIBRARY} ${RT_LIBRARY} m dl ) ++ TARGET_LINK_LIBRARIES(${LIBMINC_LIBRARY_STATIC} ${HDF5_LIBRARY} ${NIFTI_LIBRARIES} ${ZLIB_LIBRARY} ${RT_LIBRARY} m ) + IF(LIBMINC_MINC1_SUPPORT) + TARGET_LINK_LIBRARIES(${LIBMINC_LIBRARY} ${NETCDF_LIBRARY}) + ENDIF(LIBMINC_MINC1_SUPPORT)