Index: head/devel/cmake/Makefile =================================================================== --- head/devel/cmake/Makefile (revision 379104) +++ head/devel/cmake/Makefile (revision 379105) @@ -1,74 +1,74 @@ # Created by: Kyle Martin # $FreeBSD$ PORTNAME= cmake -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.3 PORTREVISION?= 0 CATEGORIES= devel MASTER_SITES= http://www.cmake.org/files/v3.1/ MAINTAINER= kde@FreeBSD.org COMMENT?= Cross-platform Makefile generator LICENSE= BSD3CLAUSE USE_KDE4= # env CONFIGURE_ENV= MAKE=make CONFIGURE_ARGS= --prefix=${PREFIX} \ --datadir="/${DATADIR_REL}" \ --docdir="/${DOCSDIR_REL}" \ --sphinx-man \ --system-libs \ --parallel=${MAKE_JOBS_NUMBER} \ --init="${PATCHDIR}/InitialCache.cmake" .if !defined(CMAKE_MODULES) OPTIONS_DEFINE= DOCS OPTIONS_SUB= yes HAS_CONFIGURE= yes BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ libexpat.so:${PORTSDIR}/textproc/expat2 RUN_DEPENDS= ${LOCALBASE}/share/cmake/Modules/CMake.cmake:${PORTSDIR}/devel/cmake-modules .endif .include .if defined(STRIP) && ${STRIP} != "" && !defined(WITH_DEBUG) INSTALL_TARGET= install/strip .endif .if !defined(CMAKE_MODULES) # CMake >= 3.1.0 needs libarchive3 because it calls # archive_entry_copy_sourcepath_w and archive_write_set_format_7zip. .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000009 LIB_DEPENDS+= libarchive.so.13:${PORTSDIR}/archivers/libarchive .endif # ${OPSYS} == FreeBSD && ${OSVERSION} < 1000009 .endif # !defined(CMAKE_MODULES) post-patch: @(${FIND} ${WRKSRC}/Modules -name "*.cmake" -print0; \ ${FIND} ${WRKSRC}/Tests -name "CMakeLists.txt" -print0 ) | \ ${XARGS} -0 -n 100 ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g; \ s,/usr/X11R6,${LOCALBASE},g' @${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' \ ${WRKSRC}/Source/cmLocalGenerator.cxx \ ${WRKSRC}/Source/CPack/cmCPackGenerator.cxx \ ${WRKSRC}/bootstrap @${REINPLACE_CMD} -e 's,/opt/kde4,${KDE4_PREFIX},g' \ ${WRKSRC}/Modules/FindKDE4.cmake @${REINPLACE_CMD} -e 's,/usr/include,${LOCALBASE}/include,' \ ${WRKSRC}/Modules/FindDCMTK.cmake @${FIND} ${WRKSRC} -name "*.bak" -delete -o -name "*.orig" -delete # cmake-gui(1) is installed by devel/cmake-gui. Remove the man page's source to # prevent it from being built/installed by devel/cmake. ${RM} ${WRKSRC}/Help/manual/cmake-gui.1.rst .if !defined(CMAKE_MODULES) post-install: ${INSTALL_DATA} ${WRKSRC}/Auxiliary/cmake-mode.el ${STAGEDIR}${PREFIX}/share/emacs/site-lisp .endif .include Index: head/devel/cmake/distinfo =================================================================== --- head/devel/cmake/distinfo (revision 379104) +++ head/devel/cmake/distinfo (revision 379105) @@ -1,2 +1,2 @@ -SHA256 (cmake-3.1.1.tar.gz) = b58694e545d51cde5756a894f53107e3d9e469360e1d92e7f6892b55ebc0bebf -SIZE (cmake-3.1.1.tar.gz) = 5959421 +SHA256 (cmake-3.1.3.tar.gz) = 45f4d3fa8a2f61cc092ae461aac4cac1bab4ac6706f98274ea7f314dd315c6d0 +SIZE (cmake-3.1.3.tar.gz) = 5959549 Index: head/devel/cmake-gui/Makefile =================================================================== --- head/devel/cmake-gui/Makefile (revision 379104) +++ head/devel/cmake-gui/Makefile (revision 379105) @@ -1,53 +1,53 @@ # $FreeBSD$ PORTNAME= cmake -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.3 CATEGORIES= devel MASTER_SITES= http://www.cmake.org/files/v3.1/ PKGNAMESUFFIX= -gui MAINTAINER= kde@FreeBSD.org COMMENT= Qt-based GUI for CMake LICENSE= BSD3CLAUSE BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ libexpat.so:${PORTSDIR}/textproc/expat2 USE_QT5= core gui widgets buildtools_build qmake_build USES= cmake:run desktop-file-utils shared-mime-info CMAKE_ARGS= -DBUILD_QtDialog:bool=on \ -DBUILD_CursesDialog:BOOL=OFF \ -DSPHINX_MAN:BOOL=ON \ -DCMAKE_USE_SYSTEM_LIBRARIES:BOOL=ON \ -DCMAKE_DATA_DIR:STRING="/${DATADIR_REL}" \ -DCMAKE_DOC_DIR:STRING="/${DOCSDIR_REL}" ALL_TARGET= cmake-gui documentation INSTALL_WRKSRC= ${WRKSRC}/Source/QtDialog DISTINFO_FILE= ${.CURDIR}/../cmake/distinfo .include # CMake >= 3.1.0 needs libarchive3 because it calls # archive_entry_copy_sourcepath_w and archive_write_set_format_7zip. .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000009 LIB_DEPENDS+= libarchive.so.13:${PORTSDIR}/archivers/libarchive .endif post-patch: @(${FIND} ${WRKSRC}/Modules -name "*.cmake" -print0; \ ${FIND} ${WRKSRC}/Tests -name "CMakeLists.txt" -print0 ) | \ ${XARGS} -0 -n 100 ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g; \ s,/usr/X11R6,${LOCALBASE},g' pre-install: ${LN} -sf ${CMAKE_BIN} ${WRKSRC}/bin post-install: ${INSTALL_MAN} ${WRKSRC}/Utilities/Sphinx/man/cmake-gui.1 \ ${STAGEDIR}${PREFIX}/man/man1 .include