From owner-svn-ports-head@freebsd.org Fri Nov 11 09:07:22 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 908F3C39190; Fri, 11 Nov 2016 09:07:22 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 624C21318; Fri, 11 Nov 2016 09:07:22 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAB97LUN028429; Fri, 11 Nov 2016 09:07:21 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAB97Lqd028428; Fri, 11 Nov 2016 09:07:21 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201611110907.uAB97Lqd028428@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 11 Nov 2016 09:07:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425878 - head/biology/bwa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 09:07:22 -0000 Author: linimon Date: Fri Nov 11 09:07:21 2016 New Revision: 425878 URL: https://svnweb.freebsd.org/changeset/ports/425878 Log: Attempt to fix build on non-x86 archs. Approved by: portmgr (tier-2 blanket) Modified: head/biology/bwa/Makefile Modified: head/biology/bwa/Makefile ============================================================================== --- head/biology/bwa/Makefile Fri Nov 11 09:00:19 2016 (r425877) +++ head/biology/bwa/Makefile Fri Nov 11 09:07:21 2016 (r425878) @@ -17,14 +17,16 @@ USE_PERL5= run PLIST_FILES= bin/bwa bin/qualfa2fq.pl bin/xa2multi.pl man/man1/bwa.1.gz +.include + +.if ${ARCH} == amd64 || ${ARCH} == i386 # Avoid #error in emmintrin.h CFLAGS+= -msse2 - -BROKEN_powerpc64= Does not build on powerpc64 +.endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bwa ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/*.pl ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/*.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 -.include +.include