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