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

EAPI=5

inherit qmake-utils

DESCRIPTION="Genomic alignments from BAM files with annotations from BED, GFF, GFF3, VCF formats"
HOMEPAGE="http://code.google.com/p/gambit-viewer/"
SRC_URI="
	http://gambit-viewer.googlecode.com/files/Gambit_v0.4.145_src.tar.gz
	http://gambit-viewer.googlecode.com/files/GambitDocumentation_v0.4.145.pdf"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="
	dev-qt/qtcore:4
	dev-qt/qtgui:4"
RDEPEND="${DEPEND}
	sci-biology/samtools"

S="${WORKDIR}"/Gambit

src_configure() {
	$(qt4_get_bindir)/lupdate ${PN}.pro || die
	$(qt4_get_bindir)/lrelease ${PN}.pro || die
	eqmake4 ${PN}.pro
}

src_install() {
	dobin ${PN}
	dodoc "${DISTDIR}"/GambitDocumentation_v0.4.145.pdf
}