I have developed a quick fix, just create this makefile and run it:

all: compile install

download:
        if [ ! -f ./caption/caption.ins ]; then \
                wget http://mirrors.ctan.org/macros/latex/contrib/caption.zip ;\
                unzip caption.zip ;\
        fi

compile: download
        cd caption;\
        latex caption.ins

documentation: compile
        cd caption;\
        latex caption-eng.tex;\
        #latex caption-deu.tex;\
        #latex caption-rus.tex;

install:
        if [ `whoami` != root ]; then \
                echo "This must be run as root" ;\
        else \
                RUTACAPTION=$$(kpsewhich caption.sty|xargs dirname) ;\
                echo "The files in $$RUTACAPTION will be backed up in a folder 
called caption.old" ;\
                cp -R $$RUTACAPTION caption.old ;\
                cp  ./caption/*.sty $$RUTACAPTION ;\
                sudo texhash ;\
        fi

clean:
        rm caption.zip
        rm -R caption

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/784366

Title:
  caption plugin for texlive needs to be updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/texlive-base/+bug/784366/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to