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/mira/
Date: Tue, 30 Apr 2013 09:47:09
Message-Id: 1367314938.00bb77fe4833272c18c448942d8e19b99d729e77.mmokrejs@gentoo
1 commit: 00bb77fe4833272c18c448942d8e19b99d729e77
2 Author: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Tue Apr 30 09:42:18 2013 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Tue Apr 30 09:42:18 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=00bb77fe
7
8 sci-biology/mira-3.9.15: bump to current besta version
9
10 Package-Manager: portage-2.1.11.62
11
12 ---
13 sci-biology/mira/ChangeLog | 6 +++
14 sci-biology/mira/mira-3.9.15.ebuild | 64 +++++++++++++++++++++++++++++++++++
15 2 files changed, 70 insertions(+), 0 deletions(-)
16
17 diff --git a/sci-biology/mira/ChangeLog b/sci-biology/mira/ChangeLog
18 index 68b66f6..afda6bd 100644
19 --- a/sci-biology/mira/ChangeLog
20 +++ b/sci-biology/mira/ChangeLog
21 @@ -2,6 +2,12 @@
22 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
23 # $Header: $
24
25 +*mira-3.9.15 (30 Apr 2013)
26 +
27 + 30 Apr 2013; Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
28 + +mira-3.9.15.ebuild:
29 + sci-biology/mira-3.9.15: bump to current besta version mira-3.9.15.ebuild
30 +
31 *mira-3.4.1.1 (22 Feb 2013)
32 *mira-3.9.9 (22 Feb 2013)
33
34
35 diff --git a/sci-biology/mira/mira-3.9.15.ebuild b/sci-biology/mira/mira-3.9.15.ebuild
36 new file mode 100644
37 index 0000000..8dbb921
38 --- /dev/null
39 +++ b/sci-biology/mira/mira-3.9.15.ebuild
40 @@ -0,0 +1,64 @@
41 +# Copyright 1999-2013 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/mira/mira-3.4.0.2.ebuild,v 1.1 2012/11/07 22:29:56 jlec Exp $
44 +
45 +EAPI=4
46 +
47 +MIRA_3RDPARTY_PV="06-07-2012"
48 +
49 +inherit autotools base multilib
50 +
51 +DESCRIPTION="Whole Genome Shotgun and EST Sequence Assembler for Sanger, 454 and Solexa / Illumina"
52 +HOMEPAGE="http://www.chevreux.org/projects_mira.html"
53 +SRC_URI="
54 + http://sourceforge.net/projects/mira-assembler/files/MIRA/development/${P}.tar.bz2
55 + mirror://sourceforge/mira-assembler/mira_3rdparty_${MIRA_3RDPARTY_PV}.tar.bz2"
56 +
57 +SLOT="0"
58 +LICENSE="GPL-2"
59 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-macos"
60 +IUSE="doc"
61 +
62 +CDEPEND="
63 + dev-libs/boost
64 + dev-util/google-perftools"
65 +DEPEND="${CDEPEND}
66 + app-editors/vim-core
67 + dev-libs/expat"
68 +RDEPEND="${CDEPEND}"
69 +
70 +#DOCS=( AUTHORS GETTING_STARTED NEWS README HELP_WANTED
71 +# THANKS doc/3rdparty/scaffolding_MIRA_BAMBUS.pdf )
72 +DOCS=( AUTHORS GETTING_STARTED NEWS README HELP_WANTED
73 + THANKS )
74 +
75 +src_prepare() {
76 + find -name 'configure*' -or -name 'Makefile*' | xargs sed -i 's/flex++/flex -+/' || die
77 + epatch \
78 + "${FILESDIR}"/${PN}-3.4.0.2-boost-1.50.patch
79 + AT_M4DIR="config/m4" eautoreconf
80 +}
81 +
82 +src_configure() {
83 + econf \
84 + --with-boost="${EPREFIX}/usr/$(get_libdir)" \
85 + --with-boost-libdir="${EPREFIX}/usr/$(get_libdir)" \
86 + --with-boost-thread=boost_thread-mt
87 +}
88 +
89 +#src_compile() {
90 +# base_src_compile
91 +# # TODO: resolve docbook incompatibility for building docs
92 +# if use doc; then emake -C doc clean docs || die; fi
93 +#}
94 +
95 +src_install() {
96 + base_src_install
97 + dobin "${WORKDIR}"/3rdparty/{sff_extract,qual2ball,*.pl}
98 + dodoc "${WORKDIR}"/3rdparty/{README.txt,midi_screen.fasta}
99 +}
100 +
101 +pkg_postinst() {
102 + einfo "Documentation is no longer built, you can find it at:"
103 + einfo "http://mira-assembler.sourceforge.net/docs/DefinitiveGuideToMIRA.html"
104 +}