Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 6 May 2014 17:24:31 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r353111 - head/games/doomsday
Message-ID:  <201405061724.s46HOVoZ029846@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk>
-.if ${OSVERSION} < 1000052
+.if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && ${OSVERSION} < 1000052)
 LIB_DEPENDS+=	libexecinfo.so:${PORTSDIR}/devel/libexecinfo
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405061724.s46HOVoZ029846>