blob: f398cb6cd51a0cc43c9db8bd27ff1d18990df052 [file] [log] [blame]
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001# Aap recipe for Dutch 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 VIM = vim
8
9SPELLDIR = ..
10FILES = nl_NL.aff nl_NL.dic
11
12all: $(SPELLDIR)/nl.latin1.spl $(SPELLDIR)/nl.utf-8.spl ../README_nl.txt
13
14$(SPELLDIR)/nl.latin1.spl : $(VIM) $(FILES)
15 :sys env LANG=nl_NL.ISO8859-1
Bram Moolenaar661b1822005-07-28 22:36:45 +000016 $(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000017
18$(SPELLDIR)/nl.utf-8.spl : $(VIM) $(FILES)
19 :sys env LANG=nl_NL.UTF-8
Bram Moolenaar661b1822005-07-28 22:36:45 +000020 $(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000021
22../README_nl.txt : README_nl_NL.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%} nl_NL.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.
33nl_NL.aff nl_NL.dic: {buildcheck=}
34 :assertpkg unzip patch
35 :fetch nl_NL.zip
36 :sys $(UNZIP) nl_NL.zip
37 :delete nl_NL.zip
38 @if not os.path.exists('nl_NL.orig.aff'):
39 :copy nl_NL.aff nl_NL.orig.aff
40 @if not os.path.exists('nl_NL.orig.dic'):
41 :copy nl_NL.aff nl_NL.orig.dic
42 :sys patch <nl_NL.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
48diff:
49 :assertpkg diff
50 :sys {force} diff -a -C 1 nl_NL.orig.aff nl_NL.aff >nl_NL.diff
51 :sys {force} diff -a -C 1 nl_NL.orig.dic nl_NL.dic >>nl_NL.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
57check:
58 :assertpkg unzip diff
59 :fetch nl_NL.zip
60 :mkdir tmp
61 :cd tmp
62 @try:
63 @import stat
64 :sys $(UNZIP) ../nl_NL.zip
65 :sys {force} diff ../nl_NL.orig.aff nl_NL.aff >d
66 @if os.stat('d')[stat.ST_SIZE] > 0:
67 :copy nl_NL.aff ../nl_NL.new.aff
68 :sys {force} diff ../nl_NL.orig.dic nl_NL.dic >d
69 @if os.stat('d')[stat.ST_SIZE] > 0:
70 :copy nl_NL.dic ../nl_NL.new.dic
71 @finally:
72 :cd ..
73 :delete {r}{f}{q} tmp
74 :delete nl_NL.zip
75
76
77# vim: set sts=4 sw=4 :