Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/stacks/
Date: Thu, 01 Dec 2016 16:37:08
Message-Id: 1480610201.7ce5ca59fd2297afcb385fc468de7f45b44d4210.mmokrejs@gentoo
1 commit: 7ce5ca59fd2297afcb385fc468de7f45b44d4210
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Thu Dec 1 16:36:41 2016 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Thu Dec 1 16:36:41 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7ce5ca59
7
8 sci-biology/stacks: version bump; drop bundled htslib sources, bug #601366
9
10 Package-Manager: portage-2.3.2
11
12 .../stacks/{stacks-1.16.ebuild => stacks-1.44.ebuild} | 18 +++++++++++++-----
13 1 file changed, 13 insertions(+), 5 deletions(-)
14
15 diff --git a/sci-biology/stacks/stacks-1.16.ebuild b/sci-biology/stacks/stacks-1.44.ebuild
16 similarity index 62%
17 rename from sci-biology/stacks/stacks-1.16.ebuild
18 rename to sci-biology/stacks/stacks-1.44.ebuild
19 index d5efc0c..131f562 100644
20 --- a/sci-biology/stacks/stacks-1.16.ebuild
21 +++ b/sci-biology/stacks/stacks-1.44.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2015 Gentoo Foundation
24 +# Copyright 1999-2016 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 @@ -6,9 +6,9 @@ EAPI=5
29
30 AUTOTOOLS_AUTORECONF=yes
31
32 -inherit flag-o-matic eutils perl-module webapp
33 +inherit flag-o-matic eutils perl-module webapp autotools
34
35 -DESCRIPTION="Analyze Restriction enzyme data, draw gen. maps, population genomics (RAD-seq Illumina sequencing)"
36 +DESCRIPTION="Analyze restriction enzyme data, draw gen. maps, population genomics (RAD-seq sequencing)"
37 HOMEPAGE="http://creskolab.uoregon.edu/stacks"
38 SRC_URI="http://creskolab.uoregon.edu/stacks/source/${P}.tar.gz"
39
40 @@ -17,16 +17,23 @@ LICENSE="GPL-3"
41 KEYWORDS=""
42 IUSE=""
43
44 -# sys-cluster/openmpi
45 DEPEND="
46 + >=sci-libs/htslib-1.3.1
47 dev-cpp/sparsehash
48 - sci-biology/samtools
49 + sci-biology/samtools:*
50 sci-biology/bamtools"
51 RDEPEND="${DEPEND}
52 dev-lang/perl
53 >=dev-lang/php-5
54 dev-perl/DBD-mysql"
55
56 +src_prepare(){
57 + sed -e 's/SUBDIRS = htslib/SUBDIRS = /' -i Makefile.am || die
58 + mycppflags=`pkg-config --cflags htslib` # is blocked by bug #601366
59 + sed -e "s#-I./htslib/htslib#-I${mycppflags}#" -i configure.ac || die
60 + eautoreconf
61 +}
62 +
63 src_configure() {
64 econf --enable-bam --enable-sparsehash
65 webapp_src_preinst
66 @@ -34,6 +41,7 @@ src_configure() {
67 }
68
69 src_compile(){
70 + rm -rf htslib # zap bundled htslib-1.3.1
71 emake DESTDIR="${D}"
72 }