summaryrefslogtreecommitdiffstats
path: root/runtime/spell/yi
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-08-11 20:00:37 +0000
committerBram Moolenaar <Bram@vim.org>2005-08-11 20:00:37 +0000
commit8b1e71fa25088fa133b440327cb4f500a3a61767 (patch)
tree28f3c89cabb470d6d14976e27d68cba3fbbee419 /runtime/spell/yi
parent8b59de9f2ff80773cdf422db4db05e11a3409fbd (diff)
updated for version 7.0128
Diffstat (limited to 'runtime/spell/yi')
-rw-r--r--runtime/spell/yi/main.aap30
1 files changed, 22 insertions, 8 deletions
diff --git a/runtime/spell/yi/main.aap b/runtime/spell/yi/main.aap
index a426684d4e..8160e8383e 100644
--- a/runtime/spell/yi/main.aap
+++ b/runtime/spell/yi/main.aap
@@ -6,14 +6,15 @@
@else:
:progsearch VIM vim
-SPELLDIR = ..
-FILE = wordlist.utf8.txt
+SPELLDIR = ..
+FILES = yi.dic yi.aff
+WORDFILE = wordlist.utf8.txt
all: $SPELLDIR/yi.utf-8.spl ../README_yi.txt
-$SPELLDIR/yi.utf-8.spl : $VIM $FILE
+$SPELLDIR/yi.utf-8.spl : $VIM $FILES
:sys $VIM -u NONE -e -c "set enc=utf-8"
- -c "mkspell! $(SPELLDIR)/yi $FILE" -c q
+ -c "mkspell! $(SPELLDIR)/yi yi" -c q
../README_yi.txt : README.txt
:copy $source $target
@@ -22,12 +23,25 @@ $SPELLDIR/yi.utf-8.spl : $VIM $FILE
# Fetch the word list when needed.
#
URLDIR = http://www.cs.uky.edu/~raphael/yiddish
-:attr {fetch = $URLDIR/%file%} $FILE
+:attr {fetch = $URLDIR/%file%} $WORDFILE
+
+# We use the word list as a .dic file, so that we can use an affix file to
+# define a few extra things.
+$FILES: {buildcheck=}
+ :assertpkg patch
+ :fetch $WORDFILE
+ :copy $WORDFILE yi.dic
+ :touch {force} yi.aff
+ @if os.path.exists('yi.diff'):
+ :sys patch < yi.diff
-
-# There is no diff file, the word list is used as-is
diff:
- :print No diff file.
+ :assertpkg diff
+ :delete yi.diff
+ # Using a context of two lines to work around a bug in FreeBSD patch.
+ :sys {force} diff -a -C 2 $WORDFILE yi.dic >yi.diff
+ :sys {force} diff -a -N -C 1 /dev/null yi.aff >>yi.diff
+
# vim: set sts=4 sw=4 :