rpms/fonts-chinese/devel FAPIcidfmap.zh_CN, NONE, 1.1 FAPIcidfmap.zh_TW, NONE, 1.1 fonts-chinese.spec, 1.4, 1.5 CIDFnmap.zh_CN, 1.2, NONE CIDFnmap.zh_TW, 1.2, NONE

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Jul 14 07:23:50 UTC 2005


Author: tagoh

Update of /cvs/dist/rpms/fonts-chinese/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv12358

Modified Files:
	fonts-chinese.spec 
Added Files:
	FAPIcidfmap.zh_CN FAPIcidfmap.zh_TW 
Removed Files:
	CIDFnmap.zh_CN CIDFnmap.zh_TW 
Log Message:
* Thu Jul 14 2005 Akira TAGOH <tagoh at redhat.com> - 2.15-3
- use FAPIcidfmap instead of CIDFnmap for gs8.


--- NEW FILE FAPIcidfmap.zh_CN ---
%!
% The map is a set of records like this :
%
%  /CIDfont_name options_dict ;
%
% where options_dict is a dictionary with the following entries :
%
% Key         Type      Description
% Path        string    Absolute path to font file, or relative path to font file from
%                       the GS_EXTFONTPATH value.
% CIDFontType integer   PostScript type for this CID font. Only 0 is currently allowed.
%                       Note that this is unrelated to the real type of the font file -
%                       the bridge will perform format conversion.
% FAPI        name      Name of the renderer to be used with the font. /AgfaUFST and
%                       /FreeType is now allowed -- depends on which options Ghostscript
%                       was built with.
% SubfontId   integer   (optional) Index of the font in font collection, such as FCO or TTC.
%                       It is being ignored if /Path doesn't specify a collection.
% CSI         array     Must have strongly 2 elements.
%                       The first element of the array specifies Ordering of CIDSystemInfo.
%                       The second element specifies Supplement of CIDSystemInfo.
%
% Use regular Postscript syntax.
%
/BousungEG-Light-GB	<< /Path (/usr/share/fonts/chinese/TrueType/gbsn00lp.ttf) /CIDFontType 0 /FAPI /FreeType /CSI [(GB1) 4] >> ;
/GBZenKai-Medium	<< /Path (/usr/share/fonts/chinese/TrueType/gkai00mp.ttf) /CIDFontType 0 /FAPI /FreeType /CSI [(GB1) 4] >> ;
%
/MSungGBK-Light		<< /Path (/usr/share/fonts/chinese/TrueType/gbsn00lp.ttf) /CIDFontType 0 /FAPI /FreeType /CSI [(GB1) 4] >> ;
/Adobe-GB1		<< /Path (/usr/share/fonts/chinese/TrueType/gbsn00lp.ttf) /CIDFontType 0 /FAPI /FreeType /CSI [(GB1) 4] >> ;


--- NEW FILE FAPIcidfmap.zh_TW ---
%!
% The map is a set of records like this :
%
%  /CIDfont_name options_dict ;
%
% where options_dict is a dictionary with the following entries :
%
% Key         Type      Description
% Path        string    Absolute path to font file, or relative path to font file from
%                       the GS_EXTFONTPATH value.
% CIDFontType integer   PostScript type for this CID font. Only 0 is currently allowed.
%                       Note that this is unrelated to the real type of the font file -
%                       the bridge will perform format conversion.
% FAPI        name      Name of the renderer to be used with the font. /AgfaUFST and
%                       /FreeType is now allowed -- depends on which options Ghostscript
%                       was built with.
% SubfontId   integer   (optional) Index of the font in font collection, such as FCO or TTC.
%                       It is being ignored if /Path doesn't specify a collection.
% CSI         array     Must have strongly 2 elements.
%                       The first element of the array specifies Ordering of CIDSystemInfo.
%                       The second element specifies Supplement of CIDSystemInfo.
%
% Use regular Postscript syntax.
%
/ZenKai-Medium		<< /Path (/usr/share/fonts/chinese/TrueType/bkai00mp.ttf) /CIDFontType 0 /FAPI /FreeType /CSI [(CNS1) 4] >> ;
/ShanHeiSun-Light	<< /Path (/usr/share/fonts/chinese/TrueType/bsmi00lp.ttf) /CIDFontType 0 /FAPI /FreeType /CSI [(CNS1) 4] >> ;
%
/Adobe-CNS1		<< /Path (/usr/share/fonts/chinese/TrueType/bsmi00lp.ttf) /CIDFontType 0 /FAPI /FreeType /CSI [(CNS1) 4] >> ;


Index: fonts-chinese.spec
===================================================================
RCS file: /cvs/dist/rpms/fonts-chinese/devel/fonts-chinese.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fonts-chinese.spec	20 Apr 2005 04:01:27 -0000	1.4
+++ fonts-chinese.spec	14 Jul 2005 07:23:48 -0000	1.5
@@ -5,7 +5,7 @@
 Summary:    Chinese TrueType Font -- Simplified and Traditional Chinese Ming and Kai Face.
 Name:		fonts-chinese
 Version:	2.15
-Release:    2
+Release:    3
 License:	Arphic Public License (GPL-like)
 Group:		User Interface/X
 BuildArch:	noarch
@@ -19,8 +19,8 @@
 Source11:	arphicpl-big5.txt
 Source12:	arphicpl-gb.txt
 Source13:	arphic-release.txt
-Source20:	CIDFnmap.zh_TW
-Source21:	CIDFnmap.zh_CN
+Source20:	FAPIcidfmap.zh_TW
+Source21:	FAPIcidfmap.zh_CN
 
 Requires(post,postun): ttmkfdir >= 3.0.6
 Requires(post,postun): /usr/X11R6/bin/mkfontdir /usr/sbin/chkfontpath
@@ -95,10 +95,13 @@
 %ghost %verify(not md5 size mtime) %{ttfontdir}/fonts.cache-1
 %ghost %verify(not md5 size mtime) %{ttfontdir}/fonts.dir
 %ghost %verify(not md5 size mtime) %{ttfontdir}/fonts.scale
-%{cidmapdir}/CIDFnmap.zh_TW
-%{cidmapdir}/CIDFnmap.zh_CN
+%{cidmapdir}/FAPIcidfmap.zh_TW
+%{cidmapdir}/FAPIcidfmap.zh_CN
 
 %changelog
+* Thu Jul 14 2005 Akira TAGOH <tagoh at redhat.com> - 2.15-3
+- use FAPIcidfmap instead of CIDFnmap for gs8.
+
 * Wed Apr 20 2005 Akira TAGOH <tagoh at redhat.com> - 2.15-2
 - Updated the font path in CIDFnmap.{zh_CN,zh_TW} (John Thacker, #155404)
 


--- CIDFnmap.zh_CN DELETED ---


--- CIDFnmap.zh_TW DELETED ---




More information about the fedora-cvs-commits mailing list