Description: add /usr/share/hyphen to the list of directories used to look up hyphen dictionaries
Origin: upstream, https://www.scribus.net/websvn/comp.php?repname=Scribus&compare[]=%2F@21076&compare[]=%2F@21077
Acked-By: Mattia Rizzolo <mattia@debian.org>
Last-Update: 2016-03-11

--- a/scribus/scpaths.cpp
+++ b/scribus/scpaths.cpp
@@ -323,6 +323,7 @@
 	QString linuxLocalPath("/usr/local/share/hunspell/");
 	QString linuxHunspellPath("/usr/share/hunspell/");
 	QString linuxMyspellPath("/usr/share/myspell/");
+	QString linuxHyphen1Path("/usr/share/hyphen/");
 	QString windowsLOPath("LibreOffice 3.5/share/extensions");
 	QDir d;
 	QStringList hyphDirs;
@@ -366,6 +367,9 @@
 			hyphDirs.append(progFiles+windowsLOPath + "/" + dir + "/");
 	}
 #elif defined(Q_OS_LINUX)
+	d.setPath(linuxHyphen1Path);
+	if (d.exists())
+		hyphDirs.append(linuxHyphen1Path);
 	d.setPath(linuxHunspellPath);
 	if (d.exists())
 		hyphDirs.append(linuxHunspellPath);
