From owner-svn-ports-all@freebsd.org Sun Jun 2 19:38:49 2019 Return-Path: Delivered-To: svn-ports-all@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 A924315BE02D; Sun, 2 Jun 2019 19:38:49 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (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 F38F475F81; Sun, 2 Jun 2019 19:38:48 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 07A9733DF6; Sun, 2 Jun 2019 15:38:48 -0400 (EDT) Received: from anthias (unknown [46.57.103.33]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id ED02C33DF4; Sun, 2 Jun 2019 15:38:46 -0400 (EDT) Date: Sun, 2 Jun 2019 21:38:44 +0200 (CEST) From: Gerald Pfeifer To: Steve Wills , benny.goemans@gmail.com, Tobias Kortkamp cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r502742 - in head/games: . devilutionX devilutionX/files In-Reply-To: <201905261834.x4QIYhE7073602@repo.freebsd.org> Message-ID: References: <201905261834.x4QIYhE7073602@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: F38F475F81 X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of gerald@pfeifer.com designates 209.68.5.143 as permitted sender) smtp.mailfrom=gerald@pfeifer.com X-Spamd-Result: default: False [-5.28 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+a:hamza.pair.com]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TAGGED_RCPT(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[pfeifer.com]; RCPT_COUNT_FIVE(0.00)[6]; RCVD_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MX_GOOD(-0.01)[cached: mailwash29.pair.com]; NEURAL_HAM_SHORT(-0.99)[-0.995,0]; IP_SCORE(-1.97)[ip: (-7.68), ipnet: 209.68.0.0/18(-1.20), asn: 7859(-0.92), country: US(-0.06)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:7859, ipnet:209.68.0.0/18, country:US]; RCVD_TLS_LAST(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[33.103.57.46.zen.spamhaus.org : 127.0.0.11] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 02 Jun 2019 19:38:49 -0000 On Sun, 26 May 2019, Steve Wills wrote: > Author: swills > Date: Sun May 26 18:34:42 2019 > New Revision: 502742 > URL: https://svnweb.freebsd.org/changeset/ports/502742 > > Log: > games/devilutionX: create port > > Open-Source implementation of the Diablo(TM) game engine for X. This port > requires a file from the original game to work. > > WWW: https://github.com/diasurgical/devilutionX I was going to comment on this after noticing the following combination... > +USES= cmake compiler:c++14-lang dos2unix sdl > +USE_GCC= yes ...but it appears Tobias bet me to it with r502770 | tobik | 2019-05-27 06:32:24 +0000 (Mo., 27 Mai 2019) games/devilutionX: Remove USES=compiler:c++14-lang It does not make any sense when also setting USE_GCC=yes. Now the question is: does it really have to be GCC (and if so, why)? We generally prefer not to depend on a specific compiler make (or version), and this says the guy who maintains the lang/gcc* ports. ;-) Gerald