Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/Gambit/
Date: Mon, 21 Sep 2015 19:44:24
Message-Id: 1442864305.6ecad09b5d5c91e20812153615ee3716e6c25ed0.jlec@gentoo
1 commit: 6ecad09b5d5c91e20812153615ee3716e6c25ed0
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 21 19:38:25 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 21 19:38:25 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6ecad09b
7
8 sci-biology/Gambit: Handle qt correctly
9
10 Bump to EAPI 5
11
12 Package-Manager: portage-2.2.20.1
13 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
14
15 sci-biology/Gambit/Gambit-0.4.145.ebuild | 22 ++++++++++++----------
16 1 file changed, 12 insertions(+), 10 deletions(-)
17
18 diff --git a/sci-biology/Gambit/Gambit-0.4.145.ebuild b/sci-biology/Gambit/Gambit-0.4.145.ebuild
19 index d5a1119..8302a2b 100644
20 --- a/sci-biology/Gambit/Gambit-0.4.145.ebuild
21 +++ b/sci-biology/Gambit/Gambit-0.4.145.ebuild
22 @@ -1,14 +1,15 @@
23 -# Copyright 1999-2014 Gentoo Foundation
24 +# Copyright 1999-2015 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 # $Id$
27
28 -EAPI=3
29 +EAPI=5
30
31 -inherit qt4-r2
32 +inherit qmake-utils
33
34 -DESCRIPTION="Display genomic alignments from BAM files with annotations from BED, GFF, GFF3, VCF formats"
35 +DESCRIPTION="Genomic alignments from BAM files with annotations from BED, GFF, GFF3, VCF formats"
36 HOMEPAGE="http://code.google.com/p/gambit-viewer/"
37 -SRC_URI="http://gambit-viewer.googlecode.com/files/Gambit_v0.4.145_src.tar.gz
38 +SRC_URI="
39 + http://gambit-viewer.googlecode.com/files/Gambit_v0.4.145_src.tar.gz
40 http://gambit-viewer.googlecode.com/files/GambitDocumentation_v0.4.145.pdf"
41
42 LICENSE="GPL-2"
43 @@ -16,7 +17,8 @@ SLOT="0"
44 KEYWORDS="~amd64 ~x86"
45 IUSE=""
46
47 -DEPEND="dev-qt/qtcore:4
48 +DEPEND="
49 + dev-qt/qtcore:4
50 dev-qt/qtgui:4"
51 RDEPEND="${DEPEND}
52 sci-biology/samtools"
53 @@ -24,12 +26,12 @@ RDEPEND="${DEPEND}
54 S="${WORKDIR}"/Gambit
55
56 src_configure() {
57 - lupdate ${PN}.pro || die
58 - lrelease ${PN}.pro || die
59 - eqmake4 ${PN}.pro || die
60 + $(qt4_get_bindir)/lupdate ${PN}.pro || die
61 + $(qt4_get_bindir)/lrelease ${PN}.pro || die
62 + eqmake4 ${PN}.pro
63 }
64
65 src_install() {
66 - dobin ${PN} || die
67 + dobin ${PN}
68 dodoc "${DISTDIR}"/GambitDocumentation_v0.4.145.pdf
69 }