aboutsummaryrefslogtreecommitdiff
blob: 32364b20c90ea2dba78b124033b1394286702b82 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit eutils flag-o-matic toolchain-funcs

DESCRIPTION="A pairwise DNA sequence aligner (also chromosome to chromosome), a BLASTZ replacement"
HOMEPAGE="http://www.bx.psu.edu/~rsharris/lastz/"
SRC_URI="http://www.bx.psu.edu/~rsharris/lastz/newer/${P}.tar.gz"

SLOT="0"
LICENSE="all-rights-reserved"
KEYWORDS="~amd64 ~x86"
IUSE=""

S="${WORKDIR}"/lastz-distrib-"${PV}"

RESTRICT="mirror"

src_prepare() {
	append-lfs-flags
	epatch "${FILESDIR}"/${P}-build.patch

	tc-export CC
}

src_install(){
	dobin src/lastz src/lastz_D
	dodoc README.lastz.html
	dohtml lav_format.html
}