Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Nov 2018 21:37:01 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r484547 - head/biology/seqan-apps
Message-ID:  <201811092137.wA9Lb1eb029911@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@anongoth.pl>
  Approved by:	maintainer timeout (h2+fbsdports@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811092137.wA9Lb1eb029911>