From owner-svn-ports-all@FreeBSD.ORG Tue May 6 17:24:31 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F21C2F71; Tue, 6 May 2014 17:24:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 DFAA3C95; Tue, 6 May 2014 17:24:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s46HOVO1029847; Tue, 6 May 2014 17:24:31 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s46HOVoZ029846; Tue, 6 May 2014 17:24:31 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201405061724.s46HOVoZ029846@svn.freebsd.org> From: John Marino Date: Tue, 6 May 2014 17:24:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353111 - head/games/doomsday 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.18 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: Tue, 06 May 2014 17:24:32 -0000 Author: marino Date: Tue May 6 17:24:31 2014 New Revision: 353111 URL: http://svnweb.freebsd.org/changeset/ports/353111 QAT: https://qat.redports.org/buildarchive/r353111/ Log: games/doomsday: Unbreak on DragonFly (note OSVERSION used without OPSYS) OPVERSION always requires coupling with OPSYS to be correct, but normally I let "<" comparison violators go because it never equates to "true" on DragonFly. This is a rare case where DragonFly needs the comparison to be true. Add a couple of OPSYS to fix the recent breakage on DragonFly. Modified: head/games/doomsday/Makefile Modified: head/games/doomsday/Makefile ============================================================================== --- head/games/doomsday/Makefile Tue May 6 17:15:47 2014 (r353110) +++ head/games/doomsday/Makefile Tue May 6 17:24:31 2014 (r353111) @@ -41,7 +41,7 @@ OPENAL_QMAKE_OFF= CONFIG+=deng_noopenal PORTSCOUT= limit:^\d+\.\d+\.\d+$$ .include -.if ${OSVERSION} < 1000052 +.if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && ${OSVERSION} < 1000052) LIB_DEPENDS+= libexecinfo.so:${PORTSDIR}/devel/libexecinfo .endif