From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4A0A138331 for ; Sat, 24 Sep 2016 12:44:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 533C0E0994; Sat, 24 Sep 2016 12:44:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AB17DE0994 for ; Sat, 24 Sep 2016 12:44:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 759AE340B23 for ; Sat, 24 Sep 2016 12:44:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FF2B2491 for ; Sat, 24 Sep 2016 12:44:35 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1474721058.0006ddc33304292d16472bc6afa12a2dbce12c28.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/iqpnni/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild X-VCS-Directories: sci-biology/iqpnni/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0006ddc33304292d16472bc6afa12a2dbce12c28 X-VCS-Branch: master Date: Sat, 24 Sep 2016 12:44:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5b3fa787-e756-429b-88a9-8b4d243d2a40 X-Archives-Hash: 24702de047f7ad5dba2899213a288ec4 commit: 0006ddc33304292d16472bc6afa12a2dbce12c28 Author: David Seifert gentoo org> AuthorDate: Thu Sep 22 19:07:02 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Sep 24 12:44:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0006ddc3 sci-biology/iqpnni: Port to EAPI=6 Package-Manager: portage-2.3.1 sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild b/sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild new file mode 100644 index 00000000..2b4991a --- /dev/null +++ b/sci-biology/iqpnni/iqpnni-3.3.2-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Important Quartet Puzzling and NNI Operation" +HOMEPAGE="http://www.cibiv.at/software/iqpnni/" +SRC_URI="http://www.cibiv.at/software/iqpnni/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${P}-cpp14.patch" # bug #594332 +) + +src_install() { + dobin src/iqpnni + + if use doc ; then + HTML_DOCS+=( manual/iqpnni-manual.html ) + dodoc manual/iqpnni-manual.pdf + fi + einstalldocs +}