blob: 99d9c22f76a15fca2afe2fc06cc4e2e172912009 (
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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="A pairwise DNA sequence aligner, 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
}
|