diff options
author | Andrey Slusar <anray@FreeBSD.org> | 2006-01-17 14:38:35 +0000 |
---|---|---|
committer | Andrey Slusar <anray@FreeBSD.org> | 2006-01-17 14:38:35 +0000 |
commit | 60824db4c09244b84c11fc76d29fb48dfdae63f4 (patch) | |
tree | f7c9fd21915c3eb13eedcde8c6a73b70d67625c7 /ukrainian | |
parent | e122dacb0170b76677b26e1700c186257d19970c (diff) | |
download | ports-60824db4c09244b84c11fc76d29fb48dfdae63f4.tar.gz ports-60824db4c09244b84c11fc76d29fb48dfdae63f4.zip |
Notes
Diffstat (limited to 'ukrainian')
-rw-r--r-- | ukrainian/emacs-koi8u/Makefile | 6 | ||||
-rw-r--r-- | ukrainian/emacs-koi8u/files/ukr-koi8u.el | 107 |
2 files changed, 108 insertions, 5 deletions
diff --git a/ukrainian/emacs-koi8u/Makefile b/ukrainian/emacs-koi8u/Makefile index cdd9c794193a..59457cfae110 100644 --- a/ukrainian/emacs-koi8u/Makefile +++ b/ukrainian/emacs-koi8u/Makefile @@ -8,11 +8,7 @@ PORTNAME= koi8u PORTVERSION= 1.0 CATEGORIES= ukrainian elisp -MASTER_SITES= http://santinel.bas-net.by/files/ PKGNAMEPREFIX= emacs- -DISTNAME= ukr-koi8u.el -EXTRACT_SUFX= # empty -EXTRACT_ONLY= # empty MAINTAINER= anray@FreeBSD.org COMMENT= KOI8-U coding system for [X]Emacs. @@ -29,7 +25,7 @@ PLIST_DIRS= lib/xemacs/site-lisp lib/xemacs do-install: ${MKDIR} ${EMACSLISPDIR} ${MKDIR} ${XEMACSLISPDIR} - ${INSTALL_DATA} ${_DISTDIR}/${DISTNAME} ${EMACSLISPDIR}/ukr-koi8u.el + ${INSTALL_DATA} ${FILESDIR}/ukr-koi8u.el ${EMACSLISPDIR}/ukr-koi8u.el ${LN} -sf ${EMACSLISPDIR}/ukr-koi8u.el ${XEMACSLISPDIR} post-install: diff --git a/ukrainian/emacs-koi8u/files/ukr-koi8u.el b/ukrainian/emacs-koi8u/files/ukr-koi8u.el new file mode 100644 index 000000000000..f2ee0698cc78 --- /dev/null +++ b/ukrainian/emacs-koi8u/files/ukr-koi8u.el @@ -0,0 +1,107 @@ +;;; ukr-koi8u.el --- Support for Cyrillic -*- coding: iso-2022-7bit; -*- + +;;; Code: + +;; KOI8-U staff + +(eval-and-compile + +(defvar cyrillic-koi8-u-decode-table + [ + 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 + 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 + 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 + 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 + 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 + 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 + 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 + 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 + 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 + 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 + 32 32 32 ?,Lq(B ?,Lt(B 32 ?,Lv(B ?,Lw(B 32 32 32 32 32 ?,Ls(B 32 32 + 32 32 32 ?,L!(B ?,L$(B 32 ?,L&(B ?,L'(B 32 32 32 32 32 ?,L#(B 32 32 + ?,Ln(B ?,LP(B ?,LQ(B ?,Lf(B ?,LT(B ?,LU(B ?,Ld(B ?,LS(B ?,Le(B ?,LX(B ?,LY(B ?,LZ(B ?,L[(B ?,L\(B ?,L](B ?,L^(B + ?,L_(B ?,Lo(B ?,L`(B ?,La(B ?,Lb(B ?,Lc(B ?,LV(B ?,LR(B ?,Ll(B ?,Lk(B ?,LW(B ?,Lh(B ?,Lm(B ?,Li(B ?,Lg(B ?,Lj(B + ?,LN(B ?,L0(B ?,L1(B ?,LF(B ?,L4(B ?,L5(B ?,LD(B ?,L3(B ?,LE(B ?,L8(B ?,L9(B ?,L:(B ?,L;(B ?,L<(B ?,L=(B ?,L>(B + ?,L?(B ?,LO(B ?,L@(B ?,LA(B ?,LB(B ?,LC(B ?,L6(B ?,L2(B ?,LL(B ?,LK(B ?,L7(B ?,LH(B ?,LM(B ?,LI(B ?,LG(B ?,LJ(B ] + "Cyrillic KOI8-U decoding table.") + +(defvar cyrillic-koi8-u-encode-table + (let ((table (make-vector 256 32)) + (i 0)) + (while (< i 256) + (let* ((ch (aref cyrillic-koi8-u-decode-table i)) + (split (split-char ch))) + (cond ((eq (car split) 'cyrillic-iso8859-5) + (aset table (logior (nth 1 split) 128) i) + ) + ((eq ch 32)) + ((eq (car split) 'ascii) + (aset table ch i) + ))) + (setq i (1+ i))) + table) + "Cyrillic KOI8-U encoding table.") + +(define-ccl-program ccl-decode-koi8-u + `(3 + ((read r0) + (loop + (write-read-repeat r0 ,cyrillic-koi8-u-decode-table)))) + "CCL program to decode KOI8.") + +(define-ccl-program ccl-encode-koi8-u + `(1 + ((read r0) + (loop + (if (r0 != ,(charset-id 'cyrillic-iso8859-5)) + (write-read-repeat r0) + ((read r0) + (write-read-repeat r0 , cyrillic-koi8-u-encode-table)))))) + "CCL program to encode KOI8.") + +(make-coding-system + 'koi8-u 'ccl + "KOI8-U 8-bit encoding for Cyrillic." + '(decode ccl-decode-koi8-u + encode ccl-encode-koi8-u + mnemonic "KOI8")) + +;; `iso-8-1' is not correct, but XEmacs doesn't have a `ccl' category +(coding-system-put 'koi8-u 'category 'iso-8-1) + +;; (define-ccl-program ccl-encode-koi8-u-font +;; `(0 +;; ((r1 |= 128) +;; (r1 = r1 ,cyrillic-koi8-u-encode-table))) +;; "CCL program to encode Cyrillic chars to koi8-u font.") + +;; (setq font-ccl-encoder-alist +;; (cons '("koi8-u" . ccl-encode-koi8-u-font) font-ccl-encoder-alist)) + +(defvar cyrillic-koi8-u-to-external-code-table + (let ((table (make-char-table 'generic)) + (i 0) + (len (length cyrillic-koi8-u-decode-table))) + (while (< i len) + (let ((ch (aref cyrillic-koi8-u-decode-table i))) + (if (characterp ch) + (put-char-table ch i table))) + (incf i))) + "Table to convert from characters to their Koi8-U code.") + +(set-language-info-alist + "Cyrillic-KOI8-U" '((charset cyrillic-iso8859-5) + (coding-system koi8-u) + (coding-priority koi8-u) + (input-method . "cyrillic-yawerty") + (features cyril-util) + (tutorial . "TUTORIAL.ru") + (sample-text . "Russian (,L@caaZXY(B) ,L7T`PRabRcYbU(B!") + (documentation . "Support for Cyrillic KOI8-U.")) + '("Cyrillic")) + + ) + + +(provide 'ukr-koi8u) |