aboutsummaryrefslogtreecommitdiff
blob: 212072dcf347a8de4a74dd383b751fdc3fd2bf83 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

inherit toolchain-funcs

DESCRIPTION="Predict CDS using 6mers without deriving information from base composition"
HOMEPAGE="http://www.sanger.ac.uk/resources/software"
SRC_URI="ftp://ftp.sanger.ac.uk/pub/users/rd/hexamer.tar.gz -> hexamer-19990330.tar.gz"

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

DEPEND=""
RDEPEND="${DEPEND}"

S="${WORKDIR}"/hexamer

src_prepare(){
	sed -e "s#cc -g#$(tc-getCC) ${CFLAGS}#" -i Makefile || die
}

src_install(){
	dobin hexamer hextable
	dodoc README
}