From owner-svn-ports-all@freebsd.org Fri Dec 23 07:58:36 2016 Return-Path: Delivered-To: svn-ports-all@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 3C79CC8D890; Fri, 23 Dec 2016 07:58:36 +0000 (UTC) (envelope-from mva@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 0C2B81F88; Fri, 23 Dec 2016 07:58:35 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBN7wZcI012672; Fri, 23 Dec 2016 07:58:35 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBN7wZRZ012671; Fri, 23 Dec 2016 07:58:35 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201612230758.uBN7wZRZ012671@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Fri, 23 Dec 2016 07:58:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429228 - head/graphics/partio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Dec 2016 07:58:36 -0000 Author: mva Date: Fri Dec 23 07:58:35 2016 New Revision: 429228 URL: https://svnweb.freebsd.org/changeset/ports/429228 Log: - Revert the switch from DOCS to DOXYGEN. This restores the DOCS behaviour for building and installing additional documentation along with the port itself, if requested by the user as documented. Modified: head/graphics/partio/Makefile Modified: head/graphics/partio/Makefile ============================================================================== --- head/graphics/partio/Makefile Fri Dec 23 07:55:08 2016 (r429227) +++ head/graphics/partio/Makefile Fri Dec 23 07:58:35 2016 (r429228) @@ -2,7 +2,7 @@ PORTNAME= partio PORTVERSION= 1.1.0.20150221 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics math MAINTAINER= mva@FreeBSD.org @@ -18,10 +18,10 @@ USE_GITHUB= yes GH_ACCOUNT= wdas GH_TAGNAME= 1fd6747 -OPTIONS_DEFINE= DOXYGEN PYTHON +OPTIONS_DEFINE= DOCS PYTHON OPTIONS_DEFAULT= PYTHON -DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen +DOCS_BUILD_DEPENDS= doxygen:devel/doxygen PYTHON_USES= python:2.7+ PYTHON_BUILD_DEPENDS= swig:devel/swig13 @@ -39,12 +39,12 @@ post-patch: @${REINPLACE_CMD} -e '/ADD_SUBDIRECTORY.*src\/py.*/d' \ ${WRKSRC}/CMakeLists.txt .endif -.if !${PORT_OPTIONS:MDOXYGEN} +.if !${PORT_OPTIONS:MDOCS} @${REINPLACE_CMD} -e '/ADD_SUBDIRECTORY.*src\/doc.*/d' \ ${WRKSRC}/CMakeLists.txt .endif -.if ${PORT_OPTIONS:MDOXYGEN} +.if ${PORT_OPTIONS:MDOCS} post-build: @(cd ${BUILD_WRKSRC}; make doc) .endif