svn commit: r548947 - head/cad/openvsp

Rene Ladan rene at FreeBSD.org
Sat Sep 19 08:47:03 UTC 2020


Author: rene
Date: Sat Sep 19 08:47:02 2020
New Revision: 548947
URL: https://svnweb.freebsd.org/changeset/ports/548947

Log:
  cad/openvsp: unexpire by allowing it to build on FreeBSD versions with PR 230888 fixed.
  
  PR:		242229
  Submitted by:	fernape@ (maintainer)
  Approved by:	build fix blanket
  MFH:		2020Q3

Modified:
  head/cad/openvsp/Makefile

Modified: head/cad/openvsp/Makefile
==============================================================================
--- head/cad/openvsp/Makefile	Sat Sep 19 07:49:11 2020	(r548946)
+++ head/cad/openvsp/Makefile	Sat Sep 19 08:47:02 2020	(r548947)
@@ -13,9 +13,6 @@ LICENSE_NAME=	NASA Open Source Agreement version 1.3
 LICENSE_FILE=	${WRKSRC}/LICENSE
 LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
 
-BROKEN=		fails to link
-DEPRECATED=	Broken for more than 6 months
-EXPIRATION_DATE=	2020-08-26
 BROKEN_aarch64=		fails to compile: invokes x86 asm
 
 LIB_DEPENDS=	libdrm.so:graphics/libdrm \
@@ -58,7 +55,7 @@ USE_GNOME=	libxml2
 
 # See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230888
 .if ${OPSYS} == FreeBSD
-.if (${OSVERSION} < 1200000 || ${OSVERSION} >=1300000)
+.if (${OSVERSION} < 1104507) || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1202000) || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1300115)
 BROKEN=	undefined reference to __atomic_load
 .endif
 .endif


More information about the svn-ports-all mailing list