~ubuntu-branches/ubuntu/quantal/cjk/quantal

« back to all changes in this revision

Viewing changes to utils/subfonts/sfd2uni.pl

  • Committer: Bazaar Package Importer
  • Author(s): Danai SAE-HAN (韓達耐), README.Debian-msgothic
  • Date: 2008-01-30 18:53:24 UTC
  • mfrom: (1.1.3 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080130185324-53m4h647q3v5nlzf
Tags: 4.7.0+git20080122-1
* The "Shoe polish" release.
* Acknowledge the NMU.  Thanks to Lucas Nussbaum.
* New upstream release:
   - a few fixes for PinYin;
   - fix punctuation in GBK and math mode;
   - dvipdfmx can now make use the correct /ToUnicode CMap;
   - fix a few typo's.
* [latex-cjk-japanese.install] Install DNP.sfd in
   /usr/share/texmf/fonts/sfd/.  Thanks to Gernot Hassenpflug
   (Closes: #434478).
* [README.Debian]
   - change 10cyberbit.cfg into 20cyberbit.cfg.
  [README.Debian-msgothic] Add some DIY information how to get the Japanese
   Gothic font from Microsoft working under CJK.  This is largely based on
   Gernot Hassenplug's HOWTO.  This is a work in progress, however, as I've
   stumbled upon a segmentation fault in Fontforge.
* [control]
   - Bump Standards-Version from 3.7.2.0 tp 3.7.3;
   - make latex-cjk-korean depend on "ko.tex-extra-hlfont" instead of
     the old "hlatex-fonts-extra".  Thanks to Changwoo Ryu
     (Closes: #462025).
* [rules]
   - fix bashism: apparently other shells don't understand the accolade.
     Thanks to Mario Bonino for the report and Lucas Nussbaum for the NMU
     which closed #457710;
   - change /usr/bin/rename to /usr/bin/prename;
   - don't install the empty "CEF/" directory in $TEXMF; the
     hbf-* packages will take care of this in the future.
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#
10
10
# Call the script as
11
11
#
12
 
#   perl sfd2uni.pl sfd_file namestem uni_namestem codingscheme
 
12
#   perl sfd2uni.pl sfd-file namestem uni-namestem codingscheme
13
13
#
14
 
# `sfd_file' is the subfont definition file, `namestem' is the name stem
15
 
# of the subfonts defined in `sfd_file', and `uni_namestem' holds the prefix
 
14
# `sfd-file' is the subfont definition file, `namestem' is the name stem
 
15
# of the subfonts defined in `sfd-file', and `uni-namestem' holds the prefix
16
16
# for the Unicode subfonts. `codingscheme' (converted to uppercase) is used
17
17
# for the CODINGSCHEME parameter in the resulting TFM files.
18
18
#
49
49
$prog =~ s@.*/@@;
50
50
 
51
51
if ($#ARGV != 3) {
52
 
  die("usage: $prog sfd_file namestem uni_namestem codingscheme\n");
 
52
  die("usage: $prog sfd-file namestem uni-namestem codingscheme\n");
53
53
}
54
54
 
55
55
my $sfdfile = $ARGV[0];