Gentoo Archives: gentoo-commits

From: Andrey Kislyuk <weaver@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/mrfast/
Date: Mon, 28 Nov 2011 21:45:43
Message-Id: 07a054648ed73aa895735355fb8514381d9dd770.weaver@gentoo
1 commit: 07a054648ed73aa895735355fb8514381d9dd770
2 Author: Andrey Kislyuk <kislyuk <AT> gmail <DOT> com>
3 AuthorDate: Mon Nov 28 21:45:29 2011 +0000
4 Commit: Andrey Kislyuk <weaver <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 28 21:45:29 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=07a05464
7
8 New package, ebuild written by me
9
10 ---
11 sci-biology/mrfast/mrfast-2.1.0.1.ebuild | 25 +++++++++++++++++++++++++
12 1 files changed, 25 insertions(+), 0 deletions(-)
13
14 diff --git a/sci-biology/mrfast/mrfast-2.1.0.1.ebuild b/sci-biology/mrfast/mrfast-2.1.0.1.ebuild
15 new file mode 100644
16 index 0000000..8f7d386
17 --- /dev/null
18 +++ b/sci-biology/mrfast/mrfast-2.1.0.1.ebuild
19 @@ -0,0 +1,25 @@
20 +# Copyright 1999-2010 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/amos/amos-2.0.8-r1.ebuild,v 1.1 2010/02/11 16:47:31 weaver Exp $
23 +
24 +EAPI=4
25 +
26 +DESCRIPTION="Micro Read Fast Alignment Search Tool"
27 +HOMEPAGE="http://mrfast.sourceforge.net/"
28 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
29 +
30 +LICENSE="BSD"
31 +SLOT="0"
32 +IUSE=""
33 +KEYWORDS="~amd64"
34 +
35 +DEPEND=""
36 +RDEPEND=""
37 +
38 +src_prepare() {
39 + sed -i -e 's/CFLAGS =/CFLAGS +=/' -e 's/LDFLAGS =/LDFLAGS +=/' Makefile
40 +}
41 +
42 +src_install() {
43 + dobin mrfast
44 +}