diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2011-11-28 02:15:41 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2011-11-28 02:15:41 +0000 |
commit | 0bcccc662fa69681c930342d9c228cd317a3773d (patch) | |
tree | bf9dc0f2c8e6d9d7cc34154ebad0451219a1f9d0 /sci-biology/bfast | |
parent | Add local scope for myeconfargs. (diff) | |
download | gentoo-2-0bcccc662fa69681c930342d9c228cd317a3773d.tar.gz gentoo-2-0bcccc662fa69681c930342d9c228cd317a3773d.tar.bz2 gentoo-2-0bcccc662fa69681c930342d9c228cd317a3773d.zip |
Version bump
(Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/bfast')
-rw-r--r-- | sci-biology/bfast/ChangeLog | 7 | ||||
-rw-r--r-- | sci-biology/bfast/bfast-0.7.0a.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/sci-biology/bfast/ChangeLog b/sci-biology/bfast/ChangeLog index 0032348fde5d..51b096e0ddd9 100644 --- a/sci-biology/bfast/ChangeLog +++ b/sci-biology/bfast/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-biology/bfast # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/bfast/ChangeLog,v 1.6 2011/10/06 12:59:24 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/bfast/ChangeLog,v 1.7 2011/11/28 02:15:41 weaver Exp $ + +*bfast-0.7.0a (28 Nov 2011) + + 28 Nov 2011; Andrey Kislyuk <weaver@gentoo.org> +bfast-0.7.0a.ebuild: + Version bump *bfast-0.6.5a-r1 (06 Oct 2011) diff --git a/sci-biology/bfast/bfast-0.7.0a.ebuild b/sci-biology/bfast/bfast-0.7.0a.ebuild new file mode 100644 index 000000000000..861e8a93a0f4 --- /dev/null +++ b/sci-biology/bfast/bfast-0.7.0a.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/bfast/bfast-0.7.0a.ebuild,v 1.1 2011/11/28 02:15:41 weaver Exp $ + +EAPI=4 + +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 \ + -e 's/-m64//' \ + -e 's/CFLAGS="${default_CFLAGS} ${extended_CFLAGS}"/CFLAGS="${CFLAGS} ${default_CFLAGS} ${extended_CFLAGS}"/' \ + -e 's:-g -O2::g' \ + -i configure.ac || die + sed \ + -e 's:. test.definitions.sh:. ./test.definitions.sh:g' \ + -i tests/*sh || die + eautoreconf +} |