Re: [NTG-context] Re: Installation Problem

2004-10-18 Thread h h extern
David Arnold wrote:
Patrick,
Ah! I am looking in cont-tmf.zip and I see that there no longer is a
/context/perltk.
oeps, i need to fix that; the problem is that we're in a transition from 
old TDS to new TDS (tex directory structure), so either manuals are 
behind or ahead (and since some changes are not downward compatible this 
poses some timing)

Looks like the installation directions haven't caught up with the release.
indeed; i'll start doing that once i have the new web site up and 
running (i'm still reorganizing some things)

Hans
-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: Installation Problem

2004-10-16 Thread David Arnold
Patrick,

Ah! I am looking in cont-tmf.zip and I see that there no longer is a
/context/perltk.

Unfortunately, the installation directions minstall.pdf in cont-tmf.zip
says there is. Indeed, see pages 2 and 5, where it says to put
\miktex\context\perltk on your path.

Looks like the installation directions haven't caught up with the release.

I'm going to try deleting the original context tree, unzipping again, then
putting /miktex/scripts/context/perl on the path and I'll report what happens.

At 11:55 AM 10/16/04 +0200, you wrote:
>Hi David,
>
>
>does 
>http://archive.contextgarden.net/message/20041011.122555.3827e19a.html
>
>help?
>
>
>Patrick
>-- 
>ConTeXt wiki: http://contextgarden.net
>___
>ntg-context mailing list
>[EMAIL PROTECTED]
>http://www.ntg.nl/mailman/listinfo/ntg-context
>
>
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: Installation problem

2004-06-22 Thread Hans Hagen
Patrick Gundlach wrote:
<>here is my solution:
in texexec.ini change
set TeXFormatFlag to &
into:
set TeXFormatFlag to
(empty)
and run texexec like:
texexec --tex=pdfetex file.tex
this is because texexec checks
if ( $TeXFormatFlag eq "" ) {
if ($TeXProgram =~ /(etex|pdfetex)/) {
$TeXFormatFlag = "-efmt=" ; # >=2004 -fmt=
} elsif ($TeXProgram =~ /(eomega)/) {
$TeXFormatFlag = "-eoft=" ; # >=2004 obsolete
} elsif ($TeXProgram =~ /(aleph)/) {
$TeXFormatFlag = "-fmt=" ;
} else {
$TeXFormatFlag = "-fmt=" ;
}
}

indeed, the texexec.rme file is changed accordingly; i needed that 
change because & is giving to much problems in nested calls; also, next 
year there will be changes again because from now on web2c formats will 
be fmt, like

 web2c/pdfetex/cont-en.fmt
instead of
 web2c/cont-en.efmt
(currently both -efmt and -fmt are handled by the latest pdfetex) ; i 
didn't check miktex yet

<>and $TeXProgram is not set to $TeXExecutable (why the two different 
vars?)
dunno, must have a look
Hans
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: Installation problem

2004-06-22 Thread Hans Hagen
Patrick Gundlach wrote:
Hello Hans,
 

maybe some interference with cont-en.ini; does
 texexec --make --alone
work ok?
   

yes. It gives me cont-en, cont-nl,  metafun and  mptopdf  in the
current dir.
BTW: I use the current texlive (the last one shipped to members of
local tugs)
 

hm, i always have the impression that that version is sensitive for the location of 
the cpx files; because i setup the texmf vars more rigurously --alone puts the formats 
where they belong;
future versions of tex live need more care: officially the formats will go under subpaths in web2c, but tetex will not follow that scheme; so, it's good to keep an eye on where formats finally end up; since you install fonts yourself, you may also take a look at the enc/map settings  (below); the textools script (in distribution) is able to correct the tree -) 

Hans   

- my setup script ---
# example setup file / hans hagen
#
# dos2unix setuptex
# . setuptex
# mktexlsr
# texexec --make --alone
TEXROOT=$1
if ! test -f "$TEXROOT/texmf/tex/plain/base/plain.tex" ; then
   TEXROOT="$PWD" ;
fi
if ! test -f "$TEXROOT/texmf/tex/plain/base/plain.tex" ; then
   TEXROOT="$PWD/tex" ;
fi
if ! test -f "$TEXROOT/texmf/tex/plain/base/plain.tex" ; then
   TEXROOT="/usr/local/context/tex" ;
fi
if ! test -f "$TEXROOT/texmf/tex/plain/base/plain.tex" ; then
   TEXROOT="/usr/local/tex" ;
fi
if ! test -f "$TEXROOT/texmf/tex/plain/base/plain.tex" ; then
   echo "provide a proper tex root (like /something/tex)" ;
   exit 1 ;
fi
export TEXROOT
TEXMFMAIN=$TEXROOT/texmf
TEXMFLOCAL=$TEXROOT/texmf-local
TEXMFFONTS=$TEXROOT/texmf-fonts
TEXMFEXTRA=$TEXROOT/texmf-extra
TEXMFPROJECT=$TEXROOT/texmf-project
TEXMFOS=$TEXROOT/texmf-linux
VARTEXMF=$TMP/texmf-var
export TEXMFMAIN
export TEXMFLOCAL
export TEXMFPROJECT
export TEXMFFONTS
export TEXMFEXTRA
export TEXMFOS
export VARTEXMF
CTXDEVTXPATH=
CTXDEVMPPATH=
CTXDEVMFPATH=
export CTXDEVTXPATH
export CTXDEVMPPATH
export CTXDEVMFPATH
CTXDEVPLPATH=
CTXDEVRBPATH=
CTXDEVPYPATH=
CTXDEVJVPATH=
export CTXDEVPLPATH
export CTXDEVRBPATH
export CTXDEVPYPATH
export CTXDEVJVPATH
PATH=$TEXMFOS/bin:$PATH
export PATH
# PATH=$TEXMFLOCAL\SCRIPTS\PERL\CONTEXT:$PATH
# PATH=$TEXMFLOCAL\SCRIPTS\RUBY\CONTEXT:$PATH
#
# PATH=$TEXMFLOCAL\CONTEXT\PERL:$PATH
# PATH=$TEXMFLOCAL\CONTEXT\PERLTK:$PATH
# PATH=$TEXMFLOCAL\CONTEXT\RUBY:$PATH
#
# PATH=$TEXMFPROJECT\CONTEXT\PERL:$PATH
# PATH=$TEXMFPROJECT\CONTEXT\PERLTK:$PATH
# PATH=$TEXMFPROJECT\CONTEXT\RUBY:$PATH
# PATH=$TEXMFPROJECT\CONTEXT\BIN:$PATH
#
# export PATH
# the next lines fail on dec alpha os's, so there you need
# to comment them (bug traced down by kees van marle/martin
# corrino)
HOMETEXMF=/nonexist
export HOMETEXMF
TEXMFCNF=$TEXROOT/texmf{-local,}/web2c
TEXMF='{$TEXMFOS,$TEXMFPROJECT,$TEXMFFONTS,$TEXMFLOCAL,$TEXMFEXTRA,!!$TEXMFMAIN}'
TEXMFDBS=$TEXMF
export TEXMFCNF
export TEXMF
export TEXMFDBS
TEXFORMATS=$TEXMFOS/web2c
MPMEMS=$TEXFORMATS
TEXPOOL=$TEXFORMATS
MPPOOL=$TEXFORMATS
export TEXFORMATS
export MPMEMS
export TEXPOOL
export MPPOOL
TEXINPUTS=
MPINPUTS=
MFINPUTS=
export TEXINPUTS
export MPINPUTS
export MFINPUTS
# SET EXAMPLEROOT=$VARTEXMF
# EXPORT EXAMPLEROOT
if ((test -w "$TEXMFOS/bin/texmfstart") && (! test -x "$TEXMFOS/bin/texmfstart")) ; 
then
   chmod 755 $TEXMFOS/bin/*
fi
-- my config file ---
% This file loads before texmf/web2c/texmf.cnf; beware :
% the selfish auto parent can get in the way especially when
% the binaries are located elsewhere. In case of multiple
% trees, one can best set the following ones manually.
TEXMFMAIN = $SELFAUTOPARENT/texmf
TEXMFLOCAL= $SELFAUTOPARENT/texmf-local
TEXMFFONTS= $SELFAUTOPARENT/texmf-fonts
TEXMFEXTRA= $SELFAUTOPARENT/texmf-extra
TEXMFPROJECTS = $SELFAUTOPARENT/texmf-projects
VARTEXMF  = $SELFAUTOPARENT/texmf-var
HOMETEXMF = /nonexist
TEXMF = {$TEXMFPROJECT,$TEXMFFONTS,$TEXMFLOCAL,$TEXMFEXTRA,!!$TEXMFMAIN}
SYSTEXMF  = $TEXMF
TEXMFCNF  = .;$TEXMF/texmf{-local,}/web2c
TEXMFDBS  = $TEXMF;$VARTEXFONTS
VARTEXFONTS   = $TEMPFONTPATH/varfonts
% In the case of an multi-os setup, this one can be set
% by the environment.
TEXFORMATS= .;$TEXMF/web2c
MFBASES   = .;$TEXFORMATS
MPMEMS= .;$TEXFORMATS
TEXPOOL   = .;$TEXFORMATS
MFPOOL= .;$TEXFORMATS
MPPOOL= .;$TEXFORMATS
WEB2C = $TEXMF/web2c
% fonts
TEXPSHEADERS  = 
.;$TEXMF/{fonts/{enc,map,type1,truetype},dvips,pdftex,tex}//;$TEXMF/{etex,tex,pdftex,dvips,fonts/type1}//
TEXFONTMAPS   = 
.;$TEXMF/{fonts/map//,fontname};$TEXMF/{pdftex,dvips}/config;$TEXMF/{pdftex,dvips}//
VFFONTS   = .;$TEXMF/fonts/vf//
TFMFONTS  = .;{$TEXMF/fonts,$VARTEXFONTS}/tfm//
T1FONTS   = .;$TEXMF/fonts/{type1,pfb}//;$TEXMF/fonts/misc/hbf//
AFMFONTS  = .;$TEXMF/fonts/afm//
LIGFILES  = .;$TEXMF/fonts/lig//
TTFONTS   = .;$TEXMF/fonts/{truetype,ttf}//
TTF2TFMINPUTS = .;$TEXMF/ttf2pk//
T42FONTS  = .;$TEXMF/fonts/type42//
MISCFONTS = .;$TEXMF/fonts/misc//
ENCFONTS  = .;$TEXMF/{fonts/enc,dvips

Re: [NTG-context] Re: Installation problem

2004-06-22 Thread Hans Hagen
Patrick Gundlach wrote:
  TeX run : 1
warning: Could not open char translation file `cp8bit.tcx'.
This is pdfeTeX, Version 3.141592-1.11a-2.1 (Web2C 7.5.2)
kpathsea: Running mktexfmt cont-en.efmt
This is pdfeTeXk, Version 3.141592-1.11a-2.1 (Web2C 7.5.2)
\write18 enabled.
%&-line parsing enabled.
(/opt/texlive/8/texmf/web2c/cp8bit.tcx)
**
! End of file on the terminal... why?
running `pdfetex -ini   -jobname=cont-en -progname=context *cont-en.ini' ...
This is pdfeTeXk, Version 3.141592-1.11a-2.1 (Web2C 7.5.2) (INITEX)
\write18 enabled.
%&-line parsing enabled.
(/opt/texlive/8/texmf/web2c/cp8bit.tcx)
entering extended mode
(/opt/context/2004.6.21/texmf/tex/context/config/cont-en.ini{/opt/local/texmf/p
dftex/config/pdftex.cfg}
...
cp8bit is not found in the first line, but ok in the 7th. 

Do you have an idea what is going on?
 

maybe some interference with cont-en.ini; does
 texexec --make --alone
work ok?
it should not bark on the cp8bit (btw the latest version should use natural.tcx which is in the context distribution, cp8bit is flawed and not really 8 bit [straight in->out mapping is needed for instance for 
runtime xslt processign and such]; next year we can use -8bit 

(this whole 8 bit mess-up has been hauting me for years -)  

-
 Hans Hagen | PRAGMA ADE
 Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
| www.pragma-pod.nl
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: Installation problem

2004-06-21 Thread Matt Gushee
On Mon, Jun 21, 2004 at 04:57:00PM +0200, Patrick Gundlach wrote:
> 
> I just came across the same error. I don't know why I didn't notice
> before, but texexec seems to be 'broken'. Well, I don't know if it is
> really broken, but it just does not to the same thing it used to. It
> gives me same error as you get.
> 
> Using an old texexec works fine for me. I didn't look into this yet.

Ah-ha! Nice to know I'm not crazy after all.

On Mon, Jun 21, 2004 at 05:11:44PM +0200, Hans Hagen wrote:

> hm, maybe some bug due to changed as a result of the new tds and binaries; 
> i'll upload my local latest -) 

Thanks to Hans and all!

-- 
Matt Gushee When a nation follows the Way,
Englewood, Colorado, USAHorses bear manure through
[EMAIL PROTECTED]   its fields;
http://www.havenrock.com/   When a nation ignores the Way,
Horses bear soldiers through
its streets.

--Lao Tzu (Peter Merel, trans.)
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: Installation problem

2004-06-21 Thread Hans Hagen
Patrick Gundlach wrote:
Hi Matt,
I just came across the same error. I don't know why I didn't notice
before, but texexec seems to be 'broken'. Well, I don't know if it is
really broken, but it just does not to the same thing it used to. It
gives me same error as you get.
Using an old texexec works fine for me. I didn't look into this yet.
 

hm, maybe some bug due to changed as a result of the new tds and binaries; i'll upload my local latest -) 

Hans 

-
 Hans Hagen | PRAGMA ADE
 Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
| www.pragma-pod.nl
-
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: Installation problem

2004-06-21 Thread Matt Gushee
On Mon, Jun 21, 2004 at 11:29:17AM +0200, Patrick Gundlach wrote:
> Hello,
> 
> > Well, I've deleted all the old ConTeXt directories, reinstalled the new
> > version, copied the *.rme files to *.ini (or whatever they are supposed
> > to be ... I think), regenerated the 'en', 'nl', and 'metafun' formats,
> > and run texhash ... I'm still getting the same error.
> 
> did you update texexec and texutil?

They are symlinks, so yes, unzipping the new archive updated them.

> > BTW, this is a very new release of ConTeXt--June 16, according to the 
> > Pragma Web site. Has anyone used this version successfully?
> 
> The current beta is 2004.6.20 (see
> http://members.ping.de:8062/context/show/HomePage ;-)

Okay, tried that, no change.

I also tried creating /usr/bin/cont-en as a symlink to pdfetex and
pdftex (not at the same time, of course). The results were, well,
different:

First, with cont-en as a link to pdftex:

| [EMAIL PROTECTED]:/var/tmp$ texexec ut.tex 
| 
|  TeXExec 4.3 - ConTeXt / PRAGMA ADE 1997-2004
| 
| executable : pdfetex
| format : cont-en
|  inputfile : ut
| output : standard
|  interface : en
|   current mode : none
|TeX run : 1
| 
| This is pdfTeX, Version 3.14159-1.00a-pretest-2004-ojmw (Web2C 7.3.7)
| I can't find the format file `cont-en.fmt'!
| 
|return code : 256
|   run time : 1 seconds
| 
| total run time : 4 seconds

Can't find 'cont-en.fmt'? Well, that makes sense, doesn't it? Since, as
I understand it, ConTeXt normally uses pdfetex, which would need
cont-en.efmt. But it was worth a try.

So then I tried pdfetex:

| [EMAIL PROTECTED]:/var/tmp$ texexec ut.tex 
| 
|  TeXExec 4.3 - ConTeXt / PRAGMA ADE 1997-2004
| 
| executable : pdfetex
| format : cont-en
|  inputfile : ut
| output : standard
|  interface : en
|   current mode : none
|TeX run : 1
| 
| This is pdfeTeX, Version 3.14159-1.00a-pretest-2004-ojmw-2.1 (Web2C 7.3.7)
| This is pdfeTeX, Version 3.14159-1.00a-pretest-2004-ojmw-2.1 (Web2C 7.3.7)
| (/usr/share/texmf/web2c/natural.tcx)
| **
| ! End of file on the terminal... why?
| entering extended mode
| (./ut.tex
| Error: cont-en (file pdftex.cfg): cannot open config file
| 
|return code : 65280
|   run time : 3 seconds
| 
| total run time : 6 seconds

Hmm ... two questions here: what is the 'End of file on the terminal?'
Is that referring to natural.tcx (which comes from the ConTeXt
distribution)? And what about pdftex.cfg? Indeed, it doesn't exist. But
it doesn't exist on the machines where I have ConTeXt working, either.
So I don't know if either of the above results are meaningful.

Oh, by the way, the input file was this:

  \usetypescriptfile [type-utopia]
  \usetypescript [UtopiaFace]

  \showbodyfont [Utopia]

  \end

And yes, the typescript in question is available; both it and this test
file have worked for me on another machine.

-- 
Matt Gushee When a nation follows the Way,
Englewood, Colorado, USAHorses bear manure through
[EMAIL PROTECTED]   its fields;
http://www.havenrock.com/   When a nation ignores the Way,
Horses bear soldiers through
its streets.

--Lao Tzu (Peter Merel, trans.)
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: Installation problem

2004-06-21 Thread Matt Gushee
On Mon, Jun 21, 2004 at 10:46:40AM +0200, Thomas A. Schmitz wrote:
> cont-en.efmt is a format file that ConTeXt need to run. In order for 
> this file to be built, run
> 
> texexec --make en de nl

Yes, I knew about that, and had already created the en and nl formats
(since I don't work with German documents at all, I don't need de, do
I?).

Just as a side note, why would the shell think the format is supposed to
be a command? That makes me wonder if there is some incorrect quoting in
the Perl script.

On Mon, Jun 21, 2004 at 10:45:37AM +0200, Patrick Gundlach wrote:
> 
> > But what exactly is this 'cont-en'? 
> 
> probably a hard link to pdftex or pdfetex.

Could be, but it's never been necessary in the past. As I mentioned, I
have two working ConTeXt installations with no such command.

> >   teTeX 1.0.2
> > * Note that teTeX comes with an old and not-properly-configured
> >   version of ConTeXt. I unzipped the new package over that ...
> 
> oh, bad thing ;-)

Yes, I suppose so.

Well, I've deleted all the old ConTeXt directories, reinstalled the new
version, copied the *.rme files to *.ini (or whatever they are supposed
to be ... I think), regenerated the 'en', 'nl', and 'metafun' formats,
and run texhash ... I'm still getting the same error.

I also ran a diff comparing the texmf.cnf from the new installation with
one from one of my working installation. The files are identical in
everything related to ConTeXt.

So, thank you both for your quick replies, but it looks like there's
some other problem.

BTW, this is a very new release of ConTeXt--June 16, according to the 
Pragma Web site. Has anyone used this version successfully?

-- 
Matt Gushee When a nation follows the Way,
Englewood, Colorado, USAHorses bear manure through
[EMAIL PROTECTED]   its fields;
http://www.havenrock.com/   When a nation ignores the Way,
Horses bear soldiers through
its streets.

--Lao Tzu (Peter Merel, trans.)
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context