diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-11-26 20:30:31 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-11-26 20:30:31 +0800 |
commit | 6f64881033ae606aacbb7910aa91cd827258da64 (patch) | |
tree | d07ec2caf2f5304809baad5a2c19e68915086016 /editors | |
parent | 95b59c90678d94bdcd510a87cb9ad57045692221 (diff) | |
download | freebsd-ports-gnome-6f64881033ae606aacbb7910aa91cd827258da64.tar.gz freebsd-ports-gnome-6f64881033ae606aacbb7910aa91cd827258da64.tar.zst freebsd-ports-gnome-6f64881033ae606aacbb7910aa91cd827258da64.zip |
editors/codelite: unbreak with hunspell 1.5
**
** NOTICE ** Could not locate libhunspell. SpellChecker plugin will not be build
** NOTICE ** Try installing libhunspell-dev package
**
[...]
===> Building package for codelite-9.2_2
pkg-static: Unable to access file ${STAGEDIR}${PREFIX}/lib/codelite/SpellCheck.so: No such file or directory
pkg-static: DEVELOPER_MODE: Plist error, missing file: lib/codelite/SpellCheck.so
pkg-static: Unable to access file ${STAGEDIR}${PREFIX}/share/codelite/dics/en_GB.aff: No such file or directory
pkg-static: DEVELOPER_MODE: Plist error, missing file: share/codelite/dics/en_GB.aff
pkg-static: Unable to access file ${STAGEDIR}${PREFIX}/share/codelite/dics/en_GB.dic: No such file or directory
pkg-static: DEVELOPER_MODE: Plist error, missing file: share/codelite/dics/en_GB.dic
pkg-static: Unable to access file ${STAGEDIR}${PREFIX}/share/codelite/dics/en_US.aff: No such file or directory
pkg-static: DEVELOPER_MODE: Plist error, missing file: share/codelite/dics/en_US.aff
pkg-static: Unable to access file ${STAGEDIR}${PREFIX}/share/codelite/dics/en_US.dic: No such file or directory
pkg-static: DEVELOPER_MODE: Plist error, missing file: share/codelite/dics/en_US.dic
*** Error code 1
PR: 214837
Approved by: portmgr blanket
Diffstat (limited to 'editors')
-rw-r--r-- | editors/codelite/files/patch-SpellChecker_CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/codelite/files/patch-SpellChecker_CMakeLists.txt b/editors/codelite/files/patch-SpellChecker_CMakeLists.txt new file mode 100644 index 000000000000..61fae7302533 --- /dev/null +++ b/editors/codelite/files/patch-SpellChecker_CMakeLists.txt @@ -0,0 +1,11 @@ +--- SpellChecker/CMakeLists.txt.orig 2016-07-07 05:54:58 UTC ++++ SpellChecker/CMakeLists.txt +@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.6.2) + + find_library(LIBHUNSPELL + # Fedora doesn't create a hunspell->hunspell-1.3 symlink, so explicitly look for (the current) full name +- NAMES hunspell hunspell-1.3 ++ NAMES hunspell hunspell-1.5 hunspell-1.4 hunspell-1.3 + PATH_SUFFIXES lib) + + find_path( HUNSPELL_H |