From: Kenichi Handa Date: Wed, 30 Oct 2002 03:51:06 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~188 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b0c63c231a326b97c28979990c3e3ccdcd848b4;p=emacs.git *** empty log message *** --- diff --git a/INSTALL b/INSTALL index a51327e6a68..9477c83ff6e 100644 --- a/INSTALL +++ b/INSTALL @@ -165,6 +165,53 @@ contains font support for most, if not all, of the charsets that Emacs supports. The font files should be usable separately with older X releases. +BDF fonts etl-unicode.tar.gz used by ps-print and ps-mule to print +Unicode characters are available from +and . + + +The new Indian implementation uses the ISFOC standard fonts. We use +CDAC ISFOC fonts to display the Devanagari script in Emacs. They are +copyrighted, but we received permission to use them in Emacs from the +font developers. These fonts can be obtained from the internet, or +may be found in C-DAC products (including downloadable ones). For +examle, you can search the CDAC Devanagari font `dvsr0ntt.ttf' by +using some search engines and they will guide you to appropriate URLs +to obtain them. + +After you've downloaded the fonts, then run the following Makefile +to create the appropriate BDF/PCF fonts. (You will need `ttf2bdf', +equipped with freetype 1, to create BDF file.) + +TTFS= asdr0ntt.ttf:Assamese\ + bndr0ntt.ttf:Bengali\ + dvsr0ntt.ttf:Devanagari\ + gjav0ntt.ttf:Gujarati\ + knum0ntt.ttf:Kannada\ + mlkr0ntt.ttf:Malayalam\ + orsr0ntt.ttf:Oriya\ + pnam0ntt.ttf:Punjabi\ + sdsr0ntt.ttf:Sanskrit\ + tlhm0ntt.ttf:Telugu\ + tmvl0ntt.ttf:Tamil + +all: + for f in ${TTFS}; do \ + ttf=`echo $$f | sed 's/:.*$$//'`; \ + reg=`echo $$f | sed 's/[^:]*://'`; \ + base=`basename $$ttf .ttf`; \ + echo Converting "$$ttf to $$base-XX.bdf/pcf with registry $$reg"; \ + for i in 16 24; do \ + ttf2bdf -p $${i} -r 100 -l 0_255 $$ttf > temp; \ + sed "/^FONT /s/ISO10646-1/$$reg-CDAC/" $$base-$$i.bdf; \ + bdftopcf $$base-$$i.bdf > $$base-$$i.pcf; \ + done; \ + done + rm -f temp + +clean: + rm -f *.pcf *.bdf + DETAILED BUILDING AND INSTALLATION: