summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMasamichi Hosoda <trueroad@trueroad.jp>2015-08-14 22:45:20 +0900
committerMasamichi Hosoda <trueroad@trueroad.jp>2015-08-20 18:35:43 +0900
commit2ce9d3b0ac456df77a73342fdf802f2e198c3b4e (patch)
treefdef882b5a21098b944a675169c517ec67c1755c /scripts
parentb7088489f91c805f2260d2efecc01f26519c5352 (diff)
Issue 4552 / 5: Remove makefiles to convert and install URW++ fonts
This commit removes makefiles to convert to OTF and install URW++ fonts. (Century Schoolbook L, Nimbus Sans L, Nimbus Mono L)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/auxiliar/pfx2ttf-mono.fontforge36
-rw-r--r--scripts/auxiliar/pfx2ttf.fontforge29
2 files changed, 0 insertions, 65 deletions
diff --git a/scripts/auxiliar/pfx2ttf-mono.fontforge b/scripts/auxiliar/pfx2ttf-mono.fontforge
deleted file mode 100644
index 7b804949ba..0000000000
--- a/scripts/auxiliar/pfx2ttf-mono.fontforge
+++ /dev/null
@@ -1,36 +0,0 @@
-Open($1);
-MergeKern($2)
-
-
-# The AFM files of `New Century Schoolbook' family as distributed within the
-# urw-fonts-1.0.7pre41.tar.bz2 archive contain a bunch of ligatures which
-# shouldn't be active by default:
-#
-# T + M -> trademark
-# N + o -> afii61352
-# i + j -> ij
-# I + J -> IJ
-#
-# This font bundle is shipped by Fedora Core 6 and other GNU/Linux
-# distributions; we simply remove those ligatures.
-
-# Monospace font shouldn't have these ligature.
-#
-# f + i -> fi
-# f + l -> fl
-
-SelectIf("trademark", "trademark", \
- "afii61352", "afii61352", \
- "ij", "ij", \
- "IJ", "IJ", \
- "fi", "fi", \
- "fl", "fl");
-if (Strtol($version) < 20070501)
- RemoveATT("Ligature", "*", "*");
-else
- RemovePosSub("*");
-endif
-
-Generate($3 + $fontname + ".otf");
-
-# EOF
diff --git a/scripts/auxiliar/pfx2ttf.fontforge b/scripts/auxiliar/pfx2ttf.fontforge
deleted file mode 100644
index 7d87fae17a..0000000000
--- a/scripts/auxiliar/pfx2ttf.fontforge
+++ /dev/null
@@ -1,29 +0,0 @@
-Open($1);
-MergeKern($2)
-
-
-# The AFM files of `New Century Schoolbook' family as distributed within the
-# urw-fonts-1.0.7pre41.tar.bz2 archive contain a bunch of ligatures which
-# shouldn't be active by default:
-#
-# T + M -> trademark
-# N + o -> afii61352
-# i + j -> ij
-# I + J -> IJ
-#
-# This font bundle is shipped by Fedora Core 6 and other GNU/Linux
-# distributions; we simply remove those ligatures.
-
-SelectIf("trademark", "trademark", \
- "afii61352", "afii61352", \
- "ij", "ij", \
- "IJ", "IJ");
-if (Strtol($version) < 20070501)
- RemoveATT("Ligature", "*", "*");
-else
- RemovePosSub("*");
-endif
-
-Generate($3 + $fontname + ".otf");
-
-# EOF