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/lucy/
Date: Tue, 22 Sep 2015 08:19:47
Message-Id: 1442908206.925d5e2b9a96a7c020f7f77b3d245b94ec93311b.jlec@gentoo
1 commit: 925d5e2b9a96a7c020f7f77b3d245b94ec93311b
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 22 07:50:06 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 22 07:50:06 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=925d5e2b
7
8 sci-biology/lucy: Bump to EAPI=5
9
10 Package-Manager: portage-2.2.21
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 sci-biology/lucy/lucy-1.20.ebuild | 17 +++++------------
14 1 file changed, 5 insertions(+), 12 deletions(-)
15
16 diff --git a/sci-biology/lucy/lucy-1.20.ebuild b/sci-biology/lucy/lucy-1.20.ebuild
17 index 0c77154..767f613 100644
18 --- a/sci-biology/lucy/lucy-1.20.ebuild
19 +++ b/sci-biology/lucy/lucy-1.20.ebuild
20 @@ -1,8 +1,8 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 +# Copyright 1999-2015 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24 # $Id$
25
26 -EAPI=3
27 +EAPI=5
28
29 DESCRIPTION="DNA sequence quality and vector trimming tool"
30 HOMEPAGE="http://lucy.sourceforge.net/"
31 @@ -13,9 +13,6 @@ SLOT="0"
32 KEYWORDS="~amd64 ~x86"
33 IUSE=""
34
35 -DEPEND=""
36 -RDEPEND="${DEPEND}"
37 -
38 S="${WORKDIR}"/lucy-1.20p
39
40 src_prepare(){
41 @@ -23,12 +20,8 @@ src_prepare(){
42 sed -i 's/^CFLAGS = -O/#CFLAGS = -O/' Makefile || die
43 }
44
45 -src_compile(){
46 - emake || die "emake failed"
47 -}
48 -
49 src_install(){
50 - dobin lucy || die "dobin failed"
51 - doman lucy.1 || die "doman failed"
52 - dodoc README.FIRST || die "dodoc failed"
53 + dobin lucy
54 + doman lucy.1
55 + dodoc README.FIRST
56 }