blob: fda5368790317cba4304de77e76ab2705af56d93 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MY_PN="${PN%-bin}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Pairwise sequence alignment mapping DNA reads onto genomic reference"
HOMEPAGE="http://www.sanger.ac.uk/resources/software/smalt/"
SRC_URI="ftp://ftp.sanger.ac.uk/pub4/resources/software/${MY_PN}/${MY_P}.tgz"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}"/${MY_P}
QA_PREBUILT="/opt/.*"
src_install(){
exeinto /opt/bin
use x86 && newexe ${MY_PN}_i386 ${MY_PN}
use amd64 && newexe ${MY_PN}_x86_64 ${MY_PN}
use ia64 && newexe ${MY_PN}_ia64 ${MY_PN}
dodoc NEWS ${MY_PN}_manual.pdf
doman ${MY_PN}.1
}
|