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/germline/
Date: Fri, 23 Sep 2016 17:36:01
Message-Id: 1474652142.ff1f85519180af8eef93cd641ff1fd06fbf7909a.mmokrejs@gentoo
1 commit: ff1f85519180af8eef93cd641ff1fd06fbf7909a
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Fri Sep 23 17:35:42 2016 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Fri Sep 23 17:35:42 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ff1f8551
7
8 sci-biology/germline: version bump
9
10 Package-Manager: portage-2.3.0
11
12 sci-biology/germline/germline-1.5.2.ebuild | 36 ++++++++++++++++++++++++++++++
13 1 file changed, 36 insertions(+)
14
15 diff --git a/sci-biology/germline/germline-1.5.2.ebuild b/sci-biology/germline/germline-1.5.2.ebuild
16 new file mode 100644
17 index 0000000..b3b681b
18 --- /dev/null
19 +++ b/sci-biology/germline/germline-1.5.2.ebuild
20 @@ -0,0 +1,36 @@
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 versionator toolchain-funcs
28 +
29 +MY_PV=$(replace_all_version_separators '-')
30 +
31 +DESCRIPTION="Find shared segments of Identity by Descent (IBD) between pairs of individuals"
32 +HOMEPAGE="http://www.cs.columbia.edu/~gusev/germline
33 + http://genome.cshlp.org/content/19/2/318.full"
34 +SRC_URI="http://www.cs.columbia.edu/~gusev/${PN}/${PN}-${MY_PV}.tar.gz"
35 +
36 +LICENSE="GPL-2"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE=""
40 +
41 +DEPEND="dev-libs/boost"
42 +RDEPEND="${DEPEND}"
43 +
44 +S="${WORKDIR}"/${PN}-${MY_PV}
45 +
46 +src_prepare(){
47 + sed -e "s/-O3 /${CXXFLAGS} /;s/g++/$(tc-getCXX)/" -i Makefile || die
48 + sed -e "s#diff -q -s test/expected.match test/generated.match#diff -q -s test/expected.match test/generated.match || cat test/generated.err#" -i Makefile || die
49 + sed -e "s/^all: clean germline bmatch test/all: clean germline bmatch/" -i Makefile || die
50 + default
51 +}
52 +
53 +src_install(){
54 + dobin germline parse_bmatch
55 + dodoc README
56 +}