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/clview/
Date: Tue, 22 Sep 2015 08:19:47
Message-Id: 1442907913.ad4e0fb9b1c45b26bb5a088625fbe24669de52c0.jlec@gentoo
1 commit: ad4e0fb9b1c45b26bb5a088625fbe24669de52c0
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 22 07:45:13 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 22 07:45:13 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ad4e0fb9
7
8 sci-biology/clview: 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/clview/clview-0.1.ebuild | 16 +++++++++-------
14 1 file changed, 9 insertions(+), 7 deletions(-)
15
16 diff --git a/sci-biology/clview/clview-0.1.ebuild b/sci-biology/clview/clview-0.1.ebuild
17 index b28621e..c8f8124 100644
18 --- a/sci-biology/clview/clview-0.1.ebuild
19 +++ b/sci-biology/clview/clview-0.1.ebuild
20 @@ -1,14 +1,15 @@
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="clview is an assembly .ace file viewer from TIGR Gene Indices project tools"
30 HOMEPAGE="http://sourceforge.net/projects/clview"
31 -SRC_URI="http://sourceforge.net/projects/clview/files/source%20code/clview_src.tar.gz
32 - ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/clview/clview_src.tar.gz
33 - ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/clview/clview_linux_i386.tar.gz"
34 +SRC_URI="
35 + http://sourceforge.net/projects/clview/files/source%20code/clview_src.tar.gz
36 + ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/clview/clview_src.tar.gz
37 + ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/clview/clview_linux_i386.tar.gz"
38
39 # the ftp://occams.dfci.harvard.edu/pub/bio/tgi/software/tgicl/tgi_cpp_library.tar.gz
40 # contain maybe an older but definitely larger set of .cpp files compared to clview/gcl/
41 @@ -68,6 +69,7 @@ DEPEND="=x11-libs/fox-1.6*"
42 RDEPEND="${DEPEND}"
43
44 S=${WORKDIR}
45 +
46 src_unpack() {
47 unpack clview_src.tar.gz
48 }
49 @@ -98,10 +100,10 @@ src_prepare() {
50
51 src_compile(){
52 cd "${S}"/clview || die
53 - emake || die
54 + emake
55 }
56
57 src_install() {
58 # install at least the binaries for clview when we cannot compile it
59 - dobin clview/clview || die "Failed to install clview binary"
60 + dobin clview/clview
61 }