Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/yass/
Date: Sat, 03 Sep 2016 23:03:44
Message-Id: 1472943793.49f9e4a0c388e395c0cbf781ea7e3a9db8cc761b.soap@gentoo
1 commit: 49f9e4a0c388e395c0cbf781ea7e3a9db8cc761b
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 22:33:38 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 3 23:03:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f9e4a0
7
8 sci-biology/yass: Port to EAPI=6
9
10 Package-Manager: portage-2.3.0
11
12 sci-biology/yass/yass-1.14-r2.ebuild | 33 +++++++++++++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/sci-biology/yass/yass-1.14-r2.ebuild b/sci-biology/yass/yass-1.14-r2.ebuild
16 new file mode 100644
17 index 00000000..ff95e74
18 --- /dev/null
19 +++ b/sci-biology/yass/yass-1.14-r2.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit autotools
28 +
29 +DESCRIPTION="Genomic similarity search with multiple transition constrained spaced seeds"
30 +HOMEPAGE="http://bioinfo.lifl.fr/yass/"
31 +SRC_URI="http://bioinfo.lifl.fr/yass/files/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +IUSE="dmalloc lowmem threads"
36 +KEYWORDS="~amd64 ~x86"
37 +
38 +DEPEND="dmalloc? ( dev-libs/dmalloc )"
39 +RDEPEND="${DEPEND}"
40 +
41 +PATCHES=( "${FILESDIR}"/${PV}-as-needed.patch )
42 +
43 +src_prepare() {
44 + default
45 + eautoreconf
46 +}
47 +
48 +src_configure() {
49 + econf \
50 + $(use_enable threads) \
51 + $(use_enable lowmem lowmemory) \
52 + $(use_with dmalloc)
53 +}