From 41ee98da21452812640bd430d04bcf8748df88d1 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Tue, 14 May 2002 12:42:49 +0000 Subject: [PATCH] *** empty log message *** --- buildscripts/make-font-dir.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 buildscripts/make-font-dir.py diff --git a/buildscripts/make-font-dir.py b/buildscripts/make-font-dir.py new file mode 100644 index 0000000000..8edcffca3b --- /dev/null +++ b/buildscripts/make-font-dir.py @@ -0,0 +1,14 @@ + +import re +import sys +import string +ls = sys.stdin.readline () +ls = string.split (ls) +print len(ls) +for fn in ls: + name = re.sub ('\.pf[ab]', '',fn) + name = re.sub ('-', ' ',name) + + print '%s -misc-%s-regular-r-normal--0-0-0-0-p-0-adobe-fontspecific' % (fn, name) + + -- 2.39.5