blob: 6bbf9ea164ced3149bd6b20019d188817ba66045 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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.4c.ebuild,v 1.1 2010/05/07 19:21:57 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
}
|