summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kislyuk <weaver@gentoo.org>2010-04-18 23:41:06 +0000
committerAndrey Kislyuk <weaver@gentoo.org>2010-04-18 23:41:06 +0000
commit856cb12a112b6343e590b072883e2a8c6c4e1434 (patch)
tree8ca11a25f3e5ec3d0d67976c9bba7a3734621d79 /sci-biology
parentVersion bump, remove old. (diff)
downloadgentoo-2-856cb12a112b6343e590b072883e2a8c6c4e1434.tar.gz
gentoo-2-856cb12a112b6343e590b072883e2a8c6c4e1434.tar.bz2
gentoo-2-856cb12a112b6343e590b072883e2a8c6c4e1434.zip
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/bfast/ChangeLog7
-rw-r--r--sci-biology/bfast/bfast-0.6.4b.ebuild35
2 files changed, 41 insertions, 1 deletions
diff --git a/sci-biology/bfast/ChangeLog b/sci-biology/bfast/ChangeLog
index 6633e6a83d5e..834b828f7a16 100644
--- a/sci-biology/bfast/ChangeLog
+++ b/sci-biology/bfast/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-biology/bfast
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/bfast/ChangeLog,v 1.1 2010/01/21 18:25:31 weaver Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/bfast/ChangeLog,v 1.2 2010/04/18 23:41:05 weaver Exp $
+
+*bfast-0.6.4b (18 Apr 2010)
+
+ 18 Apr 2010; Andrey Kislyuk <weaver@gentoo.org> +bfast-0.6.4b.ebuild:
+ Version bump
*bfast-0.6.2a (21 Jan 2010)
diff --git a/sci-biology/bfast/bfast-0.6.4b.ebuild b/sci-biology/bfast/bfast-0.6.4b.ebuild
new file mode 100644
index 000000000000..ee98c04b74b9
--- /dev/null
+++ b/sci-biology/bfast/bfast-0.6.4b.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/bfast/bfast-0.6.4b.ebuild,v 1.1 2010/04/18 23:41:06 weaver Exp $
+
+EAPI="2"
+
+inherit autotools
+
+DESCRIPTION="Blat-like Fast Accurate Search Tool"
+HOMEPAGE="https://sourceforge.net/projects/bfast/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64 ~x86"
+
+DEPEND=""
+RDEPEND="dev-perl/XML-Simple"
+
+src_prepare() {
+ sed -i -e 's/-m64//' \
+ -e 's/CFLAGS="${default_CFLAGS} ${extended_CFLAGS}"/CFLAGS="${CFLAGS} ${default_CFLAGS} ${extended_CFLAGS}"/' \
+ configure.ac || die
+ eautoreconf
+}
+
+src_install() {
+ einstall || die
+ dodoc AUTHORS NEWS README
+}
+
+src_test() {
+ emake check || die
+}