From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/23951 Path: news.gmane.org!not-for-mail From: Hans Hagen Newsgroups: gmane.comp.tex.context Subject: Re: Building and installing pdftex 1.30 on teTeX 3.0 Date: Wed, 30 Nov 2005 09:28:37 +0100 Message-ID: <438D62B5.4030200@wxs.nl> References: <20051128180353.GB8826@puritan.petwork> <438B48E7.8080507@elvenkind.com> <20051128200525.GA8827@puritan.petwork> <545ED0D8-266F-492D-856F-CB5D79F6B452@uni-bonn.de> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1133343794 6241 80.91.229.2 (30 Nov 2005 09:43:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 30 Nov 2005 09:43:14 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Wed Nov 30 10:42:48 2005 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1EhNMN-0008Pj-3X for gctc-ntg-context-518@m.gmane.org; Wed, 30 Nov 2005 09:30:40 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 998FC12783; Wed, 30 Nov 2005 09:30:38 +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 02540-03; Wed, 30 Nov 2005 09:30:38 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 3BEDB127A6; Wed, 30 Nov 2005 09:28:40 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 84692127A6 for ; Wed, 30 Nov 2005 09:28:38 +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 02350-03-3 for ; Wed, 30 Nov 2005 09:28:37 +0100 (CET) Original-Received: from controller-1 (dsl-212-84-128-085.solcon.nl [212.84.128.85]) by ronja.ntg.nl (Postfix) with ESMTP id 938611278D for ; Wed, 30 Nov 2005 09:28:37 +0100 (CET) Original-Received: from [10.100.1.102] (unverified [10.100.1.102]) by controller-1 (SurgeMail 3.5b3) with ESMTP id 5648 for ; Wed, 30 Nov 2005 09:33:40 +0300 User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en Original-To: mailing list for ConTeXt users In-Reply-To: X-Server: High Performance Mail Server - http://surgemail.com r=-274017400 X-Authenticated-User: hagen@controller-1 X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 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:23951 Archived-At: Hans van der Meer wrote: > I use (as root: sudo) the following shell script to install the > latest pdfetex. For me it works. It might be of use to you. > > #!/bin/sh > echo "Installing Pdftex..." > umask 022 > unzip pdftex-1.30.4.zip > cd pdftex-1.30.4 > sh ./Build > cp -f build/texk/web2c/pdftex `which pdftex` > cp -f build/texk/web2c/pdftex.pool `kpsewhich pdftex.pool` no need for pdftex, is kind of obsolete, and afaik pdfetex is always the default > cp -f build/texk/web2c/pdfetex `which pdfetex` which -> kpsewhich > cp -f build/texk/web2c/pdfetex.pool `kpsewhich pdfetex.pool` > chown -R root:wheel /usr/local/teTeX what is this wheel thing? > chmod -R u+w /usr/local/teTeX > chmod -R a+r /usr/local/teTeX why not make that place independent as well? chmod -R u+w `which pdfetex` `which pdfetex.pool` > umask 027 > cd .. > echo "Installing Pdftex done." > exit wikiable Hans