mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
- Now uses PyQt 5.x - Minimum python requirement raised to 3.5 - Remove DESKTOP_ENTRIES - source now includes a .desktop file - Removed options * PLUGINS - this version no longer uses them - Added options * ASPELL, HUNSPELL, and ISPELL - desired default spellchecker * NLS - conditional native language support
13 lines
460 B
Python
13 lines
460 B
Python
Only check for the default spelling engine
|
|
|
|
--- install.py.orig 2018-09-06 12:23:56 UTC
|
|
+++ install.py
|
|
@@ -251,7 +251,7 @@ def main():
|
|
sys.exit(3)
|
|
global testSpell
|
|
if testSpell:
|
|
- spellCheck(['aspell -a', 'ispell -a', 'hunspell -a'])
|
|
+ spellCheck(['%%SPELL_ENGINE%% -a'])
|
|
|
|
pythonPrefixDir = os.path.join(prefixDir, 'share', progName)
|
|
pythonBuildDir = os.path.join(buildRoot, pythonPrefixDir[1:])
|