From owner-svn-ports-all@FreeBSD.ORG Mon Apr 14 10:03:18 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id EBB38C05; Mon, 14 Apr 2014 10:03:18 +0000 (UTC) Date: Mon, 14 Apr 2014 10:03:18 +0000 From: Alexey Dokuchaev To: Johannes Jost Meixner Subject: Re: svn commit: r351187 - head/games/linux-nwserver Message-ID: <20140414100318.GA51290@FreeBSD.org> References: <201404130751.s3D7pvPK013643@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201404130751.s3D7pvPK013643@svn.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 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: Mon, 14 Apr 2014 10:03:19 -0000 On Sun, Apr 13, 2014 at 07:51:57AM +0000, Johannes Jost Meixner wrote: > New Revision: 351187 > URL: http://svnweb.freebsd.org/changeset/ports/351187 > QAT: https://qat.redports.org/buildarchive/r351187/ > > +COMMENT= Neverwinter Nights Linux Dedicated Server We usually avoid excessive caps in COMMENT (e.g. it better be "dedicated server"). > +.include > + > [...] > -.ifndef (NOPORTDOCS) > - @${MKDIR} ${DOCSDIR} > - ${INSTALL_DATA} ${WRKDIR}/readme.linuxserver.txt ${DOCSDIR} > +.if ${PORT_OPTIONS:MDOCS} > + @${MKDIR} ${STAGEDIR}${DOCSDIR} > + ${INSTALL_DATA} ${WRKDIR}/readme.linuxserver.txt ${STAGEDIR}${DOCSDIR} For docs that do not require generation (i.e. they are shipped with the ported software), once you stage the port, checking PORT_OPTIONS:MDOCS is no longer needed (and allows you to remove .include in this case). ./danfe