svn commit: r484547 - head/biology/seqan-apps

Steve Wills swills at FreeBSD.org
Fri Nov 9 21:37:02 UTC 2018


Author: swills
Date: Fri Nov  9 21:37:01 2018
New Revision: 484547
URL: https://svnweb.freebsd.org/changeset/ports/484547

Log:
  biology/seqan-apps: fix build with GCC-based architectures
  
  PR:		232045
  Submitted by:	Piotr Kubaj <pkubaj at anongoth.pl>
  Approved by:	maintainer timeout (h2+fbsdports at fsfe.org >1 month)

Modified:
  head/biology/seqan-apps/Makefile   (contents, props changed)

Modified: head/biology/seqan-apps/Makefile
==============================================================================
--- head/biology/seqan-apps/Makefile	Fri Nov  9 20:51:21 2018	(r484546)
+++ head/biology/seqan-apps/Makefile	Fri Nov  9 21:37:01 2018	(r484547)
@@ -13,8 +13,6 @@ COMMENT=	Official bioinformatic applications based on 
 LICENSE=	BSD3CLAUSE LGPL3 GPLv3
 LICENSE_COMB=	multi
 
-BROKEN_powerpc64=	fails to build: requires 'c++14-lang' in USES (cf.)
-
 BUILD_DEPENDS=	boost-libs>0:devel/boost-libs
 
 USES=		cmake:outsource compiler:openmp # once #199603 is resolved, add c++14-lang
@@ -38,6 +36,10 @@ NATIVE_CMAKE_ON=	-DSEQAN_ARCH_NATIVE:BOOL=TRUE
 PLIST_SUB+=	RM_I386="@comment "
 .else
 PLIST_SUB+=	RM_I386=""
+.endif
+
+.if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} || ${ARCH} == sparc64
+USE_GCC=	yes
 .endif
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list