dvipdfmx fails to call rungs

Ken Brown kbrown@cornell.edu
Sat Jan 26 02:59:00 GMT 2013


On 1/25/2013 12:30 PM, KIMURA Masaru wrote:
> Hi,
>
> anyone can reproduce this dvipdfmx bug?
>
> i've already fixed this by replacing rungs to gs in
> /usr/share/texmf/dvipdfmx/dvipdfmx.cfg like this:
> [...]
> or, including rungs properly is the way to fix?

Yes, /usr/bin/rungs should be part of texlive-collection-basic, but it 
was omitted because of a packaging error.  I'll make a new release when 
I get a chance.  In the meantime, you can use the attached script.

Thanks for the report.

Ken
-------------- next part --------------
#!/usr/bin/env texlua
--*-Lua-*-
-- $Id: rungs.tlu 7698 2008-04-28 14:23:31Z reinhardk $

-- Copyright (C) 2008 Reinhard Kotucha.
-- You may freely use, modify and/or distribute this file.

-- Run Ghostscript (gs on Unix, gswin32c on Windows)

function fixwin(args_unix)
   if os.type == 'windows' then
      local args_win={}  -- new table
      args_win[0]=args_unix[1]
      for i=1, #args_unix do  
	 args_win[i]='"'..args_unix[i]..'"'
      end
      return args_win
   else
      return args_unix
   end
end

if os.type == 'windows' then
   command={'gswin32c'}
else
   command={'gs'}
end

for i=1, #arg do
   command[#command+1]=arg[i]
end

command=fixwin(command)

--[[ prepend an additional hyphen to activate this code
for i=0, #command do
   print (command[i])
end
os.exit(ret)
--]]

ret=os.spawn(command)
os.exit(ret)
-------------- next part --------------
--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


More information about the Cygwin mailing list