Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/Ray/
Date: Sun, 29 Jan 2017 20:25:39
Message-Id: 1485721516.1f3ac11ff790375b78743bb4e987ca433ec40881.jlec@gentoo
1 commit: 1f3ac11ff790375b78743bb4e987ca433ec40881
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 20:22:28 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 20:25:16 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1f3ac11f
7
8 sci-biology/Ray: QA fixes
9
10 Bump to EAPI 6
11 shorten DESCRIPTION
12 add static libs support
13
14 Package-Manager: Portage-2.3.3, Repoman-2.3.1
15 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
16
17 sci-biology/Ray/Ray-2.3.0.ebuild | 17 ++++++-----------
18 1 file changed, 6 insertions(+), 11 deletions(-)
19
20 diff --git a/sci-biology/Ray/Ray-2.3.0.ebuild b/sci-biology/Ray/Ray-2.3.0.ebuild
21 index 02789a1..352a5dd 100644
22 --- a/sci-biology/Ray/Ray-2.3.0.ebuild
23 +++ b/sci-biology/Ray/Ray-2.3.0.ebuild
24 @@ -1,28 +1,23 @@
25 -# Copyright 1999-2014 Gentoo Foundation
26 +# Copyright 1999-2017 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 # $Id$
29
30 -EAPI=5
31 +EAPI=6
32
33 -DESCRIPTION="Assembler for metagenomes, genomes and transcriptomes (untested) using parallel MPI"
34 +DESCRIPTION="Assembler for metagenomes, genomes and transcriptomes using MPI"
35 HOMEPAGE="http://denovoassembler.sourceforge.net/"
36 SRC_URI="http://sourceforge.net/projects/denovoassembler/files/Ray-"${PV}".tar.bz2"
37
38 -LICENSE="LGPL-3 GPL-3" # both must be agreed
39 +LICENSE="LGPL-3 GPL-3"
40 SLOT="0"
41 KEYWORDS="~amd64"
42 -IUSE=""
43 +IUSE="static-libs"
44
45 DEPEND="virtual/mpi"
46 RDEPEND="${DEPEND}
47 sys-cluster/osc-mpiexec"
48
49 -src_prepare(){
50 - cp -p README.md README
51 - cp -p README.md RayPlatform/README
52 -}
53 -
54 src_install(){
55 dobin Ray
56 - dolib libRayPlatform.a libRay.a
57 + use statics-libs && dolib.a libRayPlatform.a libRay.a
58 }