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/repeatmasker/
Date: Sun, 29 Jan 2017 11:59:54
Message-Id: 1485691163.e9643bc810aa1b949e80bc0619831f7235c5b9e4.jlec@gentoo
1 commit: e9643bc810aa1b949e80bc0619831f7235c5b9e4
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 11:46:31 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 11:59:23 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e9643bc8
7
8 sci-biology/repeatmasker: QA fixes
9
10 BUMP EAPI to 6
11 sort deps
12 use optfeature
13 Add missing quotes
14
15 Package-Manager: Portage-2.3.3, Repoman-2.3.1
16 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
17
18 sci-biology/repeatmasker/repeatmasker-4.0.6-r3.ebuild | 17 +++++++++--------
19 1 file changed, 9 insertions(+), 8 deletions(-)
20
21 diff --git a/sci-biology/repeatmasker/repeatmasker-4.0.6-r3.ebuild b/sci-biology/repeatmasker/repeatmasker-4.0.6-r3.ebuild
22 index c320942..3da4241 100644
23 --- a/sci-biology/repeatmasker/repeatmasker-4.0.6-r3.ebuild
24 +++ b/sci-biology/repeatmasker/repeatmasker-4.0.6-r3.ebuild
25 @@ -2,7 +2,7 @@
26 # Distributed under the terms of the GNU General Public License v2
27 # $Id$
28
29 -EAPI=5
30 +EAPI=6
31
32 inherit eutils
33
34 @@ -19,11 +19,12 @@ IUSE=""
35
36 DEPEND=">=dev-lang/perl-5.8"
37 RDEPEND="
38 + dev-perl/Text-Soundex
39 + sci-biology/phrap
40 + sci-biology/repeatmasker-libraries
41 sci-biology/rmblast
42 >=sci-biology/trf-4.0.4
43 - sci-biology/repeatmasker-libraries
44 - sci-biology/phrap
45 - dev-perl/Text-Soundex"
46 +"
47
48 S="${WORKDIR}/RepeatMasker"
49
50 @@ -45,7 +46,7 @@ src_configure() {
51 # below try to define paths to trf, cross_match, rmblast and nhmmer as search tools
52 echo "
53 env
54 -${S}
55 +\"${S}\"
56 /opt/bin
57 1
58 /usr/bin
59 @@ -96,8 +97,8 @@ pkg_postinst(){
60 einfo "PATHs to the search binaries are defined in"
61 einfo "/usr/share/${PN}/lib/RepeatMaskerConfig.pm"
62 einfo "Supported search engines are:"
63 - einfo "cross_match from sci-biology/phrap"
64 - einfo "rmblast from sci-biology/rmblast"
65 - einfo "nhmmer from >=sci-biology/hmmer-3.1"
66 + optfeature "cross_match" sci-biology/phrap
67 + optfeature "rmblast" sci-biology/rmblast
68 + optfeature "nhmmer" >=sci-biology/hmmer-3.1
69 einfo "abblast/wublast from http://blast.advbiocomp.com/licensing"
70 }