From owner-svn-ports-head@freebsd.org Fri Jul 24 18:07:09 2015 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 D51A49AA987; Fri, 24 Jul 2015 18:07:09 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 C5E8212C8; Fri, 24 Jul 2015 18:07:09 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6OI79dj037337; Fri, 24 Jul 2015 18:07:09 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6OI79pt037336; Fri, 24 Jul 2015 18:07:09 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201507241807.t6OI79pt037336@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 24 Jul 2015 18:07:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392833 - head/audio/aubio/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.20 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: Fri, 24 Jul 2015 18:07:09 -0000 Author: danfe Date: Fri Jul 24 18:07:08 2015 New Revision: 392833 URL: https://svnweb.freebsd.org/changeset/ports/392833 Log: Fix the build with the DOXYGEN option enabled (do not bump port revision as this option is not enabled by default). PR: 200556 (audit trail) Modified: head/audio/aubio/files/patch-wscript Modified: head/audio/aubio/files/patch-wscript ============================================================================== --- head/audio/aubio/files/patch-wscript Fri Jul 24 17:28:27 2015 (r392832) +++ head/audio/aubio/files/patch-wscript Fri Jul 24 18:07:08 2015 (r392833) @@ -25,7 +25,7 @@ # build documentation from source files using doxygen - if bld.env['DOXYGEN']: -+ if bld.env['DOXYGEN'] and not ctx.options.disable_doxygen: ++ if bld.env['DOXYGEN'] and not bld.options.disable_doxygen: bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null', source = 'doc/web.cfg', cwd = 'doc')