svn commit: r416908 - head/cad/kicad-devel

John Marino marino at FreeBSD.org
Tue Jun 14 20:19:21 UTC 2016


Author: marino
Date: Tue Jun 14 20:19:20 2016
New Revision: 416908
URL: https://svnweb.freebsd.org/changeset/ports/416908

Log:
  cad/kicad-devel: Fix faulty IGNORE message which falsely traps DF
  
  - OSVERSION needs to be coupled with OPSYS
    - BROKEN_FreeSBD_9 might have been a more appropriate method
  - Marking ignore for GCC is faulty logic, it builds fine on GCC that is
    provided with a good math lib
  
  This restores building on DragonFly.

Modified:
  head/cad/kicad-devel/Makefile

Modified: head/cad/kicad-devel/Makefile
==============================================================================
--- head/cad/kicad-devel/Makefile	Tue Jun 14 19:42:55 2016	(r416907)
+++ head/cad/kicad-devel/Makefile	Tue Jun 14 20:19:20 2016	(r416908)
@@ -162,8 +162,10 @@ PLIST_SHAREDDIR_LIST=	share/mimelnk/appl
 
 .include <bsd.port.pre.mk>
 
+.if ${OPSYS} == FreeBSD
 .if ${OSVERSION} < 1000000 || ${COMPILER_TYPE} == "gcc"
   IGNORE= builds only on greater than 10 and with clang
 .endif
+.endif
 
 .include <bsd.port.post.mk>


More information about the svn-ports-head mailing list