From owner-svn-ports-all@FreeBSD.ORG Fri Nov 23 07:11:24 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38B2892D; Fri, 23 Nov 2012 07:11:24 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-ea0-f182.google.com (mail-ea0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2EF728FC16; Fri, 23 Nov 2012 07:11:22 +0000 (UTC) Received: by mail-ea0-f182.google.com with SMTP id a14so2399533eaa.13 for ; Thu, 22 Nov 2012 23:11:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=yapX3QdbP9C/LKMl4v10Hgauk2Tzme+54/HYBLPKODw=; b=W+lH3qSmwE59oyWoh/qmhBWboyX9sMbx7aVkEJemPqIE/R9mTtGfZGYmtwwW0wSxqG Pp80MUo8vbvnUc0o4vUGHAHDky4mo94binDBbJidabSH3nS/pLg+wlnS6fBcB1nBQtAh 7GqbpHohAj4gc1NWWGTeQ8TmZHL1uDTlcsW0vmBL3QWqvO4PSYU2TdlqljD+rtl6BrV0 Xms4xwrm0dI4Clm4CIxGDS8DefsrMOv2RwDPiLQTF2hYXF4ZuZIE0wJIwaZhO38npPkc zGMb2pCb+ndHHECPLpEMIZMZi8W3pK0eMQggIlMv3ORT2HyjsOfHy10UIcMQsZYBhlKi HdMw== Received: by 10.14.203.2 with SMTP id e2mr10379173eeo.20.1353654682100; Thu, 22 Nov 2012 23:11:22 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPS id b44sm11777295eep.12.2012.11.22.23.11.20 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 22 Nov 2012 23:11:21 -0800 (PST) Sender: Baptiste Daroussin Date: Fri, 23 Nov 2012 08:11:19 +0100 From: Baptiste Daroussin To: Alexey Dokuchaev Subject: Re: svn commit: r307642 - head/games/doomlegacy Message-ID: <20121123071119.GD2296@ithaqua.etoilebsd.net> References: <201211221120.qAMBKYwn062361@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DrWhICOqskFTAXiy" Content-Disposition: inline In-Reply-To: <201211221120.qAMBKYwn062361@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) 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.14 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 Nov 2012 07:11:24 -0000 --DrWhICOqskFTAXiy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Nov 22, 2012 at 11:20:34AM +0000, Alexey Dokuchaev wrote: > Author: danfe > Date: Thu Nov 22 11:20:33 2012 > New Revision: 307642 > URL: http://svnweb.freebsd.org/changeset/ports/307642 >=20 > Log: > - Do not require absolute paths for 3rd-party IWADs: search DOOMWADDIR = only > if specified file name does not contain any slashes (that is, now the= re > is a difference between `-iwad plutonia.wad' and `-iwad ./plutonia.wa= d') > - Utilize per-architecture feature of new OPTIONS framework > =20 > Feature safe: yes >=20 > Modified: > head/games/doomlegacy/Makefile >=20 > Modified: head/games/doomlegacy/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/games/doomlegacy/Makefile Thu Nov 22 11:01:57 2012 (r307641) > +++ head/games/doomlegacy/Makefile Thu Nov 22 11:20:33 2012 (r307642) > @@ -31,13 +31,8 @@ PORTDOCS=3D * > SVN_REV=3D 845 > =20 > OPTIONS_DEFINE=3D DOCS > - > -.include > - > -.if ${ARCH} =3D=3D "i386" > -OPTIONS_DEFINE+=3D ASM > -OPTIONS_DEFAULT=3D ASM > -.endif > +OPTIONS_DEFINE_i386=3D ASM > +OPTIONS_DEFAULT_i386=3D ASM OPTIONS_DEFAULT_i386 doesn't exist and is not needed, OPTIONS_DEFAULT=3D AS= M is enough and will only be applied on arch where ASM is defined regards, Bapt --DrWhICOqskFTAXiy Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlCvIZcACgkQ8kTtMUmk6EzUsQCfU1Z2RMWZ6Dg615c/R3wJ8X5e IssAoJUzabgLfb76RKcqDh6jQ72MtFTD =HIMJ -----END PGP SIGNATURE----- --DrWhICOqskFTAXiy--