blob: f1bd74290508c51019cf1c8bd6786230e9dc8fc3 [file] [log] [blame]
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00001# Aap recipe for Italian Vim spell files.
Bram Moolenaar78984f52005-08-01 07:19:10 +00002
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 = it_IT.aff it_IT.dic
11
Bram Moolenaarae5bce12005-08-15 21:41:48 +000012all: $SPELLDIR/it.latin1.spl $SPELLDIR/it.utf-8.spl ../README_it.txt
Bram Moolenaar78984f52005-08-01 07:19:10 +000013
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000014$SPELLDIR/it.latin1.spl : $FILES
Bram Moolenaar78984f52005-08-01 07:19:10 +000015 :sys env LANG=it_IT.ISO8859-1
Bram Moolenaarae5bce12005-08-15 21:41:48 +000016 $VIM -u NONE -e -c "mkspell! $SPELLDIR/it it_IT" -c q
Bram Moolenaar78984f52005-08-01 07:19:10 +000017
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000018$SPELLDIR/it.utf-8.spl : $FILES
Bram Moolenaar78984f52005-08-01 07:19:10 +000019 :sys env LANG=it_IT.UTF-8
Bram Moolenaarae5bce12005-08-15 21:41:48 +000020 $VIM -u NONE -e -c "mkspell! $SPELLDIR/it it_IT" -c q
Bram Moolenaar78984f52005-08-01 07:19:10 +000021
Bram Moolenaare344bea2005-09-01 20:46:49 +000022../README_it.txt : README_it_IT.txt README.txt
23 :cat $source >! $target
Bram Moolenaar78984f52005-08-01 07:19:10 +000024
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%} it_IT.zip
Bram Moolenaar78984f52005-08-01 07:19:10 +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.
33it_IT.aff it_IT.dic: {buildcheck=}
34 :assertpkg unzip patch
35 :fetch it_IT.zip
Bram Moolenaarae5bce12005-08-15 21:41:48 +000036 :sys $UNZIP it_IT.zip
Bram Moolenaar78984f52005-08-01 07:19:10 +000037 :delete it_IT.zip
Bram Moolenaare344bea2005-09-01 20:46:49 +000038 :delete GPL.txt history.txt license.txt notes.txt statistiche.sxc thanks.txt
Bram Moolenaar78984f52005-08-01 07:19:10 +000039 @if not os.path.exists('it_IT.orig.aff'):
40 :copy it_IT.aff it_IT.orig.aff
41 @if not os.path.exists('it_IT.orig.dic'):
42 :copy it_IT.dic it_IT.orig.dic
43 @if os.path.exists('it_IT.diff'):
44 :sys patch <it_IT.diff
45
46
47# Generate diff files, so that others can get the OpenOffice files and apply
48# the diffs to get the Vim versions.
49
50diff:
51 :assertpkg diff
52 :sys {force} diff -a -C 1 it_IT.orig.aff it_IT.aff >it_IT.diff
53 :sys {force} diff -a -C 1 it_IT.orig.dic it_IT.dic >>it_IT.diff
54
55
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.
58
59check:
60 :assertpkg unzip diff
61 :fetch it_IT.zip
62 :mkdir tmp
63 :cd tmp
64 @try:
65 @import stat
Bram Moolenaarae5bce12005-08-15 21:41:48 +000066 :sys $UNZIP ../it_IT.zip
Bram Moolenaar78984f52005-08-01 07:19:10 +000067 :sys {force} diff ../it_IT.orig.aff it_IT.aff >d
68 @if os.stat('d')[stat.ST_SIZE] > 0:
69 :copy it_IT.aff ../it_IT.new.aff
70 :sys {force} diff ../it_IT.orig.dic it_IT.dic >d
71 @if os.stat('d')[stat.ST_SIZE] > 0:
72 :copy it_IT.dic ../it_IT.new.dic
73 @finally:
74 :cd ..
75 :delete {r}{f}{q} tmp
76 :delete it_IT.zip
77
78
79# vim: set sts=4 sw=4 :