From owner-svn-ports-head@freebsd.org Mon Aug 22 10:57:01 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51523BC108E; Mon, 22 Aug 2016 10:57:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 092AB126E; Mon, 22 Aug 2016 10:57:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7MAv05N084675; Mon, 22 Aug 2016 10:57:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7MAv0E4084674; Mon, 22 Aug 2016 10:57:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201608221057.u7MAv0E4084674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 22 Aug 2016 10:57:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420598 - head/mail/notmuch/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Aug 2016 10:57:01 -0000 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"