764a58924f49247e525dd444d49c0045118d9c7f
[vim_extended.git] / runtime / spell / nl / main.aap
blob764a58924f49247e525dd444d49c0045118d9c7f
1 # Aap recipe for Dutch Vim spell files.
3 # Use a freshly compiled Vim if it exists.
4 @if os.path.exists('../../../src/vim'):
5     VIM = ../../../src/vim
6 @else:
7     :progsearch VIM vim
9 SPELLDIR = ..
10 FILES    = nl_NL.aff nl_NL.dic
12 all: $SPELLDIR/nl.latin1.spl $SPELLDIR/nl.utf-8.spl ../README_nl.txt
14 $SPELLDIR/nl.latin1.spl : $FILES
15         :sys env LANG=nl_NL.ISO8859-1
16                 $VIM -u NONE -e -c "mkspell! $SPELLDIR/nl nl_NL" -c q
18 $SPELLDIR/nl.utf-8.spl : $FILES
19         :sys env LANG=nl_NL.UTF-8
20                 $VIM -u NONE -e -c "mkspell! $SPELLDIR/nl nl_NL" -c q
22 ../README_nl.txt : README_nl_NL.txt README_vim.txt
23         :cat $source >! $target
26 # Fetching the files from OpenOffice.org.
28 OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries
29 :attr {fetch = $OODIR/%file%} nl_NL.zip
31 # The files don't depend on the .zip file so that we can delete it.
32 # Only download the zip file if the targets don't exist.
33 nl_NL.aff nl_NL.dic: {buildcheck=}
34         :assertpkg unzip patch
35         :fetch nl_NL.zip
36         :sys $UNZIP nl_NL.zip
37         :delete nl_NL.zip
38         @if not os.path.exists('nl_NL.orig.aff'):
39             :copy nl_NL.aff nl_NL.orig.aff
40         @if not os.path.exists('nl_NL.orig.dic'):
41             :copy nl_NL.dic nl_NL.orig.dic
42         @if os.path.exists('nl_NL.diff'):
43             :sys patch <nl_NL.diff
46 # Generate diff files, so that others can get the OpenOffice files and apply
47 # the diffs to get the Vim versions.
49 diff:
50         :assertpkg diff
51         :sys {force} diff -a -C 1 nl_NL.orig.aff nl_NL.aff >nl_NL.diff
52         :sys {force} diff -a -C 1 nl_NL.orig.dic nl_NL.dic >>nl_NL.diff
55 # Check for updated OpenOffice spell files.  When there are changes the
56 # ".new.aff" and ".new.dic" files are left behind for manual inspection.
58 check:
59         :assertpkg unzip diff
60         :fetch nl_NL.zip
61         :mkdir tmp
62         :cd tmp
63         @try:
64             @import stat
65             :sys $UNZIP ../nl_NL.zip
66             :sys {force} diff ../nl_NL.orig.aff nl_NL.aff >d
67             @if os.stat('d')[stat.ST_SIZE] > 0:
68                 :copy nl_NL.aff ../nl_NL.new.aff
69             :sys {force} diff ../nl_NL.orig.dic nl_NL.dic >d
70             @if os.stat('d')[stat.ST_SIZE] > 0:
71                 :copy nl_NL.dic ../nl_NL.new.dic
72         @finally:
73             :cd ..
74             :delete {r}{f}{q} tmp
75             :delete nl_NL.zip
78 # vim: set sts=4 sw=4 :