aboutsummaryrefslogtreecommitdiff
blob: 6bc8ff57a0e27b65de53477f7a24555dc780b27c (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit eutils perl-module

DESCRIPTION="A genome annotation viewer and pipeline for small eukaryota and prokaryota"
HOMEPAGE="http://www.yandell-lab.org/software/maker.html"
SRC_URI="maker-"${PV}".tgz"

RESTRICT="fetch"

# for academia: GPL-v2 or Artistic-2
# for commercial: ask
LICENSE="|| ( GPL-2 Artistic-2 )"
SLOT="0"
KEYWORDS=""
IUSE=""

# http://search.cpan.org/~rgarcia/Perl-Unsafe-Signals-0.02/
# http://search.cpan.org/~rybskej/forks-0.36/lib/forks.pm
# http://search.cpan.org/~rybskej/forks-0.36/lib/forks/shared.pm
# http://search.cpan.org/~dconway/IO-Prompt-0.997002/lib/IO/Prompt.pm
DEPEND="virtual/mpi
	dev-perl/DBI
	dev-perl/DBD-SQLite
	dev-perl/File-Which
	dev-perl/Bit-Vector
	dev-perl/Inline-C
	dev-perl/IO-All
	dev-perl/libwww-perl
	dev-perl/DBD-Pg
	virtual/perl-Module-Build
	>=sci-biology/bioperl-1.6
	sci-biology/ncbi-tools || ( sci-biology/ncbi-tools++ )
	sci-biology/snap
	sci-biology/repeatmasker
	sci-biology/exonerate
	sci-biology/augustus"
RDEPEND="${DEPEND}"

S="${WORKDIR}"/maker/src

pkg_nofetch() {
	einfo "Please visit ${HOMEPAGE} and obtain the file"
	einfo "maker-"${PV}".tgz and place it into ${DISTDIR}"
}

src_compile(){
	perl Build.PL || die
	./Build install || die
}