diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2016-12-09 11:40:59 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2016-12-09 11:40:59 +0000 |
commit | 2daa0c16115ca6352328e3ebb818624837d1d705 (patch) | |
tree | 055443d4189f2911783c9a6c6c8840282d8e3823 /devel/cmake-gui | |
parent | Update aircraft to their latest version (diff) |
Update devel/cmake* to 3.7.1 [1]
Due to an upstream commit [2] we need now to pass
CMAKE_INSTALL_MANDIR:PATH="share/man" in the
devel/llvm-* ports, and fix the plist of net/remmina.
Further add an upstream patch to math/plplot to
fix the build with 3.7.1.
[1] https://cmake.org/cmake/help/v3.7/release/3.7.html
[2] https://github.com/kitware/cmake/commit/956054
PR: 214975
Approved by: rakuco (mentor)
Exp-run by: antoine
Notes
Notes:
svn path=/head/; revision=428179
Diffstat (limited to 'devel/cmake-gui')
-rw-r--r-- | devel/cmake-gui/Makefile | 2 | ||||
-rw-r--r-- | devel/cmake-gui/files/patch-git_5ec17e61 | 26 |
2 files changed, 1 insertions, 27 deletions
diff --git a/devel/cmake-gui/Makefile b/devel/cmake-gui/Makefile index 9a52888fd313..917bd56c604a 100644 --- a/devel/cmake-gui/Makefile +++ b/devel/cmake-gui/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cmake -PORTVERSION= 3.6.3 +PORTVERSION= 3.7.1 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ PKGNAMESUFFIX= -gui diff --git a/devel/cmake-gui/files/patch-git_5ec17e61 b/devel/cmake-gui/files/patch-git_5ec17e61 deleted file mode 100644 index 6347997356f5..000000000000 --- a/devel/cmake-gui/files/patch-git_5ec17e61 +++ /dev/null @@ -1,26 +0,0 @@ -While not strictly necessary because of patch-git_86dd2427, this patch helps -CMake determine the maximum size of the command line and determine whether -ninja generator needs to use .rsp files. - -commit 5ec17e610609b8ca80cf8ce4f33f8c03ea48a090 -Author: Raphael Kubo da Costa <rakuco@FreeBSD.org> -Date: Fri Jul 15 12:46:53 2016 +0200 - - Ninja: Generalize check for sysconf(3) call - - Use `sysconf(_SC_ARG_MAX)` wherever `_SC_ARG_MAX` is available instead - of hard-coding an incomplete list of operating systems that implement - it. In particular, it is available on BSD platforms that were not - previously listed. - ---- Source/cmNinjaNormalTargetGenerator.cxx -+++ Source/cmNinjaNormalTargetGenerator.cxx -@@ -374,7 +374,7 @@ static int calculateCommandLineLengthLimit(int linkRuleLength) - #ifdef _WIN32 - 8000, - #endif --#if defined(__APPLE__) || defined(__HAIKU__) || defined(__linux) -+#if defined(_SC_ARG_MAX) - // for instance ARG_MAX is 2096152 on Ubuntu or 262144 on Mac - ((int)sysconf(_SC_ARG_MAX)) - 1000, - #endif |