From owner-svn-ports-head@freebsd.org Sat Nov 26 12:30:05 2016 Return-Path: Delivered-To: svn-ports-head@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 7865CC55295; Sat, 26 Nov 2016 12:30:05 +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 mx1.freebsd.org (Postfix) with ESMTPS id 47C5FFE; Sat, 26 Nov 2016 12:30:05 +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 uAQCU4WU093207; Sat, 26 Nov 2016 12:30:04 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAQCU4iw093206; Sat, 26 Nov 2016 12:30:04 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611261230.uAQCU4iw093206@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 26 Nov 2016 12:30:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427160 - head/x11/leechcraft/files X-SVN-Group: ports-head 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.23 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, 26 Nov 2016 12:30:05 -0000 Author: jbeich Date: Sat Nov 26 12:30:04 2016 New Revision: 427160 URL: https://svnweb.freebsd.org/changeset/ports/427160 Log: x11/leechcraft: unbreak with hunspell 1.5 -- Could NOT find HUNSPELL (missing: HUNSPELL_LIBRARIES) [...] CMake Error: The following variables are used in this project, but they are set to NOTFOUND. Please set them or make sure they are set and tested correctly in the CMake files: HUNSPELL_LIBRARIES (ADVANCED) linked by target "leechcraft_rosenthal" in directory src/plugins/rosenthal PR: 214837 Approved by: portmgr blanket Added: head/x11/leechcraft/files/patch-plugins_rosenthal_cmake_FindHunspell.cmake (contents, props changed) Added: head/x11/leechcraft/files/patch-plugins_rosenthal_cmake_FindHunspell.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/leechcraft/files/patch-plugins_rosenthal_cmake_FindHunspell.cmake Sat Nov 26 12:30:04 2016 (r427160) @@ -0,0 +1,12 @@ +--- plugins/rosenthal/cmake/FindHunspell.cmake.orig 2014-07-28 18:35:44 UTC ++++ plugins/rosenthal/cmake/FindHunspell.cmake +@@ -28,7 +28,8 @@ if (WIN32) + ${HUNSPELL_DIR}/src/win_api/Release_dll/libhunspell) + endif () + +-find_library (HUNSPELL_LIBRARIES NAMES hunspell-1.3 hunspell-1.2 libhunspell HINTS ${HUNSPELL_DIR} ${PROBE_DIR}) ++find_library (HUNSPELL_LIBRARIES NAMES hunspell-1.5 hunspell-1.4 ++ hunspell-1.3 hunspell-1.2 libhunspell HINTS ${HUNSPELL_DIR} ${PROBE_DIR}) + find_path (HUNSPELL_INCLUDE_DIR hunspell/hunspell.hxx HINTS ${HUNSPELL_DIR} ${HUNSPELL_INCLUDE_WIN32}) + + # handle the QUIETLY and REQUIRED arguments and set HUNSPELL_FOUND to TRUE if