From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/33909 Path: news.gmane.org!not-for-mail From: "luigi scarso" Newsgroups: gmane.comp.tex.context Subject: Re: otf files Date: Tue, 20 Mar 2007 19:39:38 +0100 Message-ID: References: <460021A0.4040603@elvenkind.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1174416014 10219 80.91.229.12 (20 Mar 2007 18:40:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 20 Mar 2007 18:40:14 +0000 (UTC) To: "mailing list for ConTeXt users" Original-X-From: ntg-context-bounces@ntg.nl Tue Mar 20 19:39:58 2007 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by lo.gmane.org with esmtp (Exim 4.50) id 1HTjFQ-00076g-Kq for gctc-ntg-context-518@m.gmane.org; Tue, 20 Mar 2007 19:39:52 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 5C11A20080; Tue, 20 Mar 2007 19:39:50 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 12487-09-3; Tue, 20 Mar 2007 19:39:45 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 747DD20077; Tue, 20 Mar 2007 19:39:45 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id E564520077 for ; Tue, 20 Mar 2007 19:39:42 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 12487-09-2 for ; Tue, 20 Mar 2007 19:39:41 +0100 (CET) Original-Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.251]) by ronja.ntg.nl (Postfix) with ESMTP id CB5012006C for ; Tue, 20 Mar 2007 19:39:40 +0100 (CET) Original-Received: by an-out-0708.google.com with SMTP id d33so1667900and for ; Tue, 20 Mar 2007 11:39:38 -0700 (PDT) Original-Received: by 10.100.94.3 with SMTP id r3mr5414951anb.1174415978456; Tue, 20 Mar 2007 11:39:38 -0700 (PDT) Original-Received: by 10.100.178.8 with HTTP; Tue, 20 Mar 2007 11:39:38 -0700 (PDT) In-Reply-To: <460021A0.4040603@elvenkind.com> Content-Disposition: inline X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.9 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:33909 Archived-At: On 3/20/07, Taco Hoekwater wrote: > luigi scarso wrote: > > I have a large list of otf files > > that i need to use inside a "legacy" context system > Fontforge for the Type1 conversion and texfont for tfm creation would > be my choices. ok 1)download and compile latest fontforge+dos 2)put in script.pe Open($1) Generate($1:r + ".pfb") 3)put in script.sh #!/bin/sh for j in ../*.otf; do echo $j k=`basename $j` cp $j . /opt/fontforge/fontforge-20070312/fontforge/fontforge --script script.pe $k rm -vf $k done 3) mkdir font-otf 4) mkdir font-otf/pfb 5) unpack otf files in font-otf 6) cp script.se script.sh font-otf/pfb 7) cd font-otf/pfb 8) chmod 700 script.sh && script.sh really simple :) luigi