commit: d8e71f09ea2222b8f04e79adb3f1772e680a0a24
Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Fri Dec 9 16:26:07 2016 +0000
Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Fri Dec 9 16:26:07 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d8e71f09
sci-biology/kat: respect sse CPU USE flags
Package-Manager: portage-2.3.3
sci-biology/kat/kat-2.2.0.ebuild | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/sci-biology/kat/kat-2.2.0.ebuild b/sci-biology/kat/kat-2.2.0.ebuild
index 38ddae2..fbd3834 100644
--- a/sci-biology/kat/kat-2.2.0.ebuild
+++ b/sci-biology/kat/kat-2.2.0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5} ) #
https://github.com/Ensembl/Bio-DB-HTS/issues/30
-inherit python-r1
+inherit python-r1 eutils flag-o-matic
DESCRIPTION="K-mer Analysis Toolkit (histogram, filter, compare sets, plot)"
HOMEPAGE="https://github.com/TGAC/KAT"
@@ -15,7 +15,7 @@
SRC_URI="https://github.com/TGAC/KAT/releases/download/Release-${PV}/${P}.tar.gz
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS=""
-IUSE=""
+IUSE="cpu_flags_x86_sse"
DEPEND="dev-libs/boost:0
dev-python/matplotlib
@@ -24,5 +24,9 @@ RDEPEND="${DEPEND}"
# contains bundled modified version of jellyfish-2.2 which should install
under different filenames
src_configure(){
- econf PYTHON_VERSION="${PYTHON_SINGLE_TARGET}"
+ local myconf=()
+ myconf+=( --disable-gnuplot ) # python3 does better image rendering, no
need for gnuplot
+ use cpu_flags_x86_sse && myconf+=( $(use_with cpu_flags_x86_sse sse) )
# pass down to jellyfish-2.20/configure
+ PYTHON_VERSION=3 econf ${myconf[@]}
+ eapply_user
}