blob: a237b857823be182fc5d215f06ea5b5178ec2ac7 (
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/shrimp/shrimp-2.0.1.ebuild,v 1.1 2010/07/25 18:01:15 weaver Exp $
EAPI="2"
MY_PV=${PV//./_}
DESCRIPTION="SHort Read Mapping Package"
HOMEPAGE="http://compbio.cs.toronto.edu/shrimp/"
SRC_URI="http://compbio.cs.toronto.edu/shrimp/releases/SHRiMP_${MY_PV}.src.tar.gz"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86"
DEPEND="sys-devel/gcc[openmp]"
RDEPEND=""
S="${WORKDIR}/SHRiMP_${MY_PV}"
src_prepare() {
sed -i -e '1 a #include <stdint.h>' common/dag_glue.cpp || die
sed -i -e '1 a CXXFLAGS+= -O3 -mmmx -msse -msse2 -fopenmp' \
-e 's/-static//' "${S}/Makefile" || die
}
src_install() {
rm bin/README
dobin bin/* || die
insinto /usr/share/${PN}
doins -r utils || die
dodoc HISTORY README TODO SPLITTING_AND_MERGING
}
|