Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mp3splt-gtk/files: mp3splt-gtk-0.7-disable-docs.patch
Date: Wed, 03 Aug 2011 21:35:36
Message-Id: 20110803213525.3C0C920051@flycatcher.gentoo.org
1 sping 11/08/03 21:35:25
2
3 Added: mp3splt-gtk-0.7-disable-docs.patch
4 Log:
5 media-sound/mp3splt-gtk: Disable generation of source documentation
6
7 (Portage version: 2.1.10.10/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7-disable-docs.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7-disable-docs.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mp3splt-gtk/files/mp3splt-gtk-0.7-disable-docs.patch?rev=1.1&content-type=text/plain
14
15 Index: mp3splt-gtk-0.7-disable-docs.patch
16 ===================================================================
17 From 12880888a2857f73cc87b9bdf5505fed0cbc6bbe Mon Sep 17 00:00:00 2001
18 From: Sebastian Pipping <sebastian@×××××××.org>
19 Date: Wed, 3 Aug 2011 20:53:22 +0200
20 Subject: [PATCH 2/2] Disable documentation
21
22 ---
23 configure.ac | 17 +++--------------
24 1 files changed, 3 insertions(+), 14 deletions(-)
25
26 diff --git a/configure.ac b/configure.ac
27 index 1c564c5..260602d 100644
28 --- a/configure.ac
29 +++ b/configure.ac
30 @@ -269,20 +269,9 @@ echo
31
32 # Check for doxygen, so we can decide if we add it to the "doc"
33 # make target.
34 -AC_PATH_PROG([DOXYGEN],[doxygen])
35 -AC_ARG_VAR(DOXYGEN,
36 - [Location of the 'doxygen' program; if found we can generate documentation for the C code])
37 -AM_CONDITIONAL(HAVE_DOXYGEN, [ test "x$DOXYGEN" != "x" ])
38 -
39 -# Check for dot, the tool that makes the nice little caller graphs for the
40 -# doxygen documentation.
41 -AC_PATH_PROG([GRAPHVIZ],[dot])
42 -AC_ARG_VAR(GRAPHVIZ,
43 - [Location of the 'dot' program from the graphviz suite; if found we can generate caller graphs for the documentation of the C code])
44 -AM_CONDITIONAL(HAVE_GRAPHVIZ, [ test "x$GRAPHVIZ" != "x" ])
45 -if test x$HAVE_DOT = "xfalse"; then
46 - AC_MSG_WARN([*** dot from the graphviz package not found, inheritance diagrams will not be generated in code documentation])
47 -fi
48 +AM_CONDITIONAL(HAVE_DOXYGEN, [ false ])
49 +
50 +AM_CONDITIONAL(HAVE_GRAPHVIZ, [ false ])
51
52 #################################################
53 # Generate Makefile
54 --
55 1.7.6