Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/gnuplot/files: gnuplot-4.6.1-eldoc.patch
Date: Sat, 02 Mar 2013 17:25:29
Message-Id: 20130302172525.1E8F520081@flycatcher.gentoo.org
1 ulm 13/03/02 17:25:25
2
3 Added: gnuplot-4.6.1-eldoc.patch
4 Log:
5 Fix build and install problems with XEmacs, bug 459172. The ebuild now supports either GNU Emacs or XEmacs, but not both.
6
7 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
8
9 Revision Changes Path
10 1.1 sci-visualization/gnuplot/files/gnuplot-4.6.1-eldoc.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gnuplot/files/gnuplot-4.6.1-eldoc.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gnuplot/files/gnuplot-4.6.1-eldoc.patch?rev=1.1&content-type=text/plain
14
15 Index: gnuplot-4.6.1-eldoc.patch
16 ===================================================================
17 https://bugs.gentoo.org/459172
18
19 --- gnuplot-4.6.1-orig/docs/Makefile.in
20 +++ gnuplot-4.6.1/docs/Makefile.in
21 @@ -396,11 +396,11 @@
22 gnuplot.texi $(srcdir)/gnuplot-eldoc.el $(srcdir)/gnuplot-eldoc.elc: $(srcdir)/doc2texi.el $(srcdir)/gnuplot.doc
23 @echo "Creating texinfo and eldoc strings file"
24 @if test "$(EMACS)" != no; then \
25 - @test "$(top_srcdir)" = "$(top_builddir)" || echo "COPYING GNUPLOT.DOC" ; \
26 - @test "$(top_srcdir)" = "$(top_builddir)" || cp $(srcdir)/gnuplot.doc . ; \
27 - $(EMACS) -batch -l $(srcdir)/doc2texi.el -f d2t-doc-to-texi ; \
28 + test "$(top_srcdir)" = "$(top_builddir)" || echo "COPYING GNUPLOT.DOC" ; \
29 + test "$(top_srcdir)" = "$(top_builddir)" || cp $(srcdir)/gnuplot.doc . ; \
30 + $(EMACS) -batch -q -no-site-file -l $(srcdir)/doc2texi.el -f d2t-doc-to-texi ; \
31 echo "Compiling gnuplot-eldoc.el" ; \
32 - $(EMACS) -batch --eval='(byte-compile-file "gnuplot-eldoc.el")' ; \
33 + $(EMACS) -batch -q -no-site-file -f batch-byte-compile gnuplot-eldoc.el ; \
34 else \
35 echo "No emacs found - cannot create texinfo file" ; \
36 fi