comparison INSTALL @ 49801:2f5914b4e18a

Delete info about non-free Indian fonts.
author Richard M. Stallman <rms@gnu.org>
date Sat, 15 Feb 2003 10:51:39 +0000
parents e09f7a4a26cd
children 4c3754d75224
comparison
equal deleted inserted replaced
49800:fb804500f6c6 49801:2f5914b4e18a
170 170
171 BDF fonts etl-unicode.tar.gz used by ps-print and ps-mule to print 171 BDF fonts etl-unicode.tar.gz used by ps-print and ps-mule to print
172 Unicode characters are available from <URL:ftp://ftp.x.org/contrib/fonts/> 172 Unicode characters are available from <URL:ftp://ftp.x.org/contrib/fonts/>
173 and <URL:ftp://ftp.xfree86.org/pub/X.Org/contrib/fonts/>. 173 and <URL:ftp://ftp.xfree86.org/pub/X.Org/contrib/fonts/>.
174 174
175
176 The new Indian implementation uses the ISFOC standard fonts. We use
177 CDAC ISFOC fonts to display the Devanagari script in Emacs. They are
178 copyrighted, but we received permission to use them in Emacs from the
179 font developers. These fonts can be obtained from the internet, or
180 may be found in C-DAC products (including downloadable ones). For
181 examle, you can search the CDAC Devanagari font `dvsr0ntt.ttf' by
182 using some search engines and they will guide you to appropriate URLs
183 to obtain them.
184
185 After you've downloaded the fonts, then run the following Makefile
186 to create the appropriate BDF/PCF fonts. (You will need `ttf2bdf',
187 equipped with freetype 1, to create BDF file.)
188
189 TTFS= asdr0ntt.ttf:Assamese\
190 bndr0ntt.ttf:Bengali\
191 dvsr0ntt.ttf:Devanagari\
192 gjav0ntt.ttf:Gujarati\
193 knum0ntt.ttf:Kannada\
194 mlkr0ntt.ttf:Malayalam\
195 orsr0ntt.ttf:Oriya\
196 pnam0ntt.ttf:Punjabi\
197 sdsr0ntt.ttf:Sanskrit\
198 tlhm0ntt.ttf:Telugu\
199 tmvl0ntt.ttf:Tamil
200
201 all:
202 for f in ${TTFS}; do \
203 ttf=`echo $$f | sed 's/:.*$$//'`; \
204 reg=`echo $$f | sed 's/[^:]*://'`; \
205 base=`basename $$ttf .ttf`; \
206 echo Converting "$$ttf to $$base-XX.bdf/pcf with registry $$reg"; \
207 for i in 16 24; do \
208 ttf2bdf -p $${i} -r 100 -l 0_255 $$ttf > temp; \
209 sed "/^FONT /s/ISO10646-1/$$reg-CDAC/" <temp >$$base-$$i.bdf; \
210 bdftopcf $$base-$$i.bdf > $$base-$$i.pcf; \
211 done; \
212 done
213 rm -f temp
214
215 clean:
216 rm -f *.pcf *.bdf
217 175
218 176
219 DETAILED BUILDING AND INSTALLATION: 177 DETAILED BUILDING AND INSTALLATION:
220 178
221 (This is for a Unix or Unix-like system. For MS-DOS and Windows 3.X, 179 (This is for a Unix or Unix-like system. For MS-DOS and Windows 3.X,