comparison runtime/spell/la/main.aap @ 502:52e76e2b5b65 v7.0140

updated for version 7.0140
author vimboss
date Thu, 01 Sep 2005 20:46:49 +0000
parents
children ea3c3f13385c
comparison
equal deleted inserted replaced
501:ce2181d14aa0 502:52e76e2b5b65
1 # Aap recipe for Latin 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
9 SPELLDIR = ..
10 FILES = la.aff la.dic
11
12 all: $SPELLDIR/la.latin1.spl $SPELLDIR/la.utf-8.spl ../README_la.txt
13
14 $SPELLDIR/la.latin1.spl : $FILES
15 :sys env LANG=la_LN.ISO8859-1
16 $VIM -u NONE -e -c "mkspell! $SPELLDIR/la la" -c q
17
18 $SPELLDIR/la.utf-8.spl : $FILES
19 :sys $VIM -u NONE -e -c "set enc=utf-8"
20 -c "mkspell! $SPELLDIR/la la" -c q
21
22 ../README_la.txt : README_la.txt
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%} la.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 la.aff la.dic: {buildcheck=}
34 :assertpkg unzip patch
35 :fetch la.zip
36 :sys $UNZIP la.zip
37 :delete la.zip
38 @if not os.path.exists('la.orig.aff'):
39 :copy la.aff la.orig.aff
40 @if not os.path.exists('la.orig.dic'):
41 :copy la.dic la.orig.dic
42 @if os.path.exists('la.diff'):
43 :sys patch <la.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
49 diff:
50 :assertpkg diff
51 :sys {force} diff -a -C 1 la.orig.aff la.aff >la.diff
52 :sys {force} diff -a -C 1 la.orig.dic la.dic >>la.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
58 check:
59 :assertpkg unzip diff
60 :fetch la.zip
61 :mkdir tmp
62 :cd tmp
63 @try:
64 @import stat
65 :sys $UNZIP ../la.zip
66 :sys {force} diff ../la.orig.aff la.aff >d
67 @if os.stat('d')[stat.ST_SIZE] > 0:
68 :copy la.aff ../la.new.aff
69 :sys {force} diff ../la.orig.dic la.dic >d
70 @if os.stat('d')[stat.ST_SIZE] > 0:
71 :copy la.dic ../la.new.dic
72 @finally:
73 :cd ..
74 :delete {r}{f}{q} tmp
75 :delete la.zip
76
77
78 # vim: set sts=4 sw=4 :