vim72-20100325-kaoriya-w64j.zip
[MacVim/KaoriYa.git] / runtime / spell / ga / main.aap
blobd745de5f4d5cc03e679edc2a1905bedef76c3e44
1 # Aap recipe for Irish 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    = ga_IE.aff ga_IE.dic
12 all: $SPELLDIR/ga.latin1.spl $SPELLDIR/ga.utf-8.spl ../README_ga.txt
14 # I don't have an Irish locale, use the Dutch one instead.
15 $SPELLDIR/ga.latin1.spl : $FILES
16         :sys env LANG=nl_NL.ISO8859-1
17                 $VIM -u NONE -e -c "mkspell! $SPELLDIR/ga ga_IE" -c q
19 $SPELLDIR/ga.utf-8.spl : $FILES
20         :sys env LANG=nl_NL.UTF-8
21                 $VIM -u NONE -e -c "mkspell! $SPELLDIR/ga ga_IE" -c q
23 ../README_ga.txt : README_ga_IE.txt
24         :copy $source $target
27 # Fetching the files from OpenOffice.org.
29 OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries
30 :attr {fetch = $OODIR/%file%} ga_IE.zip
32 # The files don't depend on the .zip file so that we can delete it.
33 # Only download the zip file if the targets don't exist.
34 ga_IE.aff ga_IE.dic: {buildcheck=}
35         :assertpkg unzip patch
36         :fetch ga_IE.zip
37         :sys $UNZIP ga_IE.zip
38         :delete ga_IE.zip
39         @if not os.path.exists('ga_IE.orig.aff'):
40             :copy ga_IE.aff ga_IE.orig.aff
41         @if not os.path.exists('ga_IE.orig.dic'):
42             :copy ga_IE.dic ga_IE.orig.dic
43         @if os.path.exists('ga_IE.diff'):
44             :sys patch <ga_IE.diff
47 # Generate diff files, so that others can get the OpenOffice files and apply
48 # the diffs to get the Vim versions.
50 diff:
51         :assertpkg diff
52         :sys {force} diff -a -C 1 ga_IE.orig.aff ga_IE.aff >ga_IE.diff
53         :sys {force} diff -a -C 1 ga_IE.orig.dic ga_IE.dic >>ga_IE.diff
56 # Check for updated OpenOffice spell files.  When there are changes the
57 # ".new.aff" and ".new.dic" files are left behind for manual inspection.
59 check:
60         :assertpkg unzip diff
61         :fetch ga_IE.zip
62         :mkdir tmp
63         :cd tmp
64         @try:
65             @import stat
66             :sys $UNZIP ../ga_IE.zip
67             :sys {force} diff ../ga_IE.orig.aff ga_IE.aff >d
68             @if os.stat('d')[stat.ST_SIZE] > 0:
69                 :copy ga_IE.aff ../ga_IE.new.aff
70             :sys {force} diff ../ga_IE.orig.dic ga_IE.dic >d
71             @if os.stat('d')[stat.ST_SIZE] > 0:
72                 :copy ga_IE.dic ../ga_IE.new.dic
73         @finally:
74             :cd ..
75             :delete {r}{f}{q} tmp
76             :delete ga_IE.zip
79 # vim: set sts=4 sw=4 :