From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 77AC613888F for ; Mon, 12 Oct 2015 06:51:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 604DBE0814; Mon, 12 Oct 2015 06:51:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB8C8E0807 for ; Mon, 12 Oct 2015 06:51:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F76A33BEBE for ; Mon, 12 Oct 2015 06:51:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F205E77 for ; Mon, 12 Oct 2015 06:51:44 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1444499443.05f13955c6ce57de4194483c2e1e15744d02cf5d.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/bowtie/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/bowtie/bowtie-1.1.2.ebuild X-VCS-Directories: sci-biology/bowtie/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 05f13955c6ce57de4194483c2e1e15744d02cf5d X-VCS-Branch: master Date: Mon, 12 Oct 2015 06:51:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2171176e-a666-4a87-99a8-13714cd7e893 X-Archives-Hash: c1398d0edd394da831eae87db24bbecc commit: 05f13955c6ce57de4194483c2e1e15744d02cf5d Author: Ted Tanberry gmail com> AuthorDate: Sat Oct 10 17:50:43 2015 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Sat Oct 10 17:50:43 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=05f13955 sci-biology/bowtie: Use 'usex' instead of defining TBB variable. sci-biology/bowtie/bowtie-1.1.2.ebuild | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/sci-biology/bowtie/bowtie-1.1.2.ebuild b/sci-biology/bowtie/bowtie-1.1.2.ebuild index e443686..1988f6b 100644 --- a/sci-biology/bowtie/bowtie-1.1.2.ebuild +++ b/sci-biology/bowtie/bowtie-1.1.2.ebuild @@ -32,12 +32,6 @@ src_prepare() { } src_compile() { - if use tbb ; then - TBB="1" - else - TBB="0" - fi - emake \ CC="$(tc-getCC)" \ CPP="$(tc-getCXX)" \ @@ -45,7 +39,7 @@ src_compile() { CXXFLAGS="" \ EXTRA_FLAGS="${LDFLAGS}" \ RELEASE_FLAGS="${CXXFLAGS}" \ - WITH_TBB="${TBB}" + WITH_TBB="$(usex tbb 1 0)" } src_install() {