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.
gentoo-overlay/sci-biology/blat/blat-34-r1.ebuild

46 lines
951 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils toolchain-funcs
MY_PN="${PN}Src"
DESCRIPTION="The BLAST-Like Alignment Tool, a fast genomic sequence aligner"
HOMEPAGE="http://www.cse.ucsc.edu/~kent/"
SRC_URI="http://www.soe.ucsc.edu/~kent/src/${MY_PN}${PV}.zip"
SLOT="0"
LICENSE="blat"
KEYWORDS="~amd64 ~x86 ~x64-macos"
IUSE=""
S="${WORKDIR}/${MY_PN}"
DEPEND="app-arch/unzip"
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}"/${PV}-gentoo.patch
sed \
-e "1i\CFLAGS=${CFLAGS}" \
-e "1i\LDFLAGS=${LDFLAGS}" \
-i inc/common.mk || die
tc-export CC
}
src_compile() {
MACHTYPE=$(tc-arch)
[[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
mkdir -p "${S}/bin/${MACHTYPE}"
emake MACHTYPE="${MACHTYPE}" HOME="${S}" LDFLAGS="${LDFLAGS}"
}
src_install() {
MACHTYPE=$(tc-arch)
[[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
dobin "${S}/bin/${MACHTYPE}/"*
}