Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 1 | # Aap recipe for Slovenian 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 = sl_SI.aff sl_SI.dic |
| 11 | |
| 12 | all: $SPELLDIR/sl.iso-8859-2.spl $SPELLDIR/sl.utf-8.spl \ |
| 13 | $SPELLDIR/sl.cp1250.spl ../README_sl.txt |
| 14 | |
| 15 | $SPELLDIR/sl.iso-8859-2.spl : $FILES |
| 16 | :sys env LANG=sl_SI.ISO8859-2 $VIM -u NONE -e -c "mkspell! $SPELLDIR/sl sl_SI" -c q |
| 17 | |
| 18 | $SPELLDIR/sl.utf-8.spl : $FILES |
| 19 | :sys env LANG=sl_SI.UTF-8 $VIM -u NONE -e -c "mkspell! $SPELLDIR/sl sl_SI" -c q |
| 20 | |
| 21 | $SPELLDIR/sl.cp1250.spl : $FILES |
| 22 | :sys $VIM -u NONE -e -c "set enc=cp1250" -c "mkspell! $SPELLDIR/sl sl_SI" -c q |
| 23 | |
| 24 | ../README_sl.txt: README_sl_SI.txt |
| 25 | :copy $source $target |
| 26 | |
| 27 | # |
| 28 | # Fetching the files from OpenOffice.org. |
| 29 | # |
| 30 | OODIR = http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries |
| 31 | :attr {fetch = $OODIR/%file%} sl_SI.zip |
| 32 | |
| 33 | # The files don't depend on the .zip file so that we can delete it. |
| 34 | # Only download the zip file if the targets don't exist. |
| 35 | # This is a bit tricky, since the file name includes the date. |
| 36 | sl_SI.aff sl_SI.dic: {buildcheck=} |
| 37 | :assertpkg unzip patch |
| 38 | :fetch sl_SI.zip |
| 39 | :sys $UNZIP sl_SI.zip |
| 40 | :delete sl_SI.zip |
| 41 | @if not os.path.exists('sl_SI.orig.aff'): |
| 42 | :copy sl_SI.aff sl_SI.orig.aff |
| 43 | @if not os.path.exists('sl_SI.orig.dic'): |
| 44 | :copy sl_SI.dic sl_SI.orig.dic |
| 45 | @if os.path.exists('sl_SI.diff'): |
| 46 | :sys patch <sl_SI.diff |
| 47 | |
| 48 | |
| 49 | # Generate diff files, so that others can get the OpenOffice files and apply |
| 50 | # the diffs to get the Vim versions. |
| 51 | |
| 52 | diff: |
| 53 | :assertpkg diff |
| 54 | :sys {force} diff -a -C 1 sl_SI.orig.aff sl_SI.aff >sl_SI.diff |
| 55 | :sys {force} diff -a -C 1 sl_SI.orig.dic sl_SI.dic >>sl_SI.diff |
| 56 | |
| 57 | |
| 58 | # Check for updated spell files. When there are changes the |
| 59 | # ".new.aff" and ".new.dic" files are left behind for manual inspection. |
| 60 | |
| 61 | check: |
| 62 | :assertpkg unzip diff |
| 63 | :fetch sl_SI.zip |
| 64 | :mkdir tmp |
| 65 | :cd tmp |
| 66 | @try: |
| 67 | @import stat |
| 68 | :sys $UNZIP ../sl_SI.zip |
| 69 | :sys {force} diff ../sl_SI.orig.aff sl_SI.aff >d |
| 70 | @if os.stat('d')[stat.ST_SIZE] > 0: |
| 71 | :copy sl_SI.aff ../sl_SI.new.aff |
| 72 | :sys {force} diff ../sl_SI.orig.dic sl_SI.dic >d |
| 73 | @if os.stat('d')[stat.ST_SIZE] > 0: |
| 74 | :copy sl_SI.dic ../sl_SI.new.dic |
| 75 | @finally: |
| 76 | :cd .. |
| 77 | :delete {r}{f}{q} tmp |
| 78 | :delete sl_SI.zip |
| 79 | |
| 80 | |
| 81 | # vim: set sts=4 sw=4 : |