Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Aug 2016 10:57:00 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r420598 - head/mail/notmuch/files
Message-ID:  <201608221057.u7MAv0E4084674@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Aug 22 10:57:00 2016
New Revision: 420598
URL: https://svnweb.freebsd.org/changeset/ports/420598

Log:
  - Add patch missed in previous commit
  
  PR:		209665
  Submitted by:	mp39590@gmail.com (maintainer)

Added:
  head/mail/notmuch/files/
  head/mail/notmuch/files/patch-configure   (contents, props changed)

Added: head/mail/notmuch/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/notmuch/files/patch-configure	Mon Aug 22 10:57:00 2016	(r420598)
@@ -0,0 +1,44 @@
+--- configure.orig	2016-07-19 09:43:20 UTC
++++ configure
+@@ -66,6 +66,7 @@ PYTHON=${PYTHON:-}
+ PREFIX=/usr/local
+ LIBDIR=
+ WITH_DOCS=1
++WITH_API_DOCS=1
+ WITH_EMACS=1
+ WITH_BASH=1
+ WITH_RUBY=1
+@@ -134,7 +135,8 @@ Some features can be disabled (--with-fe
+ --without-feature) :
+ 
+ 	--without-bash-completion	Do not install bash completions files
+-	--without-docs			Do not install documentation and man pages
++	--without-docs			Do not install man pages
++	--without-api-docs		Do not install API documentation
+ 	--without-emacs			Do not install lisp file
+ 	--without-ruby			Do not install ruby bindings
+ 	--without-zsh-completion	Do not install zsh completions files
+@@ -185,6 +187,14 @@ for option; do
+ 	fi
+     elif [ "${option}" = '--without-docs' ] ; then
+ 	WITH_DOCS=0
++    elif [ "${option%%=*}" = '--with-api-docs' ]; then
++	if [ "${option#*=}" = 'no' ]; then
++	    WITH_API_DOCS=0
++	else
++	    WITH_API_DOCS=1
++	fi
++    elif [ "${option}" = '--without-api-docs' ] ; then
++	WITH_API_DOCS=0
+     elif [ "${option%%=*}" = '--with-emacs' ]; then
+ 	if [ "${option#*=}" = 'no' ]; then
+ 	    WITH_EMACS=0
+@@ -507,7 +517,7 @@ else
+ fi
+ 
+ have_doxygen=0
+-if [ $WITH_DOCS = "1" ] ; then
++if [ $WITH_API_DOCS = "1" ] ; then
+     printf "Checking if doxygen is available... "
+     if command -v doxygen > /dev/null; then
+ 	printf "Yes.\n"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608221057.u7MAv0E4084674>