Bug#778757: Close

Vincent Lefevre vincent at vinc17.net
Tue Apr 28 23:10:55 UTC 2015


Control: reopen -1
Control: tags -1 - wontfix

Reopening because it was apparently closed from a wrong supposition.

On 2015-04-28 20:26:44 +0200, Anton Gladky wrote:
> It seems, gnuplot5 does not provide info-file any more.

Because it now has to be generated! I agree that this isn't nice
for the end user because he would have to get the necessary tools
to generate it, but here this is the Debian build system.

There may be some build dependencies to add. But I don't know
exactly.

In debian/rules, you need to change

        cd $(BUILDDIR_X11)/docs; $(MAKE) pdf; $(MAKE) ps; $(MAKE) html; ls

to

        cd $(BUILDDIR_X11)/docs; $(MAKE) pdf; $(MAKE) ps; $(MAKE) html; $(MAKE) info; ls

However, there's a bug, which I've just reported upstream:

  https://sourceforge.net/p/gnuplot/bugs/1606/

What happens is the following. The gnuplot.texi file is now generated
from gnuplot.doc, thus it is put in the build directory instead of
being in the source directory. The bug is that the make rule still
gets gnuplot.texi from the source directory (as it was there in the
past). So, in docs/Makefile.am,

  $(MAKEINFO) -I$(srcdir) $(srcdir)/gnuplot.texi --no-split --output=$@

needs to be changed to

  $(MAKEINFO) -I$(srcdir) gnuplot.texi --no-split --output=$@

I can try to prepare a patch if you want.

-- 
Vincent Lefèvre <vincent at vinc17.net> - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



More information about the debian-science-maintainers mailing list