Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Nov 2016 12:30:04 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r427160 - head/x11/leechcraft/files
Message-ID:  <201611261230.uAQCU4iw093206@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611261230.uAQCU4iw093206>