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