1# Aap recipe for Greek Vim spell files.
2
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
8
9SPELLDIR = ..
10FILES    = el_GR.aff el_GR.dic
11
12all: $SPELLDIR/el.iso-8859-7.spl $SPELLDIR/el.utf-8.spl ../README_el.txt
13
14$SPELLDIR/el.iso-8859-7.spl : $FILES
15        :sys env LANG=el_GR.ISO8859-7
16		$VIM -u NONE -e -c "mkspell! $SPELLDIR/el el_GR" -c q
17
18$SPELLDIR/el.utf-8.spl : $FILES
19        :sys env LANG=el_GR.UTF-8
20		$VIM -u NONE -e -c "mkspell! $SPELLDIR/el el_GR" -c q
21
22../README_el.txt : README_el_GR.txt
23        :copy $source $target
24
25#
26# Fetching the files from OpenOffice.org.
27#
28OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries
29:attr {fetch = $OODIR/%file%} el_GR.zip
30
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.
33el_GR.aff el_GR.dic: {buildcheck=}
34        :assertpkg unzip patch
35        :fetch el_GR.zip
36        :sys $UNZIP el_GR.zip
37        :delete el_GR.zip
38        @if not os.path.exists('el_GR.orig.aff'):
39            :copy el_GR.aff el_GR.orig.aff
40        @if not os.path.exists('el_GR.orig.dic'):
41            :copy el_GR.dic el_GR.orig.dic
42        @if os.path.exists('el_GR.diff'):
43            :sys patch <el_GR.diff
44
45
46# Generate diff files, so that others can get the OpenOffice files and apply
47# the diffs to get the Vim versions.
48
49diff:
50        :assertpkg diff
51        :sys {force} diff -a -C 1 el_GR.orig.aff el_GR.aff >el_GR.diff
52        :sys {force} diff -a -C 1 el_GR.orig.dic el_GR.dic >>el_GR.diff
53
54
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.
57
58check:
59        :assertpkg unzip diff
60        :fetch el_GR.zip
61        :mkdir tmp
62        :cd tmp
63        @try:
64            @import stat
65            :sys $UNZIP ../el_GR.zip
66            :sys {force} diff ../el_GR.orig.aff el_GR.aff >d
67            @if os.stat('d')[stat.ST_SIZE] > 0:
68                :copy el_GR.aff ../el_GR.new.aff
69            :sys {force} diff ../el_GR.orig.dic el_GR.dic >d
70            @if os.stat('d')[stat.ST_SIZE] > 0:
71                :copy el_GR.dic ../el_GR.new.dic
72        @finally:
73            :cd ..
74            :delete {r}{f}{q} tmp
75            :delete el_GR.zip
76
77
78# vim: set sts=4 sw=4 :
79