blob: 773e2e1af442a5eb2277f4463c27a17405cfe936 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit toolchain-funcs
DESCRIPTION="The BLAST-Like Alignment Tool, a fast genomic sequence aligner"
LICENSE="blat"
HOMEPAGE="http://www.cse.ucsc.edu/~kent/"
SLOT="0"
IUSE=""
KEYWORDS="~x86"
SRC_URI="http://www.soe.ucsc.edu/~kent/src/${PN}Src${PV}.zip"
S="${WORKDIR}/${PN}Src"
DEPEND="app-arch/unzip"
RDEPEND=""
src_compile() {
MACHTYPE=$(tc-arch)
if [[ $MACHTYPE == "x86" ]]; then MACHTYPE="i386"; fi
sed -i 's/-Werror//; s/CFLAGS=//;' "${S}/inc/common.mk"
mkdir -p "${S}/bin/${MACHTYPE}"
emake MACHTYPE="${MACHTYPE}" HOME="${S}" || die "emake failed"
}
src_install() {
MACHTYPE=$(tc-arch)
if [[ $MACHTYPE == "x86" ]]; then MACHTYPE="i386"; fi
dobin "${S}/bin/${MACHTYPE}/"*
}
|