svn commit: r353111 - head/games/doomsday

John Marino marino at FreeBSD.org
Tue May 6 17:24:32 UTC 2014


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
 


More information about the svn-ports-all mailing list