You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
887 B
35 lines
887 B
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
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="amd64 x86"
|
|
|
|
MY_PN="${PN}Src"
|
|
SRC_URI="http://www.soe.ucsc.edu/~kent/src/${MY_PN}${PV}.zip"
|
|
S="${WORKDIR}/${MY_PN}"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND=""
|
|
|
|
src_compile() {
|
|
MACHTYPE=$(tc-arch)
|
|
[[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
|
|
sed -i 's/-Werror//; s/CFLAGS=//;' "${S}/inc/common.mk"
|
|
sed -i 's/\(${STRIP} \)/#\1/' "${S}"/{*/makefile,utils/*/makefile,*/*.mk}
|
|
mkdir -p "${S}/bin/${MACHTYPE}"
|
|
emake MACHTYPE="${MACHTYPE}" HOME="${S}" || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
MACHTYPE=$(tc-arch)
|
|
[[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
|
|
dobin "${S}/bin/${MACHTYPE}/"*
|
|
}
|