vim72-20100325-kaoriya-w64j.zip
[MacVim/KaoriYa.git] / runtime / spell / gl / main.aap
blob504fda0ef5cdde02a3f37e097c07f762a075a7a0
1 # Aap recipe for Galician (Spain) 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    = gl_ES.aff gl_ES.dic
12 all: $SPELLDIR/gl.latin1.spl $SPELLDIR/gl.utf-8.spl ../README_gl.txt
14 $SPELLDIR/gl.latin1.spl : $FILES
15         :sys env LANG=es_ES.ISO8859-1
16                 $VIM -u NONE -e -c "mkspell! $SPELLDIR/gl gl_ES" -c q
18 $SPELLDIR/gl.utf-8.spl : $FILES
19         :sys env LANG=es_ES.UTF-8
20                 $VIM -u NONE -e -c "mkspell! $SPELLDIR/gl gl_ES" -c q
22 ../README_gl.txt : README_gl_ES.txt
23         :copy $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%} gl_ES.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 gl_ES.aff gl_ES.dic: {buildcheck=}
34         :assertpkg unzip patch
35         :fetch gl_ES.zip
36         :sys $UNZIP gl_ES.zip
37         :delete gl_ES.zip
38         @if not os.path.exists('gl_ES.orig.aff'):
39             :copy gl_ES.aff gl_ES.orig.aff
40         @if not os.path.exists('gl_ES.orig.dic'):
41             :copy gl_ES.dic gl_ES.orig.dic
42         @if os.path.exists('gl_ES.diff'):
43             :sys patch <gl_ES.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 gl_ES.orig.aff gl_ES.aff >gl_ES.diff
52         :sys {force} diff -a -C 1 gl_ES.orig.dic gl_ES.dic >>gl_ES.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 gl_ES.zip
61         :mkdir tmp
62         :cd tmp
63         @try:
64             @import stat
65             :sys $UNZIP ../gl_ES.zip
66             :sys {force} diff ../gl_ES.orig.aff gl_ES.aff >d
67             @if os.stat('d')[stat.ST_SIZE] > 0:
68                 :copy gl_ES.aff ../gl_ES.new.aff
69             :sys {force} diff ../gl_ES.orig.dic gl_ES.dic >d
70             @if os.stat('d')[stat.ST_SIZE] > 0:
71                 :copy gl_ES.dic ../gl_ES.new.dic
72         @finally:
73             :cd ..
74             :delete {r}{f}{q} tmp
75             :delete gl_ES.zip
78 # vim: set sts=4 sw=4 :