summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Brenner <russellbrenner@google.com>2011-09-26 16:22:14 -0700
committerRussell Brenner <russellbrenner@google.com>2011-09-27 10:10:57 -0700
commit4baaa05f0383bee670a0bebc177b94a1c119eab7 (patch)
tree01314f65ee7f715ad75c62e5c0bf9885b3bef55b
parent9580c7653aaee50ec70298dd8160269d6b14c199 (diff)
downloadlohit-fonts-4baaa05f0383bee670a0bebc177b94a1c119eab7.tar.gz
Add Bengali and Tamil fonts on Crespo
Fonts are included only when SMALLER_FONT_FOOTPRINT is not true, so they're on Crespo, but not Stingray. Bug: 5370370 Change-Id: I4001c5db1800e9f4dc15a1eaeae25248a83df34c
-rw-r--r--Android.mk17
-rw-r--r--fonts.mk10
-rw-r--r--lohit-bengali-ttf/66-lohit-bengali.conf22
-rw-r--r--lohit-bengali-ttf/AUTHORS11
-rw-r--r--lohit-bengali-ttf/COPYRIGHT5
-rw-r--r--lohit-bengali-ttf/ChangeLog13
-rw-r--r--lohit-bengali-ttf/ChangeLog.old175
-rw-r--r--lohit-bengali-ttf/Lohit-Bengali.ttfbin0 -> 139296 bytes
-rw-r--r--lohit-bengali-ttf/OFL.txt95
-rw-r--r--lohit-bengali-ttf/README21
-rw-r--r--lohit-bengali-ttf/README.cvs20
-rw-r--r--lohit-tamil-ttf/66-lohit-tamil.conf22
-rw-r--r--lohit-tamil-ttf/AUTHORS11
-rw-r--r--lohit-tamil-ttf/COPYRIGHT5
-rw-r--r--lohit-tamil-ttf/ChangeLog19
-rw-r--r--lohit-tamil-ttf/ChangeLog.old175
-rw-r--r--lohit-tamil-ttf/Lohit-Tamil.ttfbin0 -> 66184 bytes
-rw-r--r--lohit-tamil-ttf/OFL.txt95
-rw-r--r--lohit-tamil-ttf/README21
-rw-r--r--lohit-tamil-ttf/README.cvs20
20 files changed, 756 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index bc0d7c7..3cf4bb5 100644
--- a/Android.mk
+++ b/Android.mk
@@ -16,12 +16,27 @@
# to copy over the NOTICE file.
LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
+include $(CLEAR_VARS)
LOCAL_MODULE := Lohit-Devanagari.ttf
LOCAL_SRC_FILES := lohit-devanagari-ttf/$(LOCAL_MODULE)
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
+include $(BUILD_PREBUILT)
+include $(CLEAR_VARS)
+LOCAL_MODULE := Lohit-Bengali.ttf
+LOCAL_SRC_FILES := lohit-bengali-ttf/$(LOCAL_MODULE)
+LOCAL_MODULE_CLASS := ETC
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
+include $(BUILD_PREBUILT)
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := Lohit-Tamil.ttf
+LOCAL_SRC_FILES := lohit-tamil-ttf/$(LOCAL_MODULE)
+LOCAL_MODULE_CLASS := ETC
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
include $(BUILD_PREBUILT)
diff --git a/fonts.mk b/fonts.mk
index c0c882b..86e5d23 100644
--- a/fonts.mk
+++ b/fonts.mk
@@ -16,5 +16,15 @@
# PRODUCT_COPY_FILES to install the font files, so that the NOTICE file can
# get installed too.
+
+ifeq ($(SMALLER_FONT_FOOTPRINT),true)
+# Smaller fonts alternatives
PRODUCT_PACKAGES := \
Lohit-Devanagari.ttf
+else
+## Full font set alternatives
+#PRODUCT_PACKAGES := \
+# Lohit-Devanagari.ttf \
+# Lohit-Bengali.ttf \
+# Lohit-Tamil.ttf
+endif
diff --git a/lohit-bengali-ttf/66-lohit-bengali.conf b/lohit-bengali-ttf/66-lohit-bengali.conf
new file mode 100644
index 0000000..ba77471
--- /dev/null
+++ b/lohit-bengali-ttf/66-lohit-bengali.conf
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<fontconfig>
+<match>
+ <test name="lang" compare="contains">
+ <string>bn</string>
+ </test>
+ <test name="family">
+ <string>sans-serif</string>
+ </test>
+ <edit name="family" mode="prepend" binding="same">
+ <string>Lohit Bengali</string>
+ </edit>
+</match>
+<alias>
+ <family>Lohit Bengali</family>
+ <default>
+ <family>sans-serif</family>
+ </default>
+</alias>
+</fontconfig>
+
diff --git a/lohit-bengali-ttf/AUTHORS b/lohit-bengali-ttf/AUTHORS
new file mode 100644
index 0000000..375cc61
--- /dev/null
+++ b/lohit-bengali-ttf/AUTHORS
@@ -0,0 +1,11 @@
+Contributors :-
+- Leon Ho
+- Rahul Bhalerao
+- Parag Nemade
+- Ramkrishna Reddy
+- Darshan Santani
+- Baishampayan Ghose
+- Hiran Venugopalan
+- Pravin Satpute
+- Sandeep Shedmake
+- Bernard Massot <bmassot@free.fr>
diff --git a/lohit-bengali-ttf/COPYRIGHT b/lohit-bengali-ttf/COPYRIGHT
new file mode 100644
index 0000000..2475691
--- /dev/null
+++ b/lohit-bengali-ttf/COPYRIGHT
@@ -0,0 +1,5 @@
+Copyright 2011 Lohit Fonts Project contributors.
+<http://fedorahosted.org/lohit>
+
+ Licensed under the SIL Open Font License 1.1 (see file
+ OFL.txt)
diff --git a/lohit-bengali-ttf/ChangeLog b/lohit-bengali-ttf/ChangeLog
new file mode 100644
index 0000000..4579e30
--- /dev/null
+++ b/lohit-bengali-ttf/ChangeLog
@@ -0,0 +1,13 @@
+ lohit-bengali
+Current Version :- 2.5.0
+
+* Wed Sep 21 2011 Pravin Satpute <psatpute@redhat.com> - 2.5.0
+- relicensing to OFL 1.1
+
+* Tue Aug 30 2011 Pravin Satpute <psatpute@redhat.com> - 2.4.3.1
+- minor release, added makefile in tarball
+
+* Fri Aug 28 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.3
+- first release with split tarball
+- see Changelog.old for previous changes
+
diff --git a/lohit-bengali-ttf/ChangeLog.old b/lohit-bengali-ttf/ChangeLog.old
new file mode 100644
index 0000000..019e5cd
--- /dev/null
+++ b/lohit-bengali-ttf/ChangeLog.old
@@ -0,0 +1,175 @@
+ fonts-indic
+Current Version :- 2.4.3
+* Wed Sep 09 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.3
+- updated conf file for all language
+- added changelog for individual lang
+- modified makedist.sh generate.sh for releasing new tarballs
+
+* Fri Aug 28 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.2
+- added conf file for all fonts
+- contributions from Parag Nemade <pnemade@redhat.com> for conf files
+
+* Wed Aug 12 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.1
+- Update Copyright
+
+* Tue Aug 04 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.0
+- Added Unicode 5.1 support in All Lohit fonts
+
+* Thu Mar 05 2009 Rahul Bhalerao <rbhalera@redhat.com> - 2.3.8
+- Bug 428427 - [kn_IN][fonts-indic] - 0CB5+0CCA is wrongly rendering
+- Bug 450699 - [ta_IN]Errors in "sh" and "shrI" in Lohit Tamil font (fixed in font, needs rendering update)
+- Bug 476427 - [te_IN] - Consonant+Virama+Consonant+Virama+space renders the second virama as a separate glyph in lohit-telugu font
+- Bug 479100 - [kn_IN] Conjunct combination of U0C9D with U0CCA/U0CCB is rendering wrongly
+- Bug 483530 - [bn_IN]Lohit Bengali font cheating about character support
+- Added Lohit-Assamese
+- Modified README file.
+
+* Tue Sep 09 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.3.1
+- Bug 216400: [te_IN] - Anaconda GUI - Release Notes button is overlapping
+with other texts in a specific page
+
+* Wed Aug 20 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.3.0
+- Bug 215902: [hi_IN, mr_IN]Incorrect extent of 0x093f when attached to a composite character which has width greater than a single character (hi_IN & maybe others)
+- Forked Lohit Hindi into Marathi, Maithili, Kashmiri, Konkani, Sindhi and Nepali.
+
+* Fri Jun 06 2008 Rahul Bhalerao <rbhalera@redhat.com>
+- Bug 445176: [ml_IN] Conjuncts combining with 0D30 do not form the pre based glyph
+
+* Fri Jun 06 2008 Rahul Bhalerao <rbhalera@redhat.com>
+- Improved Anchoring(blwm Anchor-0) for Hindi font.
+- Corrected positioning of U+0953 for Hindi font.
+
+* Tue Apr 29 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.2.1
+- Resolved bugs (bugzilla.redhat.com):
+- Bug 444559 Processed: [ml_IN] Wrong shape for conjuncts formed using 0D30
+(xRa) in a word
+- Bug 444561 Processed: [ml_IN] Conjuncts does not get combined with 0D30 to
+form the pre based glyph
+- Bug 444563: [ml_IN] When 0D2F is combined with a consonant and followed by
+0D15, 0D2F joins with 0D15
+
+* Tue Apr 08 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.2.0
+- Resolved bugs (bugzilla.redhat.com):
+- Bug 202400: [hi_IN] New codepoints/glyphs in Unicode 5.0
+- Bug 205981: [hi_IN]The font file of Devanagari(lohit_hi.ttf) lacks the glyph
+of U+0x0904
+- Bug 206426: [hi_IN, mr_IN] Some Glyphs are missing and some GPOS shapes
+should be more perfect - Priority - C
+- Bug 239630: [hi_IN] the glyph of 0x0953 in lohit_hi.ttf is wrong.
+- Bug 428427: [kn_IN][fonts-indic] - 0CB5+0CCA is wrongly rendering
+
+* Thu Feb 28 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.9
+- Resolved bugs(bugzilla.redhat.com):
+- Bug 431035: [ml_IN] Glyph to be formed for nine consonants + 0D4D + 0D32
+- Bug 433437: [ml_IN] Rendering combination incorrect with 0D35
+- Bug 433440: [ml_IN] Rendering combination incorrect with 0D2F
+- Contributions from Hiran Venugopalan (xRa glyphs and few other)
+
+* Fri Jan 25 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.8
+- Bug 192812: [ml_IN]GPOS issues in new Malayalam font
+- Bug 402321: [ml_IN} Wrong combinations used for the conjunct 'ന്പ'
+- Bug 402331: [ml_IN] Wrong combinations used for conjunct 'ന്‍റ'
+- Bug 424701: [ml_IN] words are shown joined (very low space shown on screen)
+- Bug 429526: [ml_IN]: Removal of a glyph from font file
+- Bug 247233: Additional special character rendering for assamese [as-IN] and bengali [bn-IN]
+
+* Tue Jan 15 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.7
+- Updated the makedist.sh script
+
+* Tue Jan 15 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.7
+- Bug 233419: [kn_IN] GSUB's combinaing with additional dependent vowel are
+not rendering correctly
+
+* Fri Dec 14 2007 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.6
+- Bug 234284: [pa_IN] Enlarge size for asterik(*)
+
+* Mon Mar 26 2007 Parag Nemade <pnemade@redhat.com> - 2.1.5
+- Resolved Bugs from Parag Nemade
+- Bug 231965: [kn_IN] wrong Conjuct combines during the formation kannada letter [yo]
+- Bug 233257: [kn_IN] Conjuct combination of U0CAE with U0CCB is rendering wrongly
+- Bug 233415: [kn_IN] GSUB's combinaing with additional dependent vowel are not rendering correctly
+- Bug 233554: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC0 are not rendering correctly
+- Bug 233555: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC7 are not rendering correctly
+- Bug 233556: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC6 are not rendering correctly
+- Bug 233557: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC8 are not rendering correctly
+- Bug 233558: [kn_IN] GSUB's combinaing with additional dependent vowel U0CCBare not rendering correctly
+- Bug 233559: [kn_IN] GSUB's combinaing with additional dependent vowel U0CBE are not rendering correctly
+- Bug 233560: [kn_IN] GSUB's combinaing with additional dependent vowel U0CBF are not rendering correctly
+
+* Mon Mar 05 2007 Parag Nemade <pnemade@redhat.com> - 2.1.4
+- Resolved Bugs from Parag Nemade
+- Bug 221383: [kn_IN] GSUB combinations has problem with Ra
+
+* Mon Feb 19 2007 Parag Nemade <pnemade@redhat.com> - 2.1.3
+- Resolved Bugs from Parag Nemade
+- Bug 202401: [ta_IN] New codepoints/glyphs in Unicode 5.0
+- Bug 223774: [kn_IN] Some Ligature rules are wrong in the font file
+- Bug 223971: [kn_IN] Consonant + Halant + Consonant + Dependent Vowel not appearing properly in some rare cases
+- Bug 227971: [kn_IN] Combinations with 2 Halants not rendering properly
+
+* Tue Jan 16 2007 Parag Nemade <pnemade@redhat.com> - 2.1.2
+- Resolved Bugs from Parag Nemade
+- Bug 222407: [or_IN] [fonts-indic] - One GSUB Conjunct is not appearing with its correct shape
+- Bug 206434: [ml_IN] Digits are appearing in English instead of malayalam - Priority C
+- Bug 215894: Relative height of 0x0901 (and 0x0902) on 0x0915 is different than other devnagari characters (hi_IN, mr_IN)
+- Bug 222408: [te_IN] [fonts-indic] - Danda and Double Danda to be implemented with 0964 && 0965
+- Bug 222409: [kn_IN] [fonts-indic] - Danda and Double Danda to be implemented with 0964 && 0965
+- Bug 221384: [kn_IN] - shape of ra (U+0CB0) is not corret in combined character (below base)
+
+* Tue Jan 16 2007 Parag Nemade <pnemade@redhat.com> - 2.1.1
+- Added makedist.sh, generate.sh and generate.pe script files.
+
+* Fri Jan 12 2007 Parag Nemade <pnemade@redhat.com> - 2.0.13
+- Resolved Bugs from Parag Nemade
+- Bug 220880: [or_IN] Danda need to move from 0B64/0B65 to 0964/0965
+- Bug 222406: [ml_IN] Danda need to move from 0D64/0D65 to 0964/0965
+
+* Wed Jan 02 2007 Parag Nemade <pnemade@redhat.com> - 2.0.12
+- Resolved Bugs from Parag Nemade
+- Bug 220881: [ta_IN] [fonts-tamil] - Warning showing in the terminal when run apps with ta_IN locale
+- Bug 220882: [hi_IN] rendering problem for number "5" in postscript file
+
+* Wed Dec 13 2006 Parag Nemade <pnemade@redhat.com> - 2.0.11
+- Resolved Bugs from Parag Nemade
+- Bug 216639: [kn_IN] OTF rules to be fixed - Priority A
+- Bug 217482: [kn_IN] - pango - Composed Char not rendered properly
+- Bug 219583: [pa_IN] Punjabi fonts' size is big as compared to English
+- Bug 218588: [gu_IN] Qt doesn't display virama properly
+
+* Tue Dec 06 2006 Parag Nemade <pnemade@redhat.com> - 2.0.10
+- Resolved Bugs from Parag Nemade
+- Bug 207269: [ta_IN] - Some conjunct characters not appearing with proper shape - Priority - B
+- Bug 217482: [kn_IN] - pango - Composed Char not rendered properly
+- Bug 216628: [ml] characters are not shown bold during selecting BOLD font
+- Bug 218588: [gu_IN] Qt doesn't display virama properly
+- Bug 206599: [te_IN] - Some of the Priority - C GSUB Conjuncts are not appearing with its actual shape
+- Resolved Bugs from LingNing Zhang
+- Bug 218586: [ml_IN] 0d2f+0d4d combination is invaild when put in word
+- Bug 218587: [ml_IN] 0d35+0d4d combination is invaild (should not combine)
+
+* Tue Nov 21 2006 Parag Nemade <pnemade@redhat.com> - 2.0.9
+- Fixed Bugs from Parag Nemade
+- Bug 216060: [pa_IN]Lohit Punjabi: (U+0A03) Gurmukhi Sign Visarga right margin is too wide.
+
+* Tue Nov 21 2006 Parag Nemade <pnemade@redhat.com> - 2.0.8
+- Fixed Bugs from Parag Nemade
+- Bug 216629 : [te_IN] GPOS position should be at middle instead of left hand side - Priority B
+- Bug 216631 : [or_IN] one GSUB Rule is wrongly defined - Priority A
+- Bug 216628 : [ml] characters are not shown bold during selecting BOLD font
+- Bug 216624 : [pa_IN] 0a01/0a03/0964/0965 is missing from font
+- Bug 216634 : Glyphs for two combinations are wrong in Gujarati (gu_IN)
+- Bug 197216 : [bn_IN]Incorrect glyph for conjunct
+- Bug 215894 : Relative height of 0x0901 (and 0x0902) on 0x0915 is different than
+ other devnagari characters (hi_IN, mr_IN)
+- Fixed Bugs from LingNing Zhang
+- Bug 216626 : [as_IN] Pango - A particular char when Conjuncts, creates Cursor Nevigation Problem
+- Bug 216627 : [ml_IN] The glyph of 0x25CC is not existing in lohit_ml.ttf
+- Bug 216639 : [kn_IN] OTF rules to be fixed - Priority A
+
+* Tue 17 oct 2006 Leon Ho <llch@redhat.com> - 2.0.7
+- Bug 206601: [ta_IN] Glyph is missing for Unicode U+0BB6 - Priority - A (Rahul Bhalerao)
+- Bug 216639: [kn_IN] OTF rules to be fixed - Priority A (Ramakrishna Reddy)
+
+* Fri 29 Sep 2006 Leon Ho <llch@redhat.com> - 2.0.6
+- Bug 208525: [ml_IN]the glyph of 0d33+0d4d+0d33 is wrong (LingNing Zhang)
+- Bug 208540: [ml_IN]the glyph of 0d2f+0d4d and the glyph of 0d2f+0d4d+0d2f are wrong (LingNing Zhang)
diff --git a/lohit-bengali-ttf/Lohit-Bengali.ttf b/lohit-bengali-ttf/Lohit-Bengali.ttf
new file mode 100644
index 0000000..7fbd6a0
--- /dev/null
+++ b/lohit-bengali-ttf/Lohit-Bengali.ttf
Binary files differ
diff --git a/lohit-bengali-ttf/OFL.txt b/lohit-bengali-ttf/OFL.txt
new file mode 100644
index 0000000..ad22256
--- /dev/null
+++ b/lohit-bengali-ttf/OFL.txt
@@ -0,0 +1,95 @@
+Copyright 2011 Lohit Fonts Project contributors
+ <http://fedorahosted.org/lohit>,
+with Reserved Font Name Lohit.
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/lohit-bengali-ttf/README b/lohit-bengali-ttf/README
new file mode 100644
index 0000000..e4f8207
--- /dev/null
+++ b/lohit-bengali-ttf/README
@@ -0,0 +1,21 @@
+ Lohit Fonts Project
+
+1) Generating .ttf file from source
+ Example
+ $tar -xvf lohit-hindi-2.4.3.tar.gz
+ $cd lohit-hindi-2.4.3
+ $make
+
+2) Installing font (.ttf) file
+ You can then install .ttf font files by copying them to ~/.fonts directory.
+ Then execute fc-cache command and then relogin to use that font.
+
+
+Lohit Project Information :-
+See https://fedorahosted.org/lohit/ for more details.
+
+Mailing list:-
+http://www.redhat.com/mailman/listinfo/lohit-devel-list
+
+
+
diff --git a/lohit-bengali-ttf/README.cvs b/lohit-bengali-ttf/README.cvs
new file mode 100644
index 0000000..59dafe9
--- /dev/null
+++ b/lohit-bengali-ttf/README.cvs
@@ -0,0 +1,20 @@
+Lohit Fonts Project
+
+Scripts Usage:-
+Lohit CVS is now included with 2 shell scripts
+1)generate.sh
+ Once you checkout the .sfd files from lohit CVS, you just need to execute this script
+ and you will get all .ttf files in respective language directory. You can then install those font files
+ by copying them to ~/.fonts directory. Then execute fc-cache command and then relogin to use that font.
+
+2)makedist.sh
+ Use this script to generate upstream tarball used by fonts-indic SPEC to build rpms.
+ e.g.
+ To generate lohit-lang-$version.tar.gz follow steps as
+ 1) Anonymous CVS access
+ $ svn co http://svn.fedorahosted.org/svn/lohit
+ 1) cd lohit
+ 2) sh makedist.sh
+ You will get upstream tarball used to build lohit-fonts-$version-1 rpm.
+ NOTE:- This script can be used only from 2.1.1 and above version of this package.
+
diff --git a/lohit-tamil-ttf/66-lohit-tamil.conf b/lohit-tamil-ttf/66-lohit-tamil.conf
new file mode 100644
index 0000000..daac43b
--- /dev/null
+++ b/lohit-tamil-ttf/66-lohit-tamil.conf
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<fontconfig>
+<match>
+ <test name="lang" compare="contains">
+ <string>ta</string>
+ </test>
+ <test name="family">
+ <string>sans-serif</string>
+ </test>
+ <edit name="family" mode="prepend">
+ <string>Lohit Tamil</string>
+ </edit>
+</match>
+<alias>
+ <family>Lohit Tamil</family>
+ <default>
+ <family>sans-serif</family>
+ </default>
+</alias>
+</fontconfig>
+
diff --git a/lohit-tamil-ttf/AUTHORS b/lohit-tamil-ttf/AUTHORS
new file mode 100644
index 0000000..375cc61
--- /dev/null
+++ b/lohit-tamil-ttf/AUTHORS
@@ -0,0 +1,11 @@
+Contributors :-
+- Leon Ho
+- Rahul Bhalerao
+- Parag Nemade
+- Ramkrishna Reddy
+- Darshan Santani
+- Baishampayan Ghose
+- Hiran Venugopalan
+- Pravin Satpute
+- Sandeep Shedmake
+- Bernard Massot <bmassot@free.fr>
diff --git a/lohit-tamil-ttf/COPYRIGHT b/lohit-tamil-ttf/COPYRIGHT
new file mode 100644
index 0000000..2475691
--- /dev/null
+++ b/lohit-tamil-ttf/COPYRIGHT
@@ -0,0 +1,5 @@
+Copyright 2011 Lohit Fonts Project contributors.
+<http://fedorahosted.org/lohit>
+
+ Licensed under the SIL Open Font License 1.1 (see file
+ OFL.txt)
diff --git a/lohit-tamil-ttf/ChangeLog b/lohit-tamil-ttf/ChangeLog
new file mode 100644
index 0000000..e344cd2
--- /dev/null
+++ b/lohit-tamil-ttf/ChangeLog
@@ -0,0 +1,19 @@
+ lohit-tamil
+Current Version :- 2.5.0
+
+* Wed Sep 21 2011 Pravin Satpute <psatpute@redhat.com> - 2.5.0
+- relicensing to OFL 1.1
+- resolved 629824, 673419
+- updated conf file
+
+* Tue Nov 24 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.5
+- fixed rh bug 536724
+- updated ascent, descent values as well OS/2 metrics
+
+* Fri Aug 28 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.4
+- fixe rh bug 524457
+
+* Fri Aug 28 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.3
+- first release with split tarball
+- see Changelog.old for previous changes
+
diff --git a/lohit-tamil-ttf/ChangeLog.old b/lohit-tamil-ttf/ChangeLog.old
new file mode 100644
index 0000000..019e5cd
--- /dev/null
+++ b/lohit-tamil-ttf/ChangeLog.old
@@ -0,0 +1,175 @@
+ fonts-indic
+Current Version :- 2.4.3
+* Wed Sep 09 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.3
+- updated conf file for all language
+- added changelog for individual lang
+- modified makedist.sh generate.sh for releasing new tarballs
+
+* Fri Aug 28 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.2
+- added conf file for all fonts
+- contributions from Parag Nemade <pnemade@redhat.com> for conf files
+
+* Wed Aug 12 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.1
+- Update Copyright
+
+* Tue Aug 04 2009 Pravin Satpute <psatpute@redhat.com> - 2.4.0
+- Added Unicode 5.1 support in All Lohit fonts
+
+* Thu Mar 05 2009 Rahul Bhalerao <rbhalera@redhat.com> - 2.3.8
+- Bug 428427 - [kn_IN][fonts-indic] - 0CB5+0CCA is wrongly rendering
+- Bug 450699 - [ta_IN]Errors in "sh" and "shrI" in Lohit Tamil font (fixed in font, needs rendering update)
+- Bug 476427 - [te_IN] - Consonant+Virama+Consonant+Virama+space renders the second virama as a separate glyph in lohit-telugu font
+- Bug 479100 - [kn_IN] Conjunct combination of U0C9D with U0CCA/U0CCB is rendering wrongly
+- Bug 483530 - [bn_IN]Lohit Bengali font cheating about character support
+- Added Lohit-Assamese
+- Modified README file.
+
+* Tue Sep 09 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.3.1
+- Bug 216400: [te_IN] - Anaconda GUI - Release Notes button is overlapping
+with other texts in a specific page
+
+* Wed Aug 20 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.3.0
+- Bug 215902: [hi_IN, mr_IN]Incorrect extent of 0x093f when attached to a composite character which has width greater than a single character (hi_IN & maybe others)
+- Forked Lohit Hindi into Marathi, Maithili, Kashmiri, Konkani, Sindhi and Nepali.
+
+* Fri Jun 06 2008 Rahul Bhalerao <rbhalera@redhat.com>
+- Bug 445176: [ml_IN] Conjuncts combining with 0D30 do not form the pre based glyph
+
+* Fri Jun 06 2008 Rahul Bhalerao <rbhalera@redhat.com>
+- Improved Anchoring(blwm Anchor-0) for Hindi font.
+- Corrected positioning of U+0953 for Hindi font.
+
+* Tue Apr 29 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.2.1
+- Resolved bugs (bugzilla.redhat.com):
+- Bug 444559 Processed: [ml_IN] Wrong shape for conjuncts formed using 0D30
+(xRa) in a word
+- Bug 444561 Processed: [ml_IN] Conjuncts does not get combined with 0D30 to
+form the pre based glyph
+- Bug 444563: [ml_IN] When 0D2F is combined with a consonant and followed by
+0D15, 0D2F joins with 0D15
+
+* Tue Apr 08 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.2.0
+- Resolved bugs (bugzilla.redhat.com):
+- Bug 202400: [hi_IN] New codepoints/glyphs in Unicode 5.0
+- Bug 205981: [hi_IN]The font file of Devanagari(lohit_hi.ttf) lacks the glyph
+of U+0x0904
+- Bug 206426: [hi_IN, mr_IN] Some Glyphs are missing and some GPOS shapes
+should be more perfect - Priority - C
+- Bug 239630: [hi_IN] the glyph of 0x0953 in lohit_hi.ttf is wrong.
+- Bug 428427: [kn_IN][fonts-indic] - 0CB5+0CCA is wrongly rendering
+
+* Thu Feb 28 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.9
+- Resolved bugs(bugzilla.redhat.com):
+- Bug 431035: [ml_IN] Glyph to be formed for nine consonants + 0D4D + 0D32
+- Bug 433437: [ml_IN] Rendering combination incorrect with 0D35
+- Bug 433440: [ml_IN] Rendering combination incorrect with 0D2F
+- Contributions from Hiran Venugopalan (xRa glyphs and few other)
+
+* Fri Jan 25 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.8
+- Bug 192812: [ml_IN]GPOS issues in new Malayalam font
+- Bug 402321: [ml_IN} Wrong combinations used for the conjunct 'ന്പ'
+- Bug 402331: [ml_IN] Wrong combinations used for conjunct 'ന്‍റ'
+- Bug 424701: [ml_IN] words are shown joined (very low space shown on screen)
+- Bug 429526: [ml_IN]: Removal of a glyph from font file
+- Bug 247233: Additional special character rendering for assamese [as-IN] and bengali [bn-IN]
+
+* Tue Jan 15 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.7
+- Updated the makedist.sh script
+
+* Tue Jan 15 2008 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.7
+- Bug 233419: [kn_IN] GSUB's combinaing with additional dependent vowel are
+not rendering correctly
+
+* Fri Dec 14 2007 Rahul Bhalerao <rbhalera@redhat.com> - 2.1.6
+- Bug 234284: [pa_IN] Enlarge size for asterik(*)
+
+* Mon Mar 26 2007 Parag Nemade <pnemade@redhat.com> - 2.1.5
+- Resolved Bugs from Parag Nemade
+- Bug 231965: [kn_IN] wrong Conjuct combines during the formation kannada letter [yo]
+- Bug 233257: [kn_IN] Conjuct combination of U0CAE with U0CCB is rendering wrongly
+- Bug 233415: [kn_IN] GSUB's combinaing with additional dependent vowel are not rendering correctly
+- Bug 233554: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC0 are not rendering correctly
+- Bug 233555: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC7 are not rendering correctly
+- Bug 233556: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC6 are not rendering correctly
+- Bug 233557: [kn_IN] GSUB's combinaing with additional dependent vowel U0CC8 are not rendering correctly
+- Bug 233558: [kn_IN] GSUB's combinaing with additional dependent vowel U0CCBare not rendering correctly
+- Bug 233559: [kn_IN] GSUB's combinaing with additional dependent vowel U0CBE are not rendering correctly
+- Bug 233560: [kn_IN] GSUB's combinaing with additional dependent vowel U0CBF are not rendering correctly
+
+* Mon Mar 05 2007 Parag Nemade <pnemade@redhat.com> - 2.1.4
+- Resolved Bugs from Parag Nemade
+- Bug 221383: [kn_IN] GSUB combinations has problem with Ra
+
+* Mon Feb 19 2007 Parag Nemade <pnemade@redhat.com> - 2.1.3
+- Resolved Bugs from Parag Nemade
+- Bug 202401: [ta_IN] New codepoints/glyphs in Unicode 5.0
+- Bug 223774: [kn_IN] Some Ligature rules are wrong in the font file
+- Bug 223971: [kn_IN] Consonant + Halant + Consonant + Dependent Vowel not appearing properly in some rare cases
+- Bug 227971: [kn_IN] Combinations with 2 Halants not rendering properly
+
+* Tue Jan 16 2007 Parag Nemade <pnemade@redhat.com> - 2.1.2
+- Resolved Bugs from Parag Nemade
+- Bug 222407: [or_IN] [fonts-indic] - One GSUB Conjunct is not appearing with its correct shape
+- Bug 206434: [ml_IN] Digits are appearing in English instead of malayalam - Priority C
+- Bug 215894: Relative height of 0x0901 (and 0x0902) on 0x0915 is different than other devnagari characters (hi_IN, mr_IN)
+- Bug 222408: [te_IN] [fonts-indic] - Danda and Double Danda to be implemented with 0964 && 0965
+- Bug 222409: [kn_IN] [fonts-indic] - Danda and Double Danda to be implemented with 0964 && 0965
+- Bug 221384: [kn_IN] - shape of ra (U+0CB0) is not corret in combined character (below base)
+
+* Tue Jan 16 2007 Parag Nemade <pnemade@redhat.com> - 2.1.1
+- Added makedist.sh, generate.sh and generate.pe script files.
+
+* Fri Jan 12 2007 Parag Nemade <pnemade@redhat.com> - 2.0.13
+- Resolved Bugs from Parag Nemade
+- Bug 220880: [or_IN] Danda need to move from 0B64/0B65 to 0964/0965
+- Bug 222406: [ml_IN] Danda need to move from 0D64/0D65 to 0964/0965
+
+* Wed Jan 02 2007 Parag Nemade <pnemade@redhat.com> - 2.0.12
+- Resolved Bugs from Parag Nemade
+- Bug 220881: [ta_IN] [fonts-tamil] - Warning showing in the terminal when run apps with ta_IN locale
+- Bug 220882: [hi_IN] rendering problem for number "5" in postscript file
+
+* Wed Dec 13 2006 Parag Nemade <pnemade@redhat.com> - 2.0.11
+- Resolved Bugs from Parag Nemade
+- Bug 216639: [kn_IN] OTF rules to be fixed - Priority A
+- Bug 217482: [kn_IN] - pango - Composed Char not rendered properly
+- Bug 219583: [pa_IN] Punjabi fonts' size is big as compared to English
+- Bug 218588: [gu_IN] Qt doesn't display virama properly
+
+* Tue Dec 06 2006 Parag Nemade <pnemade@redhat.com> - 2.0.10
+- Resolved Bugs from Parag Nemade
+- Bug 207269: [ta_IN] - Some conjunct characters not appearing with proper shape - Priority - B
+- Bug 217482: [kn_IN] - pango - Composed Char not rendered properly
+- Bug 216628: [ml] characters are not shown bold during selecting BOLD font
+- Bug 218588: [gu_IN] Qt doesn't display virama properly
+- Bug 206599: [te_IN] - Some of the Priority - C GSUB Conjuncts are not appearing with its actual shape
+- Resolved Bugs from LingNing Zhang
+- Bug 218586: [ml_IN] 0d2f+0d4d combination is invaild when put in word
+- Bug 218587: [ml_IN] 0d35+0d4d combination is invaild (should not combine)
+
+* Tue Nov 21 2006 Parag Nemade <pnemade@redhat.com> - 2.0.9
+- Fixed Bugs from Parag Nemade
+- Bug 216060: [pa_IN]Lohit Punjabi: (U+0A03) Gurmukhi Sign Visarga right margin is too wide.
+
+* Tue Nov 21 2006 Parag Nemade <pnemade@redhat.com> - 2.0.8
+- Fixed Bugs from Parag Nemade
+- Bug 216629 : [te_IN] GPOS position should be at middle instead of left hand side - Priority B
+- Bug 216631 : [or_IN] one GSUB Rule is wrongly defined - Priority A
+- Bug 216628 : [ml] characters are not shown bold during selecting BOLD font
+- Bug 216624 : [pa_IN] 0a01/0a03/0964/0965 is missing from font
+- Bug 216634 : Glyphs for two combinations are wrong in Gujarati (gu_IN)
+- Bug 197216 : [bn_IN]Incorrect glyph for conjunct
+- Bug 215894 : Relative height of 0x0901 (and 0x0902) on 0x0915 is different than
+ other devnagari characters (hi_IN, mr_IN)
+- Fixed Bugs from LingNing Zhang
+- Bug 216626 : [as_IN] Pango - A particular char when Conjuncts, creates Cursor Nevigation Problem
+- Bug 216627 : [ml_IN] The glyph of 0x25CC is not existing in lohit_ml.ttf
+- Bug 216639 : [kn_IN] OTF rules to be fixed - Priority A
+
+* Tue 17 oct 2006 Leon Ho <llch@redhat.com> - 2.0.7
+- Bug 206601: [ta_IN] Glyph is missing for Unicode U+0BB6 - Priority - A (Rahul Bhalerao)
+- Bug 216639: [kn_IN] OTF rules to be fixed - Priority A (Ramakrishna Reddy)
+
+* Fri 29 Sep 2006 Leon Ho <llch@redhat.com> - 2.0.6
+- Bug 208525: [ml_IN]the glyph of 0d33+0d4d+0d33 is wrong (LingNing Zhang)
+- Bug 208540: [ml_IN]the glyph of 0d2f+0d4d and the glyph of 0d2f+0d4d+0d2f are wrong (LingNing Zhang)
diff --git a/lohit-tamil-ttf/Lohit-Tamil.ttf b/lohit-tamil-ttf/Lohit-Tamil.ttf
new file mode 100644
index 0000000..5811c66
--- /dev/null
+++ b/lohit-tamil-ttf/Lohit-Tamil.ttf
Binary files differ
diff --git a/lohit-tamil-ttf/OFL.txt b/lohit-tamil-ttf/OFL.txt
new file mode 100644
index 0000000..ad22256
--- /dev/null
+++ b/lohit-tamil-ttf/OFL.txt
@@ -0,0 +1,95 @@
+Copyright 2011 Lohit Fonts Project contributors
+ <http://fedorahosted.org/lohit>,
+with Reserved Font Name Lohit.
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/lohit-tamil-ttf/README b/lohit-tamil-ttf/README
new file mode 100644
index 0000000..e4f8207
--- /dev/null
+++ b/lohit-tamil-ttf/README
@@ -0,0 +1,21 @@
+ Lohit Fonts Project
+
+1) Generating .ttf file from source
+ Example
+ $tar -xvf lohit-hindi-2.4.3.tar.gz
+ $cd lohit-hindi-2.4.3
+ $make
+
+2) Installing font (.ttf) file
+ You can then install .ttf font files by copying them to ~/.fonts directory.
+ Then execute fc-cache command and then relogin to use that font.
+
+
+Lohit Project Information :-
+See https://fedorahosted.org/lohit/ for more details.
+
+Mailing list:-
+http://www.redhat.com/mailman/listinfo/lohit-devel-list
+
+
+
diff --git a/lohit-tamil-ttf/README.cvs b/lohit-tamil-ttf/README.cvs
new file mode 100644
index 0000000..59dafe9
--- /dev/null
+++ b/lohit-tamil-ttf/README.cvs
@@ -0,0 +1,20 @@
+Lohit Fonts Project
+
+Scripts Usage:-
+Lohit CVS is now included with 2 shell scripts
+1)generate.sh
+ Once you checkout the .sfd files from lohit CVS, you just need to execute this script
+ and you will get all .ttf files in respective language directory. You can then install those font files
+ by copying them to ~/.fonts directory. Then execute fc-cache command and then relogin to use that font.
+
+2)makedist.sh
+ Use this script to generate upstream tarball used by fonts-indic SPEC to build rpms.
+ e.g.
+ To generate lohit-lang-$version.tar.gz follow steps as
+ 1) Anonymous CVS access
+ $ svn co http://svn.fedorahosted.org/svn/lohit
+ 1) cd lohit
+ 2) sh makedist.sh
+ You will get upstream tarball used to build lohit-fonts-$version-1 rpm.
+ NOTE:- This script can be used only from 2.1.1 and above version of this package.
+