svn commit: r381470 - head/multimedia/bombono

John Marino marino at FreeBSD.org
Tue Mar 17 07:59:03 UTC 2015


Author: marino
Date: Tue Mar 17 07:59:01 2015
New Revision: 381470
URL: https://svnweb.freebsd.org/changeset/ports/381470
QAT: https://qat.redports.org/buildarchive/r381470/

Log:
  multimedia/bombono: Please use OPSYS with OSVERSION (Unbreak DragonFly)
  
  Especially with the ">" and ">=" operators, OPSYS must be used when
  checking OSVERSION.  The last commit got the port marked broken on all
  DragonFly releases.

Modified:
  head/multimedia/bombono/Makefile

Modified: head/multimedia/bombono/Makefile
==============================================================================
--- head/multimedia/bombono/Makefile	Tue Mar 17 05:56:28 2015	(r381469)
+++ head/multimedia/bombono/Makefile	Tue Mar 17 07:59:01 2015	(r381470)
@@ -37,7 +37,7 @@ MAKE_ARGS=	DVDREAD_INCLUDE=${LOCALBASE}/
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} >= 1000000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000
 BROKEN=		does not build on 10.x+
 .endif
 


More information about the svn-ports-head mailing list