Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/hmmer/
Date: Tue, 26 Sep 2017 05:08:21
Message-Id: 1506402444.fe3bbbb5d658bf8673eba70e65f1b6b6de9d7c88.kentnl@gentoo
1 commit: fe3bbbb5d658bf8673eba70e65f1b6b6de9d7c88
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 25 13:24:20 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 26 05:07:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe3bbbb5
7
8 sci-biology/hmmer: Cleanup broken versions re bug #421799
9
10 Closes: https://bugs.gentoo.org/421799
11 Package-Manager: Portage-2.3.8, Repoman-2.3.3
12
13 sci-biology/hmmer/hmmer-2.3.2-r3.ebuild | 52 ---------------------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/sci-biology/hmmer/hmmer-2.3.2-r3.ebuild b/sci-biology/hmmer/hmmer-2.3.2-r3.ebuild
17 deleted file mode 100644
18 index 0d1a357d4d0..00000000000
19 --- a/sci-biology/hmmer/hmmer-2.3.2-r3.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DESCRIPTION="Sequence analysis using profile hidden Markov models"
28 -LICENSE="GPL-2"
29 -HOMEPAGE="http://hmmer.janelia.org/"
30 -SRC_URI="ftp://ftp.genetics.wustl.edu/pub/eddy/${PN}/${PV}/${P}.tar.gz"
31 -
32 -SLOT="0"
33 -IUSE="threads test"
34 -KEYWORDS="~amd64 ~x86"
35 -
36 -DEPEND=""
37 -RDEPEND=""
38 -
39 -src_configure() {
40 - econf \
41 - --host=${CHOST} \
42 - --prefix="${D}"/usr \
43 - --exec_prefix="${D}"/usr \
44 - --mandir="${D}"/usr/share/man \
45 - --enable-lfs \
46 - $(use_enable threads)
47 -}
48 -
49 -src_install() {
50 - emake DESTDIR="${D}" install
51 -
52 - pushd src >/dev/null || die
53 - dolib libhmmer.a
54 - insinto /usr/include/hmmer
55 - doins *.h
56 - popd >/dev/null || die
57 -
58 - pushd squid >/dev/null || die
59 - dobin afetch alistat compalign compstruct revcomp seqstat seqsplit sfetch shuffle sreformat sindex weight translate
60 - dolib libsquid.a
61 - insinto /usr/include/hmmer
62 - doins *.h
63 - popd >/dev/null || die
64 -
65 - dodoc NOTES
66 - newdoc 00README README
67 - insinto /usr/share/doc/${PF}
68 - doins Userguide.pdf
69 -}
70 -
71 -src_test() {
72 - emake check
73 -}