blob: 9e51039a43f787290fed30e22d1856739791bbe8 [file] [log] [blame]
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001# Aap recipe for French Vim spell files.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00002
3# Use a freshly compiled Vim if it exists.
4@if os.path.exists('../../../src/vim'):
5 VIM = ../../../src/vim
6@else:
Bram Moolenaar34cf2f52005-08-01 07:04:56 +00007 :progsearch VIM vim
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00008
9SPELLDIR = ..
10FILES = fr_FR.aff fr_FR.dic
11
Bram Moolenaarae5bce12005-08-15 21:41:48 +000012all: $SPELLDIR/fr.latin1.spl $SPELLDIR/fr.utf-8.spl ../README_fr.txt
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000013
Bram Moolenaarae5bce12005-08-15 21:41:48 +000014$SPELLDIR/fr.latin1.spl : $VIM $FILES
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000015 :sys env LANG=fr_FR.ISO8859-1
Bram Moolenaarae5bce12005-08-15 21:41:48 +000016 $VIM -u NONE -e -c "mkspell! $SPELLDIR/fr fr_FR" -c q
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000017
Bram Moolenaarae5bce12005-08-15 21:41:48 +000018$SPELLDIR/fr.utf-8.spl : $VIM $FILES
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000019 :sys env LANG=fr_FR.UTF-8
Bram Moolenaarae5bce12005-08-15 21:41:48 +000020 $VIM -u NONE -e -c "mkspell! $SPELLDIR/fr fr_FR" -c q
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000021
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000022../README_fr.txt : README_fr_FR.txt
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000023 :copy $source $target
24
25#
26# Fetching the files from OpenOffice.org.
27#
28OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries
Bram Moolenaarae5bce12005-08-15 21:41:48 +000029:attr {fetch = $OODIR/%file%} fr_FR.zip
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000030
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.
33fr_FR.aff fr_FR.dic: {buildcheck=}
34 :assertpkg unzip patch
35 :fetch fr_FR.zip
Bram Moolenaarae5bce12005-08-15 21:41:48 +000036 :sys $UNZIP fr_FR.zip
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000037 :delete fr_FR.zip
38 @if not os.path.exists('fr_FR.orig.aff'):
Bram Moolenaarae5bce12005-08-15 21:41:48 +000039 :copy fr_FR.aff fr_FR.orig.aff
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000040 @if not os.path.exists('fr_FR.orig.dic'):
Bram Moolenaarae5bce12005-08-15 21:41:48 +000041 :copy fr_FR.dic fr_FR.orig.dic
Bram Moolenaar34cf2f52005-08-01 07:04:56 +000042 @if os.path.exists('fr_FR.diff'):
43 :sys patch <fr_FR.diff
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000044
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 fr_FR.orig.aff fr_FR.aff >fr_FR.diff
52 :sys {force} diff -a -C 1 fr_FR.orig.dic fr_FR.dic >>fr_FR.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 fr_FR.zip
61 :mkdir tmp
62 :cd tmp
63 @try:
64 @import stat
Bram Moolenaarae5bce12005-08-15 21:41:48 +000065 :sys $UNZIP ../fr_FR.zip
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000066 :sys {force} diff ../fr_FR.orig.aff fr_FR.aff >d
67 @if os.stat('d')[stat.ST_SIZE] > 0:
68 :copy fr_FR.aff ../fr_FR.new.aff
69 :sys {force} diff ../fr_FR.orig.dic fr_FR.dic >d
70 @if os.stat('d')[stat.ST_SIZE] > 0:
71 :copy fr_FR.dic ../fr_FR.new.dic
72 @finally:
73 :cd ..
74 :delete {r}{f}{q} tmp
75 :delete fr_FR.zip
76
77
78# vim: set sts=4 sw=4 :