homebrew-core/Formula/hunspell.rb
Thierry Moisan d2b4034bea hunspell: add freeling conflict and a test
Closes Homebrew/homebrew#45590.
Closes Homebrew/homebrew#42766.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2015-11-12 17:03:25 +01:00

82 lines
2.8 KiB
Ruby

class Hunspell < Formula
desc "Spell checker and morphological analyzer"
homepage "http://hunspell.sourceforge.net/"
url "https://downloads.sourceforge.net/hunspell/hunspell-1.3.3.tar.gz"
sha256 "a7b2c0de0e2ce17426821dc1ac8eb115029959b3ada9d80a81739fa19373246c"
depends_on "readline"
conflicts_with "freeling", :because => "both install 'analyze' binary"
# hunspell does not prepend $HOME to all USEROODIRs
# http://sourceforge.net/p/hunspell/bugs/236/
patch :p0, :DATA
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-ui",
"--with-readline"
system "make"
ENV.deparallelize
system "make", "install"
pkgshare.install "tests"
end
def caveats; <<-EOS.undent
Dictionary files (*.aff and *.dic) should be placed in
~/Library/Spelling/ or /Library/Spelling/. Homebrew itself
provides no dictionaries for Hunspell, but you can download
compatible dictionaries from other sources, such as
https://wiki.openoffice.org/wiki/Dictionaries .
EOS
end
test do
cp_r "#{pkgshare}/tests/.", testpath
system "./test.sh"
end
end
__END__
--- src/tools/hunspell.cxx.old 2013-08-02 18:21:49.000000000 +0200
+++ src/tools/hunspell.cxx 2013-08-02 18:20:27.000000000 +0200
@@ -28,7 +28,7 @@
#ifdef WIN32
#define LIBDIR "C:\\Hunspell\\"
-#define USEROOODIR "Application Data\\OpenOffice.org 2\\user\\wordbook"
+#define USEROOODIR { "Application Data\\OpenOffice.org 2\\user\\wordbook" }
#define OOODIR \
"C:\\Program files\\OpenOffice.org 2.4\\share\\dict\\ooo\\;" \
"C:\\Program files\\OpenOffice.org 2.3\\share\\dict\\ooo\\;" \
@@ -65,11 +65,11 @@
"/usr/share/myspell:" \
"/usr/share/myspell/dicts:" \
"/Library/Spelling"
-#define USEROOODIR \
- ".openoffice.org/3/user/wordbook:" \
- ".openoffice.org2/user/wordbook:" \
- ".openoffice.org2.0/user/wordbook:" \
- "Library/Spelling"
+#define USEROOODIR { \
+ ".openoffice.org/3/user/wordbook:", \
+ ".openoffice.org2/user/wordbook:", \
+ ".openoffice.org2.0/user/wordbook:", \
+ "Library/Spelling" }
#define OOODIR \
"/opt/openoffice.org/basis3.0/share/dict/ooo:" \
"/usr/lib/openoffice.org/basis3.0/share/dict/ooo:" \
@@ -1664,7 +1664,10 @@
path = add(path, PATHSEP); // <- check path in root directory
if (getenv("DICPATH")) path = add(add(path, getenv("DICPATH")), PATHSEP);
path = add(add(path, LIBDIR), PATHSEP);
- if (HOME) path = add(add(add(add(path, HOME), DIRSEP), USEROOODIR), PATHSEP);
+ const char* userooodir[] = USEROOODIR;
+ for (int i = 0; i < (sizeof(userooodir) / sizeof(userooodir[0])); i++) {
+ if (HOME) path = add(add(add(add(path, HOME), DIRSEP), userooodir[i]), PATHSEP);
+ }
path = add(path, OOODIR);
if (showpath) {