summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2004-02-04 21:45:53 +0000
committerBrian Harring <ferringb@gentoo.org>2004-02-04 21:45:53 +0000
commit87ebdfbacb6966e4f4d38638f1e212a10cd5716e (patch)
tree941a6a24807a2d60b1fa3c8718b90bb724be2dd6 /media-sound/jack-audio-connection-kit/files
parentAdded to ~ppc (Manifest recommit) (diff)
downloadgentoo-2-87ebdfbacb6966e4f4d38638f1e212a10cd5716e.tar.gz
gentoo-2-87ebdfbacb6966e4f4d38638f1e212a10cd5716e.tar.bz2
gentoo-2-87ebdfbacb6966e4f4d38638f1e212a10cd5716e.zip
Closing documentation bug 35749, essentially USE='-doc' not being abided by currectly. patch is being sent upstream, so sys-devel/autoconf as a dep won't be needed if it's accepted.
Diffstat (limited to 'media-sound/jack-audio-connection-kit/files')
-rw-r--r--media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-doc-option.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-doc-option.patch b/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-doc-option.patch
new file mode 100644
index 000000000000..60d9542fdf6f
--- /dev/null
+++ b/media-sound/jack-audio-connection-kit/files/jack-audio-connection-kit-doc-option.patch
@@ -0,0 +1,33 @@
+--- jack-audio-connection-kit-0.80.0/configure.in 2003-08-28 17:21:07.000000000 -0500
++++ jack-audio-connection-kit-0.80.0-fixed/configure.in 2004-02-04 13:15:12.000000000 -0600
+@@ -269,10 +269,26 @@
+ fi
+ AC_SUBST(READLINE_DEPS)
+
+-# you need doxygen to make dist.
+-AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, true, false)
+-if test $HAVE_DOXYGEN = "false"; then
+- AC_MSG_WARN([*** doxygen not found, docs will not be built])
++AC_ARG_ENABLE(html-docs,
++ [ --enable-html-docs build the html documentation (default yes)],
++ [ if test "x$enable_html_docs" != "xno" ; then
++ ENABLE_HTML_DOCS="yes"
++ AC_MSG_RESULT([JACK will build html docs])
++ else
++ AC_MSG_RESULT([JACK will not build html docs])
++ fi;
++ ],
++ [ ENABLE_HTML_DOCS="yes"; ]
++)
++
++if test "$ENABLE_HTML_DOCS" == "yes" ; then
++ # you need doxygen to make dist.
++ AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, true, false)
++ if test $HAVE_DOXYGEN = "false"; then
++ AC_MSG_ERROR([*** doxygen not found, unable to build docs.])
++ fi
++else
++ HAVE_DOXYGEN="false"
+ fi
+
+ AM_CONDITIONAL(HAVE_SNDFILE, $HAVE_SNDFILE)