Bram Moolenaar | 87e25fd | 2005-07-27 21:13:01 +0000 | [diff] [blame] | 1 | # Aap recipe for Hebrew Vim spell files. |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 2 | |
| 3 | # Use a freshly compiled Vim if it exists. |
| 4 | @if os.path.exists('../../../src/vim'): |
| 5 | VIM = ../../../src/vim |
| 6 | @else: |
Bram Moolenaar | 78984f5 | 2005-08-01 07:19:10 +0000 | [diff] [blame] | 7 | :progsearch VIM vim |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 8 | |
| 9 | SPELLDIR = .. |
| 10 | FILES = he_IL.aff he_IL.dic |
| 11 | |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 12 | all: $SPELLDIR/he.utf-8.spl $SPELLDIR/he.iso-8859-8.spl ../README_he.txt |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 13 | |
Bram Moolenaar | 5b8d8fd | 2005-08-16 23:01:50 +0000 | [diff] [blame] | 14 | $SPELLDIR/he.utf-8.spl : $FILES |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 15 | :sys env LANG=he_IL.UTF-8 |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 16 | $VIM -u NONE -e -c "mkspell! $SPELLDIR/he he_IL" -c q |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 17 | |
Bram Moolenaar | 5b8d8fd | 2005-08-16 23:01:50 +0000 | [diff] [blame] | 18 | $SPELLDIR/he.iso-8859-8.spl : $FILES |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 19 | :sys $VIM -u NONE -e -c "set enc=iso-8859-8" |
| 20 | -c "mkspell! $SPELLDIR/he he_IL" -c q |
Bram Moolenaar | 53180ce | 2005-07-05 21:48:14 +0000 | [diff] [blame] | 21 | |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 22 | ../README_he.txt : README_he_IL.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 |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 29 | :attr {fetch = $OODIR/%file%} he_IL.zip |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 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 | he_IL.aff he_IL.dic: {buildcheck=} |
| 34 | :assertpkg unzip patch |
| 35 | :fetch he_IL.zip |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 36 | :sys $UNZIP he_IL.zip |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 37 | :delete he_IL.zip |
| 38 | @if not os.path.exists('he_IL.orig.aff'): |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 39 | :copy he_IL.aff he_IL.orig.aff |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 40 | @if not os.path.exists('he_IL.orig.dic'): |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 41 | :copy he_IL.dic he_IL.orig.dic |
Bram Moolenaar | 78984f5 | 2005-08-01 07:19:10 +0000 | [diff] [blame] | 42 | @if os.path.exists('he_IL.diff'): |
| 43 | :sys patch <he_IL.diff |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 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 he_IL.orig.aff he_IL.aff >he_IL.diff |
| 52 | :sys {force} diff -a -C 1 he_IL.orig.dic he_IL.dic >>he_IL.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 he_IL.zip |
| 61 | :mkdir tmp |
| 62 | :cd tmp |
| 63 | @try: |
| 64 | @import stat |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 65 | :sys $UNZIP ../he_IL.zip |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 66 | :sys {force} diff ../he_IL.orig.aff he_IL.aff >d |
| 67 | @if os.stat('d')[stat.ST_SIZE] > 0: |
| 68 | :copy he_IL.aff ../he_IL.new.aff |
| 69 | :sys {force} diff ../he_IL.orig.dic he_IL.dic >d |
| 70 | @if os.stat('d')[stat.ST_SIZE] > 0: |
| 71 | :copy he_IL.dic ../he_IL.new.dic |
| 72 | @finally: |
| 73 | :cd .. |
| 74 | :delete {r}{f}{q} tmp |
| 75 | :delete he_IL.zip |
| 76 | |
| 77 | |
| 78 | # vim: set sts=4 sw=4 : |