Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/iqpnni/
Date: Sat, 24 Sep 2016 12:44:42
Message-Id: 1474721058.0006ddc33304292d16472bc6afa12a2dbce12c28.soap@gentoo
1 commit: 0006ddc33304292d16472bc6afa12a2dbce12c28
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 19:07:02 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 12:44:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0006ddc3
7
8 sci-biology/iqpnni: Port to EAPI=6
9
10 Package-Manager: portage-2.3.1
11
12 sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild | 31 +++++++++++++++++++++++++++++++
13 1 file changed, 31 insertions(+)
14
15 diff --git a/sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild b/sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild
16 new file mode 100644
17 index 00000000..2b4991a
18 --- /dev/null
19 +++ b/sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild
20 @@ -0,0 +1,31 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="Important Quartet Puzzling and NNI Operation"
28 +HOMEPAGE="http://www.cibiv.at/software/iqpnni/"
29 +SRC_URI="http://www.cibiv.at/software/iqpnni/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +IUSE="doc"
35 +
36 +DEPEND=""
37 +RDEPEND="${DEPEND}"
38 +
39 +PATCHES=(
40 + "${FILESDIR}/${P}-cpp14.patch" # bug #594332
41 +)
42 +
43 +src_install() {
44 + dobin src/iqpnni
45 +
46 + if use doc ; then
47 + HTML_DOCS+=( manual/iqpnni-manual.html )
48 + dodoc manual/iqpnni-manual.pdf
49 + fi
50 + einstalldocs
51 +}