From owner-svn-ports-head@freebsd.org Thu Sep 6 13:30:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BA33FFB561; Thu, 6 Sep 2018 13:30:04 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F243C76F86; Thu, 6 Sep 2018 13:30:03 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id EACB6DE1D; Thu, 6 Sep 2018 13:30:03 +0000 (UTC) Date: Thu, 6 Sep 2018 13:30:03 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r479028 - head/games/yadex Message-ID: <20180906133003.GA14967@FreeBSD.org> References: <201809051631.w85GVdwR029041@repo.freebsd.org> <20180905214947.3msj2lkffek66vbo@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180905214947.3msj2lkffek66vbo@atuin.in.mat.cc> User-Agent: Mutt/1.9.5 (2018-04-13) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 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: Thu, 06 Sep 2018 13:30:04 -0000 On Wed, Sep 05, 2018 at 11:49:47PM +0200, Mathieu Arnold wrote: > On Wed, Sep 05, 2018 at 04:31:39PM +0000, Alexey Dokuchaev wrote: > > New Revision: 479028 > > URL: https://svnweb.freebsd.org/changeset/ports/479028 > > > > Log: > > Consummate conversion to option helpers (should've been part of r479022). > > > > Modified: head/games/yadex/Makefile > > @@ -37,17 +37,10 @@ PATCH_SUFFIX= .diff > > PATCHFILES= ${PATCH_PREFIX}_Depend${PATCH_SUFFIX} > > > > 3D_RENDER_PATCHFILES= ${PATCH_PREFIX}_Render3D${PATCH_SUFFIX} > > +3D_RENDER_PORTDOCS= preview.html > > This is missing a 3D_RENDER_IMPLIES=DOCS. I don't think so, why? One of the nice things about PORTDOCS that is can (and should) be set unconditionally (independent of DOCS). In fact, I could have simply got away with PORTDOCS=* but I prefer to avoid globbing. If you build the package with OPTIONS_UNSET=DOCS and OPTIONS_DEFAULT= 3D_RENDER you'll see that the package is generated correctly (without the docfiles). ./danfe