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

EAPI=5

EANT_BUILD_TARGET="dist"
EANT_NEEDS_TOOLS="true"
JAVA_ANT_REWRITE_CLASSPATH="true"

inherit java-pkg-2 java-ant-2 vcs-snapshot

DESCRIPTION="The Genome Analysis Toolkit"
HOMEPAGE="http://www.broadinstitute.org/gsa/wiki/index.php/The_Genome_Analysis_Toolkit"
SRC_URI="https://github.com/broadgsa/gatk/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
IUSE=""
KEYWORDS="~amd64"

COMMON_DEPS=""
DEPEND="
	>=virtual/jdk-1.6
	dev-java/maven-bin:*
	dev-java/cofoja
	${COMMON_DEPS}"
RDEPEND="
	>=virtual/jre-1.6
	>=sci-biology/SnpEff-2.0.5
	${COMMON_DEPS}"

src_prepare() {
	sh ant-bridge.sh || die # BUG: this download and compiles lot of stuff
	java-pkg-2_src_prepare
}

src_install() {
	mvn install -Dmaven.repo.local="${WORKDIR}"/.m2/repository || die
	find public -name \*.jar | grep -v tests | grep -v cofoja | while read f; do \
		java-pkg_dojar $f # FIXME: Java QA Notice: installing versioned jar 'gatk-tools-public-3.6.jar'
	done
}

pkg_postinst(){
	einfo "The ebuild also installs bundled SnpEff-2.0.5.jar file until the"
	einfo "installation layout gets more testing"
}