From owner-svn-ports-head@freebsd.org Sat Oct 27 00:52:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59E3C10CE595; Sat, 27 Oct 2018 00:52:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0E31F725D9; Sat, 27 Oct 2018 00:52:30 +0000 (UTC) (envelope-from jbeich@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E4D1F942; Sat, 27 Oct 2018 00:52:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9R0qT8d012357; Sat, 27 Oct 2018 00:52:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9R0qTU6012356; Sat, 27 Oct 2018 00:52:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810270052.w9R0qTU6012356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 27 Oct 2018 00:52:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483072 - head/games/spring/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/games/spring/files X-SVN-Commit-Revision: 483072 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Oct 2018 00:52:30 -0000 Author: jbeich Date: Sat Oct 27 00:52:29 2018 New Revision: 483072 URL: https://svnweb.freebsd.org/changeset/ports/483072 Log: games/spring: unbreak with boost 1.69 CMake Error at /usr/local/share/cmake/Modules/FindBoost.cmake:2049 (message): Unable to find the requested Boost libraries. Boost version: 1.69.0 Boost include path: /usr/local/include Could not find the following Boost libraries: boost_signals Some (but not all) of the required Boost libraries were found. You may need to install these additional Boost libraries. Alternatively, set BOOST_LIBRARYDIR to the directory containing Boost libraries or BOOST_ROOT to the location of Boost. Call Stack (most recent call first): CMakeLists.txt:245 (FIND_PACKAGE) PR: 232525 Added: head/games/spring/files/patch-boost-1.69 (contents, props changed) Added: head/games/spring/files/patch-boost-1.69 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/spring/files/patch-boost-1.69 Sat Oct 27 00:52:29 2018 (r483072) @@ -0,0 +1,31 @@ +https://github.com/spring/spring/commit/a385d9d7715a + +CMake Error at /usr/local/share/cmake/Modules/FindBoost.cmake:2049 (message): + Unable to find the requested Boost libraries. + + Boost version: 1.69.0 + + Boost include path: /usr/local/include + + Could not find the following Boost libraries: + + boost_signals + + Some (but not all) of the required Boost libraries were found. You may + need to install these additional Boost libraries. Alternatively, set + BOOST_LIBRARYDIR to the directory containing Boost libraries or BOOST_ROOT + to the location of Boost. +Call Stack (most recent call first): + CMakeLists.txt:245 (FIND_PACKAGE) + +--- CMakeLists.txt.orig 2014-10-07 20:09:51 UTC ++++ CMakeLists.txt +@@ -242,7 +242,7 @@ if (MINGW) + set(SDL2_INCLUDE_DIR "${MINGWLIBS}/include/SDL2") + endif (MINGW) + +-FIND_PACKAGE(Boost 1.47.0 COMPONENTS thread regex program_options system chrono signals filesystem REQUIRED) ++FIND_PACKAGE(Boost 1.47.0 COMPONENTS thread regex program_options system chrono filesystem REQUIRED) + FIND_PACKAGE(Boost 1.47.0 COMPONENTS timer) + INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR}) +